ETH Price: $3,040.85 (-4.22%)
 

Overview

Max Total Supply

19,758,706,170.070707998866173707 MAT

Holders

14,034

Transfers

-
7

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
MTAToken

Compiler Version
v0.8.30+commit.73712a01

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
// SPDX-License-Identifier: MIT
pragma solidity 0.8.30;
import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";
import "@openzeppelin/[email protected]/access/Ownable.sol";

contract MTAToken is ERC20, Ownable {
    mapping(address => bool) public isExcludeFee;
    mapping(address => bool) public isExcludeTransferFee;
    mapping(address => bool) public isBlackList;
    mapping(address => bool) public isWL;
    ITokenDistributor immutable tokenDistributor;
    
    uint256 public sellFee;
    uint256 public buyFee;
    uint256 public transferFee;
    IMATMiner public MATMiner;

    mapping(address=>uint256) public lastHoldTime;

    modifier swapping {
        inSwap=true;
        _;
        inSwap=false;
    }
    bool inSwap;

    event SetWL(address user,bool flag);
    event SetBL(address user,bool flag);
    event Deflation(address user,uint256 amount);
    constructor(address _tokenDistributor,address foundation) ERC20("MAT", "MAT") Ownable(msg.sender) {

        require(_tokenDistributor!=address(0),"BFToken: err tokenDistributor");
        tokenDistributor = ITokenDistributor(_tokenDistributor);
        buyFee=10000;
        sellFee = 10000;
        transferFee = 10000;
        isExcludeFee[msg.sender]=true;
        isExcludeFee[_tokenDistributor]=true;
        isExcludeFee[foundation]=true;
        isExcludeFee[address(0xDead)]=true;
        isWL[address(0xDead)]=true;
        isWL[foundation]=true;
        isWL[address(this)]=true;
        isWL[address(tokenDistributor)]=true;
        
        
        emit SetWL(address(0xDead),true);
        emit SetWL(foundation,true);
        emit SetWL(address(this),true);
        emit SetWL(address(tokenDistributor),true);

        _mint(foundation, 20_000_000_000e18);
        
        _approve(address(this), address(tokenDistributor), type(uint256).max);
    }

    function deflation(address from) internal {
        if(totalSupply()<200000000e18){
            return;
        }
        
        uint256 srcAmount=super.balanceOf(from);
        uint256 currAmount=balanceOf(from);
        uint256 subAmount=srcAmount-currAmount;
        if(subAmount>0){
            _totalSupply-=subAmount;
            _balances[from]-=subAmount;

            emit Deflation(from,subAmount);
        }
        lastHoldTime[from]=block.timestamp;
    }

    function initMATMiner(address minerAddress) external onlyOwner {
        MATMiner=IMATMiner(minerAddress);
        isExcludeFee[minerAddress]=true;
    }

    function balanceOf(address from) public view override  returns(uint256){
        uint256 srcAmount=super.balanceOf(from);

        if(isWL[from]||totalSupply()<200000000e18||tokenDistributor.isPair(from)){
            return srcAmount;
        }

        uint256 _lastHoldTime=lastHoldTime[from];
        if(_lastHoldTime==0||block.timestamp<=_lastHoldTime){
            return srcAmount;
        }

        uint256 subTimes=block.timestamp-_lastHoldTime;
        uint256 subCycle=subTimes/43200;

        for(uint i=0;i<subCycle;){

            srcAmount-=srcAmount/100;

            unchecked{
                i++;
            }
        }


        return srcAmount;
    }
    
    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {

        if (inSwap||isExcludeFee[from] || isExcludeFee[to]) {
            return super._update(from, to, amount);
        }
        
        require(!isBlackList[from] && !isBlackList[to], "BFToken:is blacklist");

        deflation(from);
        deflation(to);

        if (tokenDistributor.isPair(from)){
            uint256 fees = amount*buyFee/10000;
            if(fees>0){
                super._update(from, address(this), fees);
            }
            super._update(from, to, amount-fees);
            try MATMiner.update() {} catch {}
            return;
        }

        if (tokenDistributor.isPair(to)) {
            uint256 fees = amount*sellFee/10000;
            super._update(from, address(this), fees);
            process();
            super._update(from, to, amount-fees);
            try MATMiner.update() {} catch {}
            return;
        }
        
        uint256 transferFees;
        if(transferFee>0&&!isExcludeTransferFee[from]){
            transferFees=amount*transferFee/10000;
            super._update(from,address(this),transferFees);
        }
        super._update(from, to, amount-transferFees);
    }

    function process() internal swapping {
        uint256 amount=super.balanceOf(address(this));
        if(amount>0){
            try tokenDistributor.fund(amount) {} catch {
                _approve(
                    address(this),
                    address(tokenDistributor),
                    type(uint256).max
                );
            }
        }
    }

    function multisetWL(address[] memory users, bool flag) external onlyOwner{
        for (uint256 i; i < users.length; i++) {
            isWL[users[i]] = flag;
            emit SetWL(users[i],flag);
        }
    }

    function multisetBlackList(address[] memory users, bool flag) external onlyOwner {
        for (uint256 i; i < users.length; i++) {
            isBlackList[users[i]] = flag;
            emit SetBL(users[i],flag);
        }
    }

    function setExcludeTransferFee(address addr,bool flag) external onlyOwner{
        isExcludeTransferFee[addr]=flag;
    }

    function multiSetExcludeFee(address[] memory users, bool isExclude)
        external
        onlyOwner
    {
        for (uint256 i; i < users.length; i++) {
            isExcludeFee[users[i]] = isExclude;
        }
    }

    function setFees(uint256 _sellFee,uint256 _buyFee,uint256 _transferFee) external onlyOwner{
        require(_sellFee<10001&&_buyFee<10001&&_transferFee<10001,"BFToken: err value");
        sellFee=_sellFee;
        buyFee=_buyFee;
        transferFee=_transferFee;
    }

}


interface ISwapRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IFund {
    function fund(uint256 amount) external;
}

interface ISwapPair is IERC20 {

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function sync() external;
}

interface ISwapFactory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function WETH() external view returns(address);    
}

interface ITokenDistributor {
    function fund(uint256 amount) external;
    function isPair(address pair) external view returns(bool);
}

interface IMATMiner {
    function update() external ;
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * Both values are immutable: they can only be set once during construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner`'s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner`'s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`��s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`��s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`��s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_tokenDistributor","type":"address"},{"internalType":"address","name":"foundation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deflation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"SetBL","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"SetWL","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MATMiner","outputs":[{"internalType":"contract IMATMiner","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minerAddress","type":"address"}],"name":"initMATMiner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludeFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludeTransferFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastHoldTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"bool","name":"isExclude","type":"bool"}],"name":"multiSetExcludeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"multisetBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"multisetWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"setExcludeTransferFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"},{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_transferFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405234801561000f575f5ffd5b5060405161234338038061234383398101604081905261002e91610b5d565b60408051808201825260038082526213505560ea1b602080840182905284518086019095528285528401523392906100668382610c1e565b5060046100738282610c1e565b5050506001600160a01b0381166100a457604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100ad816102c2565b506001600160a01b0382166101045760405162461bcd60e51b815260206004820152601d60248201527f4246546f6b656e3a2065727220746f6b656e4469737472696275746f72000000604482015260640161009b565b6001600160a01b038281166080819052612710600b819055600a819055600c55335f908152600660209081526040808320805460ff1990811660019081179092558585528285208054821683179055958716845281842080548716821790557f1aecba4ebe7a4e0673e4891b2b092b2228e4322380b579fb494fad3da8586e228054871682179055600983527f960b1051749987b45b5679007fff577a1c2f763ec21c15a6c5eb1930750037858054871682179055818420805487168217905530845281842080548716821790559383529182902080549094168317909355805161dead8152928301919091525f5160206123235f395f51905f52910160405180910390a1604080516001600160a01b0383168152600160208201525f5160206123235f395f51905f52910160405180910390a160408051308152600160208201525f5160206123235f395f51905f52910160405180910390a1608051604080516001600160a01b039092168252600160208301525f5160206123235f395f51905f52910160405180910390a16102a7816b409f9cbc7c4a04c220000000610313565b6102bb306080515f1961034b60201b60201c565b5050610d74565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03821661033c5760405163ec442f0560e01b81525f600482015260240161009b565b6103475f838361035d565b5050565b6103588383836001610676565b505050565b600f5460ff168061038557506001600160a01b0383165f9081526006602052604090205460ff165b806103a757506001600160a01b0382165f9081526006602052604090205460ff165b156103b757610358838383610748565b6001600160a01b0383165f9081526008602052604090205460ff161580156103f757506001600160a01b0382165f9081526008602052604090205460ff16155b6104435760405162461bcd60e51b815260206004820152601460248201527f4246546f6b656e3a697320626c61636b6c697374000000000000000000000000604482015260640161009b565b61044c8361086e565b6104558261086e565b60805160405163e5e31b1360e01b81526001600160a01b0385811660048301529091169063e5e31b1390602401602060405180830381865afa15801561049d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104c19190610cd8565b1561056e575f612710600b54836104d89190610d12565b6104e29190610d2f565b905080156104f5576104f5843083610748565b61050984846105048486610d4e565b610748565b600d5f9054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b81526004015f604051808303815f87803b158015610555575f5ffd5b505af1925050508015610566575060015b505b50505050565b60805160405163e5e31b1360e01b81526001600160a01b0384811660048301529091169063e5e31b1390602401602060405180830381865afa1580156105b6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105da9190610cd8565b15610610575f612710600a54836105f19190610d12565b6105fb9190610d2f565b9050610608843083610748565b6104f5610966565b5f5f600c5411801561063a57506001600160a01b0384165f9081526007602052604090205460ff16155b1561066757612710600c54836106509190610d12565b61065a9190610d2f565b9050610667843083610748565b61056884846105048486610d4e565b6001600160a01b03841661069f5760405163e602df0560e01b81525f600482015260240161009b565b6001600160a01b0383166106c857604051634a1406b160e11b81525f600482015260240161009b565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561056857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161073a91815260200190565b60405180910390a350505050565b6001600160a01b038316610772578060025f8282546107679190610d61565b909155506107e29050565b6001600160a01b0383165f90815260208190526040902054818110156107c45760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161009b565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166107fe5760028054829003905561081c565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161086191815260200190565b60405180910390a3505050565b6aa56fa5b99019a5c800000061088360025490565b101561088c5750565b6001600160a01b0381165f90815260208190526040812054906108ae83610a03565b90505f6108bb8284610d4e565b90508015610948578060025f8282546108d49190610d4e565b90915550506001600160a01b0384165f9081526020819052604081208054839290610900908490610d4e565b9091555050604080516001600160a01b0386168152602081018390527f027b2a77f9c78bd6f3d79d0f17d304227521bd3bed928b718ba8e9a237daaf7b910160405180910390a15b5050506001600160a01b03165f908152600e60205260409020429055565b600f805460ff19166001179055305f90815260208190526040812054905080156109f65760805160405163ca1d209d60e01b8152600481018390526001600160a01b039091169063ca1d209d906024015f604051808303815f87803b1580156109cd575f5ffd5b505af19250505080156109de575060015b6109f6576109f6306080515f1961034b60201b60201c565b50600f805460ff19169055565b6001600160a01b0381165f9081526020818152604080832054600990925282205460ff1680610a4457506aa56fa5b99019a5c8000000610a4260025490565b105b80610ab6575060805160405163e5e31b1360e01b81526001600160a01b0385811660048301529091169063e5e31b1390602401602060405180830381865afa158015610a92573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab69190610cd8565b15610ac15792915050565b6001600160a01b0383165f908152600e6020526040902054801580610ae65750804211155b15610af2575092915050565b5f610afd8242610d4e565b90505f610b0c61a8c083610d2f565b90505f5b81811015610b3757610b23606486610d2f565b610b2d9086610d4e565b9450600101610b10565b509295945050505050565b80516001600160a01b0381168114610b58575f5ffd5b919050565b5f5f60408385031215610b6e575f5ffd5b610b7783610b42565b9150610b8560208401610b42565b90509250929050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680610bb657607f821691505b602082108103610bd457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561035857805f5260205f20601f840160051c81016020851015610bff5750805b601f840160051c820191505b81811015610566575f8155600101610c0b565b81516001600160401b03811115610c3757610c37610b8e565b610c4b81610c458454610ba2565b84610bda565b6020601f821160018114610c7d575f8315610c665750848201515b5f19600385901b1c1916600184901b178455610566565b5f84815260208120601f198516915b82811015610cac5787850151825560209485019460019092019101610c8c565b5084821015610cc957868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215610ce8575f5ffd5b81518015158114610cf7575f5ffd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610d2957610d29610cfe565b92915050565b5f82610d4957634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610d2957610d29610cfe565b80820180821115610d2957610d29610cfe565b60805161157b610da85f395f81816106eb01528181610ce101528181610e190152818161117601526111da015261157b5ff3fe608060405234801561000f575f5ffd5b50600436106101a1575f3560e01c8063715018a6116100f3578063a9facd3d11610093578063cec10c111161006e578063cec10c1114610389578063dcace9ab1461039c578063dd62ed3e146103be578063f2fde38b146103f6575f5ffd5b8063a9facd3d1461033f578063acb2ad6f1461035e578063b36d691914610367575f5ffd5b80638da5cb5b116100ce5780638da5cb5b146102ec57806395d89b41146103115780639c1d552314610319578063a9059cbb1461032c575f5ffd5b8063715018a6146102af5780637d340038146102b75780638c831b70146102ca575f5ffd5b80632b14ca561161015e5780634706240211610139578063470624021461025e578063592cb09d1461026757806367b2138c1461027a57806370a082311461029c575f5ffd5b80632b14ca5614610233578063313ce5671461023c57806334b0d1401461024b575f5ffd5b806306fdde03146101a5578063070ba190146101c3578063095ea7b3146101d857806318160ddd146101fb5780631953d5241461020d57806323b872dd14610220575b5f5ffd5b6101ad610409565b6040516101ba919061120d565b60405180910390f35b6101d66101d1366004611289565b610499565b005b6101eb6101e6366004611366565b610500565b60405190151581526020016101ba565b6002545b6040519081526020016101ba565b6101d661021b366004611289565b610519565b6101eb61022e36600461138e565b6105ef565b6101ff600a5481565b604051601281526020016101ba565b6101d66102593660046113c8565b610612565b6101ff600b5481565b6101d66102753660046113fd565b610644565b6101eb6102883660046113fd565b60076020525f908152604090205460ff1681565b6101ff6102aa3660046113fd565b610685565b6101d66107e0565b6101d66102c5366004611289565b6107f3565b6101eb6102d83660046113fd565b60096020525f908152604090205460ff1681565b6005546001600160a01b03165b6040516001600160a01b0390911681526020016101ba565b6101ad6108c9565b600d546102f9906001600160a01b031681565b6101eb61033a366004611366565b6108d8565b6101ff61034d3660046113fd565b600e6020525f908152604090205481565b6101ff600c5481565b6101eb6103753660046113fd565b60086020525f908152604090205460ff1681565b6101d661039736600461141d565b6108e5565b6101eb6103aa3660046113fd565b60066020525f908152604090205460ff1681565b6101ff6103cc366004611446565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101d66104043660046113fd565b610960565b6060600380546104189061146e565b80601f01602080910402602001604051908101604052809291908181526020018280546104449061146e565b801561048f5780601f106104665761010080835404028352916020019161048f565b820191905f5260205f20905b81548152906001019060200180831161047257829003601f168201915b5050505050905090565b6104a161099d565b5f5b82518110156104fb578160065f8584815181106104c2576104c26114a6565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790556001016104a3565b505050565b5f3361050d8185856109ca565b60019150505b92915050565b61052161099d565b5f5b82518110156104fb578160085f858481518110610542576105426114a6565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055507fb162442f24fca622e06f9e4bb36c005d06f23cd1af40024e80e50df0e73404f58382815181106105b2576105b26114a6565b6020026020010151836040516105df9291906001600160a01b039290921682521515602082015260400190565b60405180910390a1600101610523565b5f336105fc8582856109d7565b610607858585610a53565b506001949350505050565b61061a61099d565b6001600160a01b03919091165f908152600760205260409020805460ff1916911515919091179055565b61064c61099d565b600d80546001600160a01b039092166001600160a01b0319909216821790555f908152600660205260409020805460ff19166001179055565b6001600160a01b0381165f9081526020818152604080832054600990925282205460ff16806106c657506aa56fa5b99019a5c80000006106c460025490565b105b80610754575060405163e5e31b1360e01b81526001600160a01b0384811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063e5e31b1390602401602060405180830381865afa158015610730573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061075491906114ba565b1561075f5792915050565b6001600160a01b0383165f908152600e60205260409020548015806107845750804211155b15610790575092915050565b5f61079b82426114e9565b90505f6107aa61a8c0836114fc565b90505f5b818110156107d5576107c16064866114fc565b6107cb90866114e9565b94506001016107ae565b509295945050505050565b6107e861099d565b6107f15f610ab0565b565b6107fb61099d565b5f5b82518110156104fb578160095f85848151811061081c5761081c6114a6565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f8278de8ed1ceede64cb0ebd95cea223667acd90324e209fb2273715225dcf1d883828151811061088c5761088c6114a6565b6020026020010151836040516108b99291906001600160a01b039290921682521515602082015260400190565b60405180910390a16001016107fd565b6060600480546104189061146e565b5f3361050d818585610a53565b6108ed61099d565b612711831080156108ff575061271182105b801561090c575061271181105b6109525760405162461bcd60e51b81526020600482015260126024820152714246546f6b656e3a206572722076616c756560701b60448201526064015b60405180910390fd5b600a92909255600b55600c55565b61096861099d565b6001600160a01b03811661099157604051631e4fbdf760e01b81525f6004820152602401610949565b61099a81610ab0565b50565b6005546001600160a01b031633146107f15760405163118cdaa760e01b8152336004820152602401610949565b6104fb8383836001610b01565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610a4d5781811015610a3f57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610949565b610a4d84848484035f610b01565b50505050565b6001600160a01b038316610a7c57604051634b637e8f60e11b81525f6004820152602401610949565b6001600160a01b038216610aa55760405163ec442f0560e01b81525f6004820152602401610949565b6104fb838383610bd3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610b2a5760405163e602df0560e01b81525f6004820152602401610949565b6001600160a01b038316610b5357604051634a1406b160e11b81525f6004820152602401610949565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610a4d57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bc591815260200190565b60405180910390a350505050565b600f5460ff1680610bfb57506001600160a01b0383165f9081526006602052604090205460ff165b80610c1d57506001600160a01b0382165f9081526006602052604090205460ff165b15610c2d576104fb838383610f1e565b6001600160a01b0383165f9081526008602052604090205460ff16158015610c6d57506001600160a01b0382165f9081526008602052604090205460ff16155b610cb05760405162461bcd60e51b81526020600482015260146024820152731091951bdad95b8e9a5cc8189b1858dadb1a5cdd60621b6044820152606401610949565b610cb983611044565b610cc282611044565b60405163e5e31b1360e01b81526001600160a01b0384811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063e5e31b1390602401602060405180830381865afa158015610d26573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d4a91906114ba565b15610dfa575f612710600b5483610d61919061151b565b610d6b91906114fc565b90508015610d7e57610d7e843083610f1e565b610d928484610d8d84866114e9565b610f1e565b600d5f9054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b81526004015f604051808303815f87803b158015610dde575f5ffd5b505af1925050508015610def575060015b15610a4d5750505050565b60405163e5e31b1360e01b81526001600160a01b0383811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063e5e31b1390602401602060405180830381865afa158015610e5e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8291906114ba565b15610eb8575f612710600a5483610e99919061151b565b610ea391906114fc565b9050610eb0843083610f1e565b610d7e61113c565b5f5f600c54118015610ee257506001600160a01b0384165f9081526007602052604090205460ff16155b15610f0f57612710600c5483610ef8919061151b565b610f0291906114fc565b9050610f0f843083610f1e565b610a4d8484610d8d84866114e9565b6001600160a01b038316610f48578060025f828254610f3d9190611532565b90915550610fb89050565b6001600160a01b0383165f9081526020819052604090205481811015610f9a5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610949565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610fd457600280548290039055610ff2565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161103791815260200190565b60405180910390a3505050565b6aa56fa5b99019a5c800000061105960025490565b10156110625750565b6001600160a01b0381165f908152602081905260408120549061108483610685565b90505f61109182846114e9565b9050801561111e578060025f8282546110aa91906114e9565b90915550506001600160a01b0384165f90815260208190526040812080548392906110d69084906114e9565b9091555050604080516001600160a01b0386168152602081018390527f027b2a77f9c78bd6f3d79d0f17d304227521bd3bed928b718ba8e9a237daaf7b910160405180910390a15b5050506001600160a01b03165f908152600e60205260409020429055565b600f805460ff19166001179055305f90815260208190526040812054905080156112005760405163ca1d209d60e01b8152600481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063ca1d209d906024015f604051808303815f87803b1580156111bf575f5ffd5b505af19250505080156111d0575060015b61120057611200307f00000000000000000000000000000000000000000000000000000000000000005f196109ca565b50600f805460ff19169055565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b634e487b7160e01b5f52604160045260245ffd5b80356001600160a01b038116811461126c575f5ffd5b919050565b801515811461099a575f5ffd5b803561126c81611271565b5f5f6040838503121561129a575f5ffd5b823567ffffffffffffffff8111156112b0575f5ffd5b8301601f810185136112c0575f5ffd5b803567ffffffffffffffff8111156112da576112da611242565b8060051b604051601f19603f830116810181811067ffffffffffffffff8211171561130757611307611242565b604052918252602081840181019290810188841115611324575f5ffd5b6020850194505b8385101561134a5761133c85611256565b81526020948501940161132b565b50945061135d925050506020840161127e565b90509250929050565b5f5f60408385031215611377575f5ffd5b61138083611256565b946020939093013593505050565b5f5f5f606084860312156113a0575f5ffd5b6113a984611256565b92506113b760208501611256565b929592945050506040919091013590565b5f5f604083850312156113d9575f5ffd5b6113e283611256565b915060208301356113f281611271565b809150509250929050565b5f6020828403121561140d575f5ffd5b61141682611256565b9392505050565b5f5f5f6060848603121561142f575f5ffd5b505081359360208301359350604090920135919050565b5f5f60408385031215611457575f5ffd5b61146083611256565b915061135d60208401611256565b600181811c9082168061148257607f821691505b6020821081036114a057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156114ca575f5ffd5b815161141681611271565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610513576105136114d5565b5f8261151657634e487b7160e01b5f52601260045260245ffd5b500490565b8082028115828204841417610513576105136114d5565b80820180821115610513576105136114d556fea26469706673582212208b1eb298981aa1b349476dc752b8723c8a1e85f9f26e93080d69537bb5dcee2664736f6c634300081e00338278de8ed1ceede64cb0ebd95cea223667acd90324e209fb2273715225dcf1d80000000000000000000000005d36ca2f80ba6365ca0846e8866053d4915fd08b000000000000000000000000bf255123e30499c47d30c88097f92ba573144f1b

Deployed Bytecode

0x608060405234801561000f575f5ffd5b50600436106101a1575f3560e01c8063715018a6116100f3578063a9facd3d11610093578063cec10c111161006e578063cec10c1114610389578063dcace9ab1461039c578063dd62ed3e146103be578063f2fde38b146103f6575f5ffd5b8063a9facd3d1461033f578063acb2ad6f1461035e578063b36d691914610367575f5ffd5b80638da5cb5b116100ce5780638da5cb5b146102ec57806395d89b41146103115780639c1d552314610319578063a9059cbb1461032c575f5ffd5b8063715018a6146102af5780637d340038146102b75780638c831b70146102ca575f5ffd5b80632b14ca561161015e5780634706240211610139578063470624021461025e578063592cb09d1461026757806367b2138c1461027a57806370a082311461029c575f5ffd5b80632b14ca5614610233578063313ce5671461023c57806334b0d1401461024b575f5ffd5b806306fdde03146101a5578063070ba190146101c3578063095ea7b3146101d857806318160ddd146101fb5780631953d5241461020d57806323b872dd14610220575b5f5ffd5b6101ad610409565b6040516101ba919061120d565b60405180910390f35b6101d66101d1366004611289565b610499565b005b6101eb6101e6366004611366565b610500565b60405190151581526020016101ba565b6002545b6040519081526020016101ba565b6101d661021b366004611289565b610519565b6101eb61022e36600461138e565b6105ef565b6101ff600a5481565b604051601281526020016101ba565b6101d66102593660046113c8565b610612565b6101ff600b5481565b6101d66102753660046113fd565b610644565b6101eb6102883660046113fd565b60076020525f908152604090205460ff1681565b6101ff6102aa3660046113fd565b610685565b6101d66107e0565b6101d66102c5366004611289565b6107f3565b6101eb6102d83660046113fd565b60096020525f908152604090205460ff1681565b6005546001600160a01b03165b6040516001600160a01b0390911681526020016101ba565b6101ad6108c9565b600d546102f9906001600160a01b031681565b6101eb61033a366004611366565b6108d8565b6101ff61034d3660046113fd565b600e6020525f908152604090205481565b6101ff600c5481565b6101eb6103753660046113fd565b60086020525f908152604090205460ff1681565b6101d661039736600461141d565b6108e5565b6101eb6103aa3660046113fd565b60066020525f908152604090205460ff1681565b6101ff6103cc366004611446565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101d66104043660046113fd565b610960565b6060600380546104189061146e565b80601f01602080910402602001604051908101604052809291908181526020018280546104449061146e565b801561048f5780601f106104665761010080835404028352916020019161048f565b820191905f5260205f20905b81548152906001019060200180831161047257829003601f168201915b5050505050905090565b6104a161099d565b5f5b82518110156104fb578160065f8584815181106104c2576104c26114a6565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790556001016104a3565b505050565b5f3361050d8185856109ca565b60019150505b92915050565b61052161099d565b5f5b82518110156104fb578160085f858481518110610542576105426114a6565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055507fb162442f24fca622e06f9e4bb36c005d06f23cd1af40024e80e50df0e73404f58382815181106105b2576105b26114a6565b6020026020010151836040516105df9291906001600160a01b039290921682521515602082015260400190565b60405180910390a1600101610523565b5f336105fc8582856109d7565b610607858585610a53565b506001949350505050565b61061a61099d565b6001600160a01b03919091165f908152600760205260409020805460ff1916911515919091179055565b61064c61099d565b600d80546001600160a01b039092166001600160a01b0319909216821790555f908152600660205260409020805460ff19166001179055565b6001600160a01b0381165f9081526020818152604080832054600990925282205460ff16806106c657506aa56fa5b99019a5c80000006106c460025490565b105b80610754575060405163e5e31b1360e01b81526001600160a01b0384811660048301527f0000000000000000000000005d36ca2f80ba6365ca0846e8866053d4915fd08b169063e5e31b1390602401602060405180830381865afa158015610730573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061075491906114ba565b1561075f5792915050565b6001600160a01b0383165f908152600e60205260409020548015806107845750804211155b15610790575092915050565b5f61079b82426114e9565b90505f6107aa61a8c0836114fc565b90505f5b818110156107d5576107c16064866114fc565b6107cb90866114e9565b94506001016107ae565b509295945050505050565b6107e861099d565b6107f15f610ab0565b565b6107fb61099d565b5f5b82518110156104fb578160095f85848151811061081c5761081c6114a6565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f8278de8ed1ceede64cb0ebd95cea223667acd90324e209fb2273715225dcf1d883828151811061088c5761088c6114a6565b6020026020010151836040516108b99291906001600160a01b039290921682521515602082015260400190565b60405180910390a16001016107fd565b6060600480546104189061146e565b5f3361050d818585610a53565b6108ed61099d565b612711831080156108ff575061271182105b801561090c575061271181105b6109525760405162461bcd60e51b81526020600482015260126024820152714246546f6b656e3a206572722076616c756560701b60448201526064015b60405180910390fd5b600a92909255600b55600c55565b61096861099d565b6001600160a01b03811661099157604051631e4fbdf760e01b81525f6004820152602401610949565b61099a81610ab0565b50565b6005546001600160a01b031633146107f15760405163118cdaa760e01b8152336004820152602401610949565b6104fb8383836001610b01565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610a4d5781811015610a3f57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610949565b610a4d84848484035f610b01565b50505050565b6001600160a01b038316610a7c57604051634b637e8f60e11b81525f6004820152602401610949565b6001600160a01b038216610aa55760405163ec442f0560e01b81525f6004820152602401610949565b6104fb838383610bd3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610b2a5760405163e602df0560e01b81525f6004820152602401610949565b6001600160a01b038316610b5357604051634a1406b160e11b81525f6004820152602401610949565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610a4d57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bc591815260200190565b60405180910390a350505050565b600f5460ff1680610bfb57506001600160a01b0383165f9081526006602052604090205460ff165b80610c1d57506001600160a01b0382165f9081526006602052604090205460ff165b15610c2d576104fb838383610f1e565b6001600160a01b0383165f9081526008602052604090205460ff16158015610c6d57506001600160a01b0382165f9081526008602052604090205460ff16155b610cb05760405162461bcd60e51b81526020600482015260146024820152731091951bdad95b8e9a5cc8189b1858dadb1a5cdd60621b6044820152606401610949565b610cb983611044565b610cc282611044565b60405163e5e31b1360e01b81526001600160a01b0384811660048301527f0000000000000000000000005d36ca2f80ba6365ca0846e8866053d4915fd08b169063e5e31b1390602401602060405180830381865afa158015610d26573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d4a91906114ba565b15610dfa575f612710600b5483610d61919061151b565b610d6b91906114fc565b90508015610d7e57610d7e843083610f1e565b610d928484610d8d84866114e9565b610f1e565b600d5f9054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b81526004015f604051808303815f87803b158015610dde575f5ffd5b505af1925050508015610def575060015b15610a4d5750505050565b60405163e5e31b1360e01b81526001600160a01b0383811660048301527f0000000000000000000000005d36ca2f80ba6365ca0846e8866053d4915fd08b169063e5e31b1390602401602060405180830381865afa158015610e5e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8291906114ba565b15610eb8575f612710600a5483610e99919061151b565b610ea391906114fc565b9050610eb0843083610f1e565b610d7e61113c565b5f5f600c54118015610ee257506001600160a01b0384165f9081526007602052604090205460ff16155b15610f0f57612710600c5483610ef8919061151b565b610f0291906114fc565b9050610f0f843083610f1e565b610a4d8484610d8d84866114e9565b6001600160a01b038316610f48578060025f828254610f3d9190611532565b90915550610fb89050565b6001600160a01b0383165f9081526020819052604090205481811015610f9a5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610949565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610fd457600280548290039055610ff2565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161103791815260200190565b60405180910390a3505050565b6aa56fa5b99019a5c800000061105960025490565b10156110625750565b6001600160a01b0381165f908152602081905260408120549061108483610685565b90505f61109182846114e9565b9050801561111e578060025f8282546110aa91906114e9565b90915550506001600160a01b0384165f90815260208190526040812080548392906110d69084906114e9565b9091555050604080516001600160a01b0386168152602081018390527f027b2a77f9c78bd6f3d79d0f17d304227521bd3bed928b718ba8e9a237daaf7b910160405180910390a15b5050506001600160a01b03165f908152600e60205260409020429055565b600f805460ff19166001179055305f90815260208190526040812054905080156112005760405163ca1d209d60e01b8152600481018290527f0000000000000000000000005d36ca2f80ba6365ca0846e8866053d4915fd08b6001600160a01b03169063ca1d209d906024015f604051808303815f87803b1580156111bf575f5ffd5b505af19250505080156111d0575060015b61120057611200307f0000000000000000000000005d36ca2f80ba6365ca0846e8866053d4915fd08b5f196109ca565b50600f805460ff19169055565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b634e487b7160e01b5f52604160045260245ffd5b80356001600160a01b038116811461126c575f5ffd5b919050565b801515811461099a575f5ffd5b803561126c81611271565b5f5f6040838503121561129a575f5ffd5b823567ffffffffffffffff8111156112b0575f5ffd5b8301601f810185136112c0575f5ffd5b803567ffffffffffffffff8111156112da576112da611242565b8060051b604051601f19603f830116810181811067ffffffffffffffff8211171561130757611307611242565b604052918252602081840181019290810188841115611324575f5ffd5b6020850194505b8385101561134a5761133c85611256565b81526020948501940161132b565b50945061135d925050506020840161127e565b90509250929050565b5f5f60408385031215611377575f5ffd5b61138083611256565b946020939093013593505050565b5f5f5f606084860312156113a0575f5ffd5b6113a984611256565b92506113b760208501611256565b929592945050506040919091013590565b5f5f604083850312156113d9575f5ffd5b6113e283611256565b915060208301356113f281611271565b809150509250929050565b5f6020828403121561140d575f5ffd5b61141682611256565b9392505050565b5f5f5f6060848603121561142f575f5ffd5b505081359360208301359350604090920135919050565b5f5f60408385031215611457575f5ffd5b61146083611256565b915061135d60208401611256565b600181811c9082168061148257607f821691505b6020821081036114a057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156114ca575f5ffd5b815161141681611271565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610513576105136114d5565b5f8261151657634e487b7160e01b5f52601260045260245ffd5b500490565b8082028115828204841417610513576105136114d5565b80820180821115610513576105136114d556fea26469706673582212208b1eb298981aa1b349476dc752b8723c8a1e85f9f26e93080d69537bb5dcee2664736f6c634300081e0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000005d36ca2f80ba6365ca0846e8866053d4915fd08b000000000000000000000000bf255123e30499c47d30c88097f92ba573144f1b

-----Decoded View---------------
Arg [0] : _tokenDistributor (address): 0x5D36ca2f80BA6365cA0846e8866053d4915FD08B
Arg [1] : foundation (address): 0xbf255123e30499c47D30C88097f92bA573144f1B

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000005d36ca2f80ba6365ca0846e8866053d4915fd08b
Arg [1] : 000000000000000000000000bf255123e30499c47d30c88097f92ba573144f1b


Deployed Bytecode Sourcemap

183:5900:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1744:89:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5567:228:6;;;;;;:::i;:::-;;:::i;:::-;;3963:186:2;;;;;;:::i;:::-;;:::i;:::-;;;2685:14:7;;2678:22;2660:41;;2648:2;2633:18;3963:186:2;2520:187:7;2814:97:2;2892:12;;2814:97;;;2858:25:7;;;2846:2;2831:18;2814:97:2;2712:177:7;5195:233:6;;;;;;:::i;:::-;;:::i;4741:244:2:-;;;;;;:::i;:::-;;:::i;486:22:6:-;;;;;;2672:82:2;;;2745:2;3415:36:7;;3403:2;3388:18;2672:82:2;3273:184:7;5436:123:6;;;;;;:::i;:::-;;:::i;515:21::-;;;;;;2400:156;;;;;;:::i;:::-;;:::i;277:52::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;2564:700;;;;;;:::i;:::-;;:::i;2293:101:0:-;;;:::i;4969:218:6:-;;;;;;:::i;:::-;;:::i;386:36::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;1638:85:0;1710:6;;-1:-1:-1;;;;;1710:6:0;1638:85;;;-1:-1:-1;;;;;4137:32:7;;;4119:51;;4107:2;4092:18;1638:85:0;3973:203:7;1946:93:2;;;:::i;576:25:6:-;;;;;-1:-1:-1;;;;;576:25:6;;;3280:178:2;;;;;;:::i;:::-;;:::i;610:45:6:-;;;;;;:::i;:::-;;;;;;;;;;;;;;543:26;;;;;;336:43;;;;;;:::i;:::-;;;;;;;;;;;;;;;;5803:275;;;;;;:::i;:::-;;:::i;226:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;3516:140:2;;;;;;:::i;:::-;-1:-1:-1;;;;;3622:18:2;;;3596:7;3622:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3516:140;2543:215:0;;;;;;:::i;:::-;;:::i;1744:89:2:-;1789:13;1821:5;1814:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1744:89;:::o;5567:228:6:-;1531:13:0;:11;:13::i;:::-;5693:9:6::1;5688:100;5708:5;:12;5704:1;:16;5688:100;;;5767:9;5742:12;:22;5755:5;5761:1;5755:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;5742:22:6::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;5742:22:6;:34;;-1:-1:-1;;5742:34:6::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;5722:3:6::1;5688:100;;;;5567:228:::0;;:::o;3963:186:2:-;4036:4;735:10:5;4090:31:2;735:10:5;4106:7:2;4115:5;4090:8;:31::i;:::-;4138:4;4131:11;;;3963:186;;;;;:::o;5195:233:6:-;1531:13:0;:11;:13::i;:::-;5292:9:6::1;5287:134;5307:5;:12;5303:1;:16;5287:134;;;5365:4;5341:11;:21;5353:5;5359:1;5353:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;5341:21:6::1;-1:-1:-1::0;;;;;5341:21:6::1;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;5389:20;5395:5;5401:1;5395:8;;;;;;;;:::i;:::-;;;;;;;5404:4;5389:20;;;;;;-1:-1:-1::0;;;;;5846:32:7;;;;5828:51;;5922:14;5915:22;5910:2;5895:18;;5888:50;5816:2;5801:18;;5660:284;5389:20:6::1;;;;;;;;5321:3;;5287:134;;4741:244:2::0;4828:4;735:10:5;4884:37:2;4900:4;735:10:5;4915:5:2;4884:15;:37::i;:::-;4931:26;4941:4;4947:2;4951:5;4931:9;:26::i;:::-;-1:-1:-1;4974:4:2;;4741:244;-1:-1:-1;;;;4741:244:2:o;5436:123:6:-;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;5520:26:6;;;::::1;;::::0;;;:20:::1;:26;::::0;;;;:31;;-1:-1:-1;;5520:31:6::1;::::0;::::1;;::::0;;;::::1;::::0;;5436:123::o;2400:156::-;1531:13:0;:11;:13::i;:::-;2474:8:6::1;:32:::0;;-1:-1:-1;;;;;2474:32:6;;::::1;-1:-1:-1::0;;;;;;2474:32:6;;::::1;::::0;::::1;::::0;;:8:::1;2517:26:::0;;;:12:::1;:26;::::0;;;;:31;;-1:-1:-1;;2517:31:6::1;2474:32:::0;2517:31:::1;::::0;;2400:156::o;2564:700::-;-1:-1:-1;;;;;3060:18:2;;2627:7:6;3060:18:2;;;;;;;;;;;;2701:4:6;:10;;;;;;;;;:38;;;2727:12;2713:13;2892:12:2;;;2814:97;2713:13:6;:26;2701:38;:69;;;-1:-1:-1;2741:29:6;;-1:-1:-1;;;2741:29:6;;-1:-1:-1;;;;;4137:32:7;;;2741:29:6;;;4119:51:7;2741:16:6;:23;;;;4092:18:7;;2741:29:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2698:116;;;2793:9;2564:700;-1:-1:-1;;2564:700:6:o;2698:116::-;-1:-1:-1;;;;;2848:18:6;;2826:21;2848:18;;;:12;:18;;;;;;2880:16;;;:48;;;2915:13;2898:15;:30;;2880:48;2877:95;;;-1:-1:-1;2951:9:6;2564:700;-1:-1:-1;;2564:700:6:o;2877:95::-;2984:16;3001:29;3017:13;3001:15;:29;:::i;:::-;2984:46;-1:-1:-1;3041:16:6;3058:14;3067:5;2984:46;3058:14;:::i;:::-;3041:31;-1:-1:-1;3089:6:6;3085:141;3100:8;3098:1;:10;3085:141;;;3138:13;3148:3;3138:9;:13;:::i;:::-;3127:24;;;;:::i;:::-;;-1:-1:-1;3196:3:6;;3085:141;;;-1:-1:-1;3247:9:6;;2564:700;-1:-1:-1;;;;;2564:700:6:o;2293:101:0:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;4969:218:6:-;1531:13:0;:11;:13::i;:::-;5058:9:6::1;5053:127;5073:5;:12;5069:1;:16;5053:127;;;5124:4;5107;:14;5112:5;5118:1;5112:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;5107:14:6::1;-1:-1:-1::0;;;;;5107:14:6::1;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;5148:20;5154:5;5160:1;5154:8;;;;;;;;:::i;:::-;;;;;;;5163:4;5148:20;;;;;;-1:-1:-1::0;;;;;5846:32:7;;;;5828:51;;5922:14;5915:22;5910:2;5895:18;;5888:50;5816:2;5801:18;;5660:284;5148:20:6::1;;;;;;;;5087:3;;5053:127;;1946:93:2::0;1993:13;2025:7;2018:14;;;;;:::i;3280:178::-;3349:4;735:10:5;3403:27:2;735:10:5;3420:2:2;3424:5;3403:9;:27::i;5803:275:6:-;1531:13:0;:11;:13::i;:::-;5921:5:6::1;5912:8;:14;:29;;;;;5936:5;5928:7;:13;5912:29;:49;;;;;5956:5;5943:12;:18;5912:49;5904:79;;;::::0;-1:-1:-1;;;5904:79:6;;6888:2:7;5904:79:6::1;::::0;::::1;6870:21:7::0;6927:2;6907:18;;;6900:30;-1:-1:-1;;;6946:18:7;;;6939:48;7004:18;;5904:79:6::1;;;;;;;;;5994:7;:16:::0;;;;6021:6:::1;:14:::0;6046:11:::1;:24:::0;5803:275::o;2543:215:0:-;1531:13;:11;:13::i;:::-;-1:-1:-1;;;;;2627:22:0;::::1;2623:91;;2672:31;::::0;-1:-1:-1;;;2672:31:0;;2700:1:::1;2672:31;::::0;::::1;4119:51:7::0;4092:18;;2672:31:0::1;3973:203:7::0;2623:91:0::1;2723:28;2742:8;2723:18;:28::i;:::-;2543:215:::0;:::o;1796:162::-;1710:6;;-1:-1:-1;;;;;1710:6:0;735:10:5;1855:23:0;1851:101;;1901:40;;-1:-1:-1;;;1901:40:0;;735:10:5;1901:40:0;;;4119:51:7;4092:18;;1901:40:0;3973:203:7;8691:128:2;8775:37;8784:5;8791:7;8800:5;8807:4;8775:8;:37::i;10380:476::-;-1:-1:-1;;;;;3622:18:2;;;10479:24;3622:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10545:36:2;;10541:309;;;10620:5;10601:16;:24;10597:130;;;10652:60;;-1:-1:-1;;;10652:60:2;;-1:-1:-1;;;;;7253:32:7;;10652:60:2;;;7235:51:7;7302:18;;;7295:34;;;7345:18;;;7338:34;;;7208:18;;10652:60:2;7033:345:7;10597:130:2;10768:57;10777:5;10784:7;10812:5;10793:16;:24;10819:5;10768:8;:57::i;:::-;10469:387;10380:476;;;:::o;5358:300::-;-1:-1:-1;;;;;5441:18:2;;5437:86;;5482:30;;-1:-1:-1;;;5482:30:2;;5509:1;5482:30;;;4119:51:7;4092:18;;5482:30:2;3973:203:7;5437:86:2;-1:-1:-1;;;;;5536:16:2;;5532:86;;5575:32;;-1:-1:-1;;;5575:32:2;;5604:1;5575:32;;;4119:51:7;4092:18;;5575:32:2;3973:203:7;5532:86:2;5627:24;5635:4;5641:2;5645:5;5627:7;:24::i;2912:187:0:-;3004:6;;;-1:-1:-1;;;;;3020:17:0;;;-1:-1:-1;;;;;;3020:17:0;;;;;;;3052:40;;3004:6;;;3020:17;3004:6;;3052:40;;2985:16;;3052:40;2975:124;2912:187;:::o;9666:432:2:-;-1:-1:-1;;;;;9778:19:2;;9774:89;;9820:32;;-1:-1:-1;;;9820:32:2;;9849:1;9820:32;;;4119:51:7;4092:18;;9820:32:2;3973:203:7;9774:89:2;-1:-1:-1;;;;;9876:21:2;;9872:90;;9920:31;;-1:-1:-1;;;9920:31:2;;9948:1;9920:31;;;4119:51:7;4092:18;;9920:31:2;3973:203:7;9872:90:2;-1:-1:-1;;;;;9971:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10016:76;;;;10066:7;-1:-1:-1;;;;;10050:31:2;10059:5;-1:-1:-1;;;;;10050:31:2;;10075:5;10050:31;;;;2858:25:7;;2846:2;2831:18;;2712:177;10050:31:2;;;;;;;;9666:432;;;;:::o;3276:1299:6:-;3404:6;;;;;:26;;-1:-1:-1;;;;;;3412:18:6;;;;;;:12;:18;;;;;;;;3404:26;:46;;;-1:-1:-1;;;;;;3434:16:6;;;;;;:12;:16;;;;;;;;3404:46;3400:117;;;3474:31;3488:4;3494:2;3498:6;3474:13;:31::i;3400:117::-;-1:-1:-1;;;;;3546:17:6;;;;;;:11;:17;;;;;;;;3545:18;:38;;;;-1:-1:-1;;;;;;3568:15:6;;;;;;:11;:15;;;;;;;;3567:16;3545:38;3537:71;;;;-1:-1:-1;;;3537:71:6;;7585:2:7;3537:71:6;;;7567:21:7;7624:2;7604:18;;;7597:30;-1:-1:-1;;;7643:18:7;;;7636:50;7703:18;;3537:71:6;7383:344:7;3537:71:6;3621:15;3631:4;3621:9;:15::i;:::-;3647:13;3657:2;3647:9;:13::i;:::-;3677:29;;-1:-1:-1;;;3677:29:6;;-1:-1:-1;;;;;4137:32:7;;;3677:29:6;;;4119:51:7;3677:16:6;:23;;;;4092:18:7;;3677:29:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3673:313;;;3722:12;3751:5;3744:6;;3737;:13;;;;:::i;:::-;:19;;;;:::i;:::-;3722:34;-1:-1:-1;3774:6:6;;3771:85;;3800:40;3814:4;3828;3835;3800:13;:40::i;:::-;3870:36;3884:4;3890:2;3894:11;3901:4;3894:6;:11;:::i;:::-;3870:13;:36::i;:::-;3925:8;;;;;;;;;-1:-1:-1;;;;;3925:8:6;-1:-1:-1;;;;;3925:15:6;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3921:33;;;3968:7;3276:1299;;;:::o;3673:313::-;4002:27;;-1:-1:-1;;;4002:27:6;;-1:-1:-1;;;;;4137:32:7;;;4002:27:6;;;4119:51:7;4002:16:6;:23;;;;4092:18:7;;4002:27:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3998:293;;;4046:12;4076:5;4068:7;;4061:6;:14;;;;:::i;:::-;:20;;;;:::i;:::-;4046:35;;4096:40;4110:4;4124;4131;4096:13;:40::i;:::-;4151:9;:7;:9::i;3998:293::-;4311:20;4357:1;4345:11;;:13;:42;;;;-1:-1:-1;;;;;;4361:26:6;;;;;;:20;:26;;;;;;;;4360:27;4345:42;4342:171;;;4435:5;4423:11;;4416:6;:18;;;;:::i;:::-;:24;;;;:::i;:::-;4403:37;;4455:46;4469:4;4482;4488:12;4455:13;:46::i;:::-;4523:44;4537:4;4543:2;4547:19;4554:12;4547:6;:19;:::i;5973:1107:2:-;-1:-1:-1;;;;;6062:18:2;;6058:540;;6214:5;6198:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6058:540:2;;-1:-1:-1;6058:540:2;;-1:-1:-1;;;;;6272:15:2;;6250:19;6272:15;;;;;;;;;;;6305:19;;;6301:115;;;6351:50;;-1:-1:-1;;;6351:50:2;;-1:-1:-1;;;;;7253:32:7;;6351:50:2;;;7235:51:7;7302:18;;;7295:34;;;7345:18;;;7338:34;;;7208:18;;6351:50:2;7033:345:7;6301:115:2;-1:-1:-1;;;;;6536:15:2;;:9;:15;;;;;;;;;;6554:19;;;;6536:37;;6058:540;-1:-1:-1;;;;;6612:16:2;;6608:425;;6775:12;:21;;;;;;;6608:425;;;-1:-1:-1;;;;;6986:13:2;;:9;:13;;;;;;;;;;:22;;;;;;6608:425;7063:2;-1:-1:-1;;;;;7048:25:2;7057:4;-1:-1:-1;;;;;7048:25:2;;7067:5;7048:25;;;;2858::7;;2846:2;2831:18;;2712:177;7048:25:2;;;;;;;;5973:1107;;;:::o;1907:485:6:-;1977:12;1963:13;2892:12:2;;;2814:97;1963:13:6;:26;1960:63;;;1907:485;:::o;1960:63::-;-1:-1:-1;;;;;3060:18:2;;2043:17:6;3060:18:2;;;;;;;;;;;;2112:15:6;3060:18:2;2112:9:6;:15::i;:::-;2093:34;-1:-1:-1;2138:17:6;2156:20;2093:34;2156:9;:20;:::i;:::-;2138:38;-1:-1:-1;2190:11:6;;2187:153;;2231:9;2217:12;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;2255:15:6;;:9;:15;;;;;;;;;;:26;;2272:9;;2255;:26;;2272:9;;2255:26;:::i;:::-;;;;-1:-1:-1;;2303:25:6;;;-1:-1:-1;;;;;8227:32:7;;8209:51;;8291:2;8276:18;;8269:34;;;2303:25:6;;8182:18:7;2303:25:6;;;;;;;2187:153;-1:-1:-1;;;;;;;;2350:18:6;;;;;:12;:18;;;;;2369:15;2350:34;;1907:485::o;4583:378::-;693:6;:11;;-1:-1:-1;;693:11:6;700:4;693:11;;;4670:4:::1;-1:-1:-1::0;3060:18:2;;;;;;;;;;;4631:45:6;-1:-1:-1;4690:8:6;;4687:267:::1;;4718:29;::::0;-1:-1:-1;;;4718:29:6;;::::1;::::0;::::1;2858:25:7::0;;;4718:16:6::1;-1:-1:-1::0;;;;;4718:21:6::1;::::0;::::1;::::0;2831:18:7;;4718:29:6::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4714:229;;4776:151;4815:4;4851:16;-1:-1:-1::0;;4776:8:6::1;:151::i;:::-;-1:-1:-1::0;727:6:6;:12;;-1:-1:-1;;727:12:6;;;4583:378::o;14:418:7:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:127::-;498:10;493:3;489:20;486:1;479:31;529:4;526:1;519:15;553:4;550:1;543:15;569:173;637:20;;-1:-1:-1;;;;;686:31:7;;676:42;;666:70;;732:1;729;722:12;666:70;569:173;;;:::o;747:118::-;833:5;826:13;819:21;812:5;809:32;799:60;;855:1;852;845:12;870:128;935:20;;964:28;935:20;964:28;:::i;1003:1207::-;1093:6;1101;1154:2;1142:9;1133:7;1129:23;1125:32;1122:52;;;1170:1;1167;1160:12;1122:52;1210:9;1197:23;1243:18;1235:6;1232:30;1229:50;;;1275:1;1272;1265:12;1229:50;1298:22;;1351:4;1343:13;;1339:27;-1:-1:-1;1329:55:7;;1380:1;1377;1370:12;1329:55;1420:2;1407:16;1446:18;1438:6;1435:30;1432:56;;;1468:18;;:::i;:::-;1514:6;1511:1;1507:14;1550:2;1544:9;1613:2;1609:7;1604:2;1600;1596:11;1592:25;1584:6;1580:38;1684:6;1672:10;1669:22;1648:18;1636:10;1633:34;1630:62;1627:88;;;1695:18;;:::i;:::-;1731:2;1724:22;1781;;;1831:4;1863:11;;;1859:22;;;1781;1819:17;;1893:19;;;1890:39;;;1925:1;1922;1915:12;1890:39;1957:4;1953:2;1949:13;1938:24;;1971:152;1987:6;1982:3;1979:15;1971:152;;;2055:23;2074:3;2055:23;:::i;:::-;2043:36;;2108:4;2004:14;;;;2099;1971:152;;;-1:-1:-1;2142:6:7;-1:-1:-1;2167:37:7;;-1:-1:-1;;;2198:4:7;2183:20;;2167:37;:::i;:::-;2157:47;;1003:1207;;;;;:::o;2215:300::-;2283:6;2291;2344:2;2332:9;2323:7;2319:23;2315:32;2312:52;;;2360:1;2357;2350:12;2312:52;2383:29;2402:9;2383:29;:::i;:::-;2373:39;2481:2;2466:18;;;;2453:32;;-1:-1:-1;;;2215:300:7:o;2894:374::-;2971:6;2979;2987;3040:2;3028:9;3019:7;3015:23;3011:32;3008:52;;;3056:1;3053;3046:12;3008:52;3079:29;3098:9;3079:29;:::i;:::-;3069:39;;3127:38;3161:2;3150:9;3146:18;3127:38;:::i;:::-;2894:374;;3117:48;;-1:-1:-1;;;3234:2:7;3219:18;;;;3206:32;;2894:374::o;3462:315::-;3527:6;3535;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3627:29;3646:9;3627:29;:::i;:::-;3617:39;;3706:2;3695:9;3691:18;3678:32;3719:28;3741:5;3719:28;:::i;:::-;3766:5;3756:15;;;3462:315;;;;;:::o;3782:186::-;3841:6;3894:2;3882:9;3873:7;3869:23;3865:32;3862:52;;;3910:1;3907;3900:12;3862:52;3933:29;3952:9;3933:29;:::i;:::-;3923:39;3782:186;-1:-1:-1;;;3782:186:7:o;4407:466::-;4484:6;4492;4500;4553:2;4541:9;4532:7;4528:23;4524:32;4521:52;;;4569:1;4566;4559:12;4521:52;-1:-1:-1;;4614:23:7;;;4734:2;4719:18;;4706:32;;-1:-1:-1;4837:2:7;4822:18;;;4809:32;;4407:466;-1:-1:-1;4407:466:7:o;4878:260::-;4946:6;4954;5007:2;4995:9;4986:7;4982:23;4978:32;4975:52;;;5023:1;5020;5013:12;4975:52;5046:29;5065:9;5046:29;:::i;:::-;5036:39;;5094:38;5128:2;5117:9;5113:18;5094:38;:::i;5143:380::-;5222:1;5218:12;;;;5265;;;5286:61;;5340:4;5332:6;5328:17;5318:27;;5286:61;5393:2;5385:6;5382:14;5362:18;5359:38;5356:161;;5439:10;5434:3;5430:20;5427:1;5420:31;5474:4;5471:1;5464:15;5502:4;5499:1;5492:15;5356:161;;5143:380;;;:::o;5528:127::-;5589:10;5584:3;5580:20;5577:1;5570:31;5620:4;5617:1;5610:15;5644:4;5641:1;5634:15;5949:245;6016:6;6069:2;6057:9;6048:7;6044:23;6040:32;6037:52;;;6085:1;6082;6075:12;6037:52;6117:9;6111:16;6136:28;6158:5;6136:28;:::i;6199:127::-;6260:10;6255:3;6251:20;6248:1;6241:31;6291:4;6288:1;6281:15;6315:4;6312:1;6305:15;6331:128;6398:9;;;6419:11;;;6416:37;;;6433:18;;:::i;6464:217::-;6504:1;6530;6520:132;;6574:10;6569:3;6565:20;6562:1;6555:31;6609:4;6606:1;6599:15;6637:4;6634:1;6627:15;6520:132;-1:-1:-1;6666:9:7;;6464:217::o;7732:168::-;7805:9;;;7836;;7853:15;;;7847:22;;7833:37;7823:71;;7874:18;;:::i;7905:125::-;7970:9;;;7991:10;;;7988:36;;;8004:18;;:::i

Swarm Source

ipfs://8b1eb298981aa1b349476dc752b8723c8a1e85f9f26e93080d69537bb5dcee26
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.