ETH Price: $3,506.10 (+2.34%)
Gas: 3 Gwei

Token

DINO (DINO)
 

Overview

Max Total Supply

420,690,000,000,000 DINO

Holders

31

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
729,685,046,601.560867679438574204 DINO

Value
$0.00
0x039ba0777d22da4995cd94832105b9b558b3b3bc
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DINO

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-06-23
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` 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 amount
    ) external returns (bool);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;


/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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 ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 value {ERC20} uses, unless this function is
     * 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 override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * 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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File: DinoToken.sol
pragma solidity ^0.8.0;


contract DINO is ERC20 {

    address public  owner; 

    constructor() ERC20("DINO", "DINO") {
         owner = msg.sender;
        _mint(owner, 420690000000000 * 10 ** decimals()); // TOTAL SUPPLY 420,690,000,000,000
    }
    
    modifier verifyOwner() {
        require(msg.sender == owner, "LFG: You are not the owner, Bye");
        _;
    }

    //Contract Renounced
     function changeOwner() external verifyOwner {
        owner = 0x0000000000000000000000000000000000000000;
    }
    
    function burn(uint256 value) external  {
        _burn(msg.sender, value);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"amount","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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600481526020017f44494e4f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f44494e4f00000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620002ea565b508060049080519060200190620000af929190620002ea565b50505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000158600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200012a6200015e60201b60201c565b600a620001389190620004f5565b66017e9d8602b4006200014c919062000632565b6200016760201b60201c565b6200074b565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001d190620003ed565b60405180910390fd5b620001ee60008383620002e060201b60201c565b80600260008282546200020291906200043d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200025991906200043d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002c091906200040f565b60405180910390a3620002dc60008383620002e560201b60201c565b5050565b505050565b505050565b828054620002f890620006aa565b90600052602060002090601f0160209004810192826200031c576000855562000368565b82601f106200033757805160ff191683800117855562000368565b8280016001018555821562000368579182015b82811115620003675782518255916020019190600101906200034a565b5b5090506200037791906200037b565b5090565b5b80821115620003965760008160009055506001016200037c565b5090565b6000620003a9601f836200042c565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620003e78162000693565b82525050565b6000602082019050818103600083015262000408816200039a565b9050919050565b6000602082019050620004266000830184620003dc565b92915050565b600082825260208201905092915050565b60006200044a8262000693565b9150620004578362000693565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200048f576200048e620006e0565b5b828201905092915050565b6000808291508390505b6001851115620004ec57808604811115620004c457620004c3620006e0565b5b6001851615620004d45780820291505b8081029050620004e4856200073e565b9450620004a4565b94509492505050565b6000620005028262000693565b91506200050f836200069d565b92506200053e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000546565b905092915050565b6000826200055857600190506200062b565b816200056857600090506200062b565b81600181146200058157600281146200058c57620005c2565b60019150506200062b565b60ff841115620005a157620005a0620006e0565b5b8360020a915084821115620005bb57620005ba620006e0565b5b506200062b565b5060208310610133831016604e8410600b8410161715620005fc5782820a905083811115620005f657620005f5620006e0565b5b6200062b565b6200060b84848460016200049a565b92509050818404811115620006255762000624620006e0565b5b81810290505b9392505050565b60006200063f8262000693565b91506200064c8362000693565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006885762000687620006e0565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620006c357607f821691505b60208210811415620006da57620006d96200070f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b611755806200075b6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806362a094771161008c57806395d89b411161006657806395d89b411461024d578063a457c2d71461026b578063a9059cbb1461029b578063dd62ed3e146102cb576100ea565b806362a09477146101f557806370a08231146101ff5780638da5cb5b1461022f576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342966c68146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b604051610104919061138a565b60405180910390f35b61012760048036038101906101229190610eca565b61038d565b604051610134919061136f565b60405180910390f35b6101456103b0565b60405161015291906114ec565b60405180910390f35b61017560048036038101906101709190610e7b565b6103ba565b604051610182919061136f565b60405180910390f35b6101936103e9565b6040516101a09190611507565b60405180910390f35b6101c360048036038101906101be9190610eca565b6103f2565b6040516101d0919061136f565b60405180910390f35b6101f360048036038101906101ee9190610f06565b610429565b005b6101fd610436565b005b61021960048036038101906102149190610e16565b61050a565b60405161022691906114ec565b60405180910390f35b610237610552565b6040516102449190611354565b60405180910390f35b610255610578565b604051610262919061138a565b60405180910390f35b61028560048036038101906102809190610eca565b61060a565b604051610292919061136f565b60405180910390f35b6102b560048036038101906102b09190610eca565b610681565b6040516102c2919061136f565b60405180910390f35b6102e560048036038101906102e09190610e3f565b6106a4565b6040516102f291906114ec565b60405180910390f35b60606003805461030a90611650565b80601f016020809104026020016040519081016040528092919081815260200182805461033690611650565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60008061039861072b565b90506103a5818585610733565b600191505092915050565b6000600254905090565b6000806103c561072b565b90506103d28582856108fe565b6103dd85858561098a565b60019150509392505050565b60006012905090565b6000806103fd61072b565b905061041e81858561040f85896106a4565b610419919061153e565b610733565b600191505092915050565b6104333382610c0b565b50565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104bd9061144c565b60405180910390fd5b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461058790611650565b80601f01602080910402602001604051908101604052809291908181526020018280546105b390611650565b80156106005780601f106105d557610100808354040283529160200191610600565b820191906000526020600020905b8154815290600101906020018083116105e357829003601f168201915b5050505050905090565b60008061061561072b565b9050600061062382866106a4565b905083811015610668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065f906114cc565b60405180910390fd5b6106758286868403610733565b60019250505092915050565b60008061068c61072b565b905061069981858561098a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a906114ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a906113ec565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f191906114ec565b60405180910390a3505050565b600061090a84846106a4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109845781811015610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d9061140c565b60405180910390fd5b6109838484848403610733565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f19061148c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906113ac565b60405180910390fd5b610a75838383610de2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af29061142c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b8e919061153e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bf291906114ec565b60405180910390a3610c05848484610de7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c729061146c565b60405180910390fd5b610c8782600083610de2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906113cc565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d649190611594565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dc991906114ec565b60405180910390a3610ddd83600084610de7565b505050565b505050565b505050565b600081359050610dfb816116f1565b92915050565b600081359050610e1081611708565b92915050565b600060208284031215610e2857600080fd5b6000610e3684828501610dec565b91505092915050565b60008060408385031215610e5257600080fd5b6000610e6085828601610dec565b9250506020610e7185828601610dec565b9150509250929050565b600080600060608486031215610e9057600080fd5b6000610e9e86828701610dec565b9350506020610eaf86828701610dec565b9250506040610ec086828701610e01565b9150509250925092565b60008060408385031215610edd57600080fd5b6000610eeb85828601610dec565b9250506020610efc85828601610e01565b9150509250929050565b600060208284031215610f1857600080fd5b6000610f2684828501610e01565b91505092915050565b610f38816115c8565b82525050565b610f47816115da565b82525050565b6000610f5882611522565b610f62818561152d565b9350610f7281856020860161161d565b610f7b816116e0565b840191505092915050565b6000610f9360238361152d565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ff960228361152d565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061105f60228361152d565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110c5601d8361152d565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061110560268361152d565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061116b601f8361152d565b91507f4c46473a20596f7520617265206e6f7420746865206f776e65722c20427965006000830152602082019050919050565b60006111ab60218361152d565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061121160258361152d565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061127760248361152d565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112dd60258361152d565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61133f81611606565b82525050565b61134e81611610565b82525050565b60006020820190506113696000830184610f2f565b92915050565b60006020820190506113846000830184610f3e565b92915050565b600060208201905081810360008301526113a48184610f4d565b905092915050565b600060208201905081810360008301526113c581610f86565b9050919050565b600060208201905081810360008301526113e581610fec565b9050919050565b6000602082019050818103600083015261140581611052565b9050919050565b60006020820190508181036000830152611425816110b8565b9050919050565b60006020820190508181036000830152611445816110f8565b9050919050565b600060208201905081810360008301526114658161115e565b9050919050565b600060208201905081810360008301526114858161119e565b9050919050565b600060208201905081810360008301526114a581611204565b9050919050565b600060208201905081810360008301526114c58161126a565b9050919050565b600060208201905081810360008301526114e5816112d0565b9050919050565b60006020820190506115016000830184611336565b92915050565b600060208201905061151c6000830184611345565b92915050565b600081519050919050565b600082825260208201905092915050565b600061154982611606565b915061155483611606565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561158957611588611682565b5b828201905092915050565b600061159f82611606565b91506115aa83611606565b9250828210156115bd576115bc611682565b5b828203905092915050565b60006115d3826115e6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561163b578082015181840152602081019050611620565b8381111561164a576000848401525b50505050565b6000600282049050600182168061166857607f821691505b6020821081141561167c5761167b6116b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6116fa816115c8565b811461170557600080fd5b50565b61171181611606565b811461171c57600080fd5b5056fea26469706673582212204bf1493463920d004ae86d5bedc39a528cbd4e98e929a5d78bc19b752206f67e64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806362a094771161008c57806395d89b411161006657806395d89b411461024d578063a457c2d71461026b578063a9059cbb1461029b578063dd62ed3e146102cb576100ea565b806362a09477146101f557806370a08231146101ff5780638da5cb5b1461022f576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342966c68146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b604051610104919061138a565b60405180910390f35b61012760048036038101906101229190610eca565b61038d565b604051610134919061136f565b60405180910390f35b6101456103b0565b60405161015291906114ec565b60405180910390f35b61017560048036038101906101709190610e7b565b6103ba565b604051610182919061136f565b60405180910390f35b6101936103e9565b6040516101a09190611507565b60405180910390f35b6101c360048036038101906101be9190610eca565b6103f2565b6040516101d0919061136f565b60405180910390f35b6101f360048036038101906101ee9190610f06565b610429565b005b6101fd610436565b005b61021960048036038101906102149190610e16565b61050a565b60405161022691906114ec565b60405180910390f35b610237610552565b6040516102449190611354565b60405180910390f35b610255610578565b604051610262919061138a565b60405180910390f35b61028560048036038101906102809190610eca565b61060a565b604051610292919061136f565b60405180910390f35b6102b560048036038101906102b09190610eca565b610681565b6040516102c2919061136f565b60405180910390f35b6102e560048036038101906102e09190610e3f565b6106a4565b6040516102f291906114ec565b60405180910390f35b60606003805461030a90611650565b80601f016020809104026020016040519081016040528092919081815260200182805461033690611650565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60008061039861072b565b90506103a5818585610733565b600191505092915050565b6000600254905090565b6000806103c561072b565b90506103d28582856108fe565b6103dd85858561098a565b60019150509392505050565b60006012905090565b6000806103fd61072b565b905061041e81858561040f85896106a4565b610419919061153e565b610733565b600191505092915050565b6104333382610c0b565b50565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104bd9061144c565b60405180910390fd5b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461058790611650565b80601f01602080910402602001604051908101604052809291908181526020018280546105b390611650565b80156106005780601f106105d557610100808354040283529160200191610600565b820191906000526020600020905b8154815290600101906020018083116105e357829003601f168201915b5050505050905090565b60008061061561072b565b9050600061062382866106a4565b905083811015610668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065f906114cc565b60405180910390fd5b6106758286868403610733565b60019250505092915050565b60008061068c61072b565b905061069981858561098a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a906114ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a906113ec565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f191906114ec565b60405180910390a3505050565b600061090a84846106a4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109845781811015610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d9061140c565b60405180910390fd5b6109838484848403610733565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f19061148c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906113ac565b60405180910390fd5b610a75838383610de2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af29061142c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b8e919061153e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bf291906114ec565b60405180910390a3610c05848484610de7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c729061146c565b60405180910390fd5b610c8782600083610de2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906113cc565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d649190611594565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dc991906114ec565b60405180910390a3610ddd83600084610de7565b505050565b505050565b505050565b600081359050610dfb816116f1565b92915050565b600081359050610e1081611708565b92915050565b600060208284031215610e2857600080fd5b6000610e3684828501610dec565b91505092915050565b60008060408385031215610e5257600080fd5b6000610e6085828601610dec565b9250506020610e7185828601610dec565b9150509250929050565b600080600060608486031215610e9057600080fd5b6000610e9e86828701610dec565b9350506020610eaf86828701610dec565b9250506040610ec086828701610e01565b9150509250925092565b60008060408385031215610edd57600080fd5b6000610eeb85828601610dec565b9250506020610efc85828601610e01565b9150509250929050565b600060208284031215610f1857600080fd5b6000610f2684828501610e01565b91505092915050565b610f38816115c8565b82525050565b610f47816115da565b82525050565b6000610f5882611522565b610f62818561152d565b9350610f7281856020860161161d565b610f7b816116e0565b840191505092915050565b6000610f9360238361152d565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ff960228361152d565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061105f60228361152d565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110c5601d8361152d565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061110560268361152d565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061116b601f8361152d565b91507f4c46473a20596f7520617265206e6f7420746865206f776e65722c20427965006000830152602082019050919050565b60006111ab60218361152d565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061121160258361152d565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061127760248361152d565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112dd60258361152d565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61133f81611606565b82525050565b61134e81611610565b82525050565b60006020820190506113696000830184610f2f565b92915050565b60006020820190506113846000830184610f3e565b92915050565b600060208201905081810360008301526113a48184610f4d565b905092915050565b600060208201905081810360008301526113c581610f86565b9050919050565b600060208201905081810360008301526113e581610fec565b9050919050565b6000602082019050818103600083015261140581611052565b9050919050565b60006020820190508181036000830152611425816110b8565b9050919050565b60006020820190508181036000830152611445816110f8565b9050919050565b600060208201905081810360008301526114658161115e565b9050919050565b600060208201905081810360008301526114858161119e565b9050919050565b600060208201905081810360008301526114a581611204565b9050919050565b600060208201905081810360008301526114c58161126a565b9050919050565b600060208201905081810360008301526114e5816112d0565b9050919050565b60006020820190506115016000830184611336565b92915050565b600060208201905061151c6000830184611345565b92915050565b600081519050919050565b600082825260208201905092915050565b600061154982611606565b915061155483611606565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561158957611588611682565b5b828201905092915050565b600061159f82611606565b91506115aa83611606565b9250828210156115bd576115bc611682565b5b828203905092915050565b60006115d3826115e6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561163b578082015181840152602081019050611620565b8381111561164a576000848401525b50505050565b6000600282049050600182168061166857607f821691505b6020821081141561167c5761167b6116b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6116fa816115c8565b811461170557600080fd5b50565b61171181611606565b811461171c57600080fd5b5056fea26469706673582212204bf1493463920d004ae86d5bedc39a528cbd4e98e929a5d78bc19b752206f67e64736f6c63430008000033

Deployed Bytecode Sourcemap

17521:608:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6680:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9031:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7800:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9812:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7642:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10516:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18042:82;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17917:113;;;:::i;:::-;;7971:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17553:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6899:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11257:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8304:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8560:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6680:100;6734:13;6767:5;6760:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6680:100;:::o;9031:201::-;9114:4;9131:13;9147:12;:10;:12::i;:::-;9131:28;;9170:32;9179:5;9186:7;9195:6;9170:8;:32::i;:::-;9220:4;9213:11;;;9031:201;;;;:::o;7800:108::-;7861:7;7888:12;;7881:19;;7800:108;:::o;9812:295::-;9943:4;9960:15;9978:12;:10;:12::i;:::-;9960:30;;10001:38;10017:4;10023:7;10032:6;10001:15;:38::i;:::-;10050:27;10060:4;10066:2;10070:6;10050:9;:27::i;:::-;10095:4;10088:11;;;9812:295;;;;;:::o;7642:93::-;7700:5;7725:2;7718:9;;7642:93;:::o;10516:238::-;10604:4;10621:13;10637:12;:10;:12::i;:::-;10621:28;;10660:64;10669:5;10676:7;10713:10;10685:25;10695:5;10702:7;10685:9;:25::i;:::-;:38;;;;:::i;:::-;10660:8;:64::i;:::-;10742:4;10735:11;;;10516:238;;;;:::o;18042:82::-;18092:24;18098:10;18110:5;18092;:24::i;:::-;18042:82;:::o;17917:113::-;17821:5;;;;;;;;;;;17807:19;;:10;:19;;;17799:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;17980:42:::1;17972:5;;:50;;;;;;;;;;;;;;;;;;17917:113::o:0;7971:127::-;8045:7;8072:9;:18;8082:7;8072:18;;;;;;;;;;;;;;;;8065:25;;7971:127;;;:::o;17553:21::-;;;;;;;;;;;;;:::o;6899:104::-;6955:13;6988:7;6981:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6899:104;:::o;11257:436::-;11350:4;11367:13;11383:12;:10;:12::i;:::-;11367:28;;11406:24;11433:25;11443:5;11450:7;11433:9;:25::i;:::-;11406:52;;11497:15;11477:16;:35;;11469:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11590:60;11599:5;11606:7;11634:15;11615:16;:34;11590:8;:60::i;:::-;11681:4;11674:11;;;;11257:436;;;;:::o;8304:193::-;8383:4;8400:13;8416:12;:10;:12::i;:::-;8400:28;;8439;8449:5;8456:2;8460:6;8439:9;:28::i;:::-;8485:4;8478:11;;;8304:193;;;;:::o;8560:151::-;8649:7;8676:11;:18;8688:5;8676:18;;;;;;;;;;;;;;;:27;8695:7;8676:27;;;;;;;;;;;;;;;;8669:34;;8560:151;;;;:::o;710:98::-;763:7;790:10;783:17;;710:98;:::o;14882:380::-;15035:1;15018:19;;:5;:19;;;;15010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15116:1;15097:21;;:7;:21;;;;15089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15200:6;15170:11;:18;15182:5;15170:18;;;;;;;;;;;;;;;:27;15189:7;15170:27;;;;;;;;;;;;;;;:36;;;;15238:7;15222:32;;15231:5;15222:32;;;15247:6;15222:32;;;;;;:::i;:::-;;;;;;;;14882:380;;;:::o;15553:453::-;15688:24;15715:25;15725:5;15732:7;15715:9;:25::i;:::-;15688:52;;15775:17;15755:16;:37;15751:248;;15837:6;15817:16;:26;;15809:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15921:51;15930:5;15937:7;15965:6;15946:16;:25;15921:8;:51::i;:::-;15751:248;15553:453;;;;:::o;12163:671::-;12310:1;12294:18;;:4;:18;;;;12286:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12387:1;12373:16;;:2;:16;;;;12365:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12442:38;12463:4;12469:2;12473:6;12442:20;:38::i;:::-;12493:19;12515:9;:15;12525:4;12515:15;;;;;;;;;;;;;;;;12493:37;;12564:6;12549:11;:21;;12541:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12681:6;12667:11;:20;12649:9;:15;12659:4;12649:15;;;;;;;;;;;;;;;:38;;;;12726:6;12709:9;:13;12719:2;12709:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12765:2;12750:26;;12759:4;12750:26;;;12769:6;12750:26;;;;;;:::i;:::-;;;;;;;;12789:37;12809:4;12815:2;12819:6;12789:19;:37::i;:::-;12163:671;;;;:::o;13853:591::-;13956:1;13937:21;;:7;:21;;;;13929:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14009:49;14030:7;14047:1;14051:6;14009:20;:49::i;:::-;14071:22;14096:9;:18;14106:7;14096:18;;;;;;;;;;;;;;;;14071:43;;14151:6;14133:14;:24;;14125:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14270:6;14253:14;:23;14232:9;:18;14242:7;14232:18;;;;;;;;;;;;;;;:44;;;;14314:6;14298:12;;:22;;;;;;;:::i;:::-;;;;;;;;14364:1;14338:37;;14347:7;14338:37;;;14368:6;14338:37;;;;;;:::i;:::-;;;;;;;;14388:48;14408:7;14425:1;14429:6;14388:19;:48::i;:::-;13853:591;;;:::o;16606:125::-;;;;:::o;17335:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:366::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:4;3892:2;3887:3;3883:12;3876:26;3928:2;3923:3;3919:12;3912:19;;3717:220;;;:::o;3943:327::-;;4106:67;4170:2;4165:3;4106:67;:::i;:::-;4099:74;;4203:31;4199:1;4194:3;4190:11;4183:52;4261:2;4256:3;4252:12;4245:19;;4089:181;;;:::o;4276:370::-;;4439:67;4503:2;4498:3;4439:67;:::i;:::-;4432:74;;4536:34;4532:1;4527:3;4523:11;4516:55;4602:8;4597:2;4592:3;4588:12;4581:30;4637:2;4632:3;4628:12;4621:19;;4422:224;;;:::o;4652:329::-;;4815:67;4879:2;4874:3;4815:67;:::i;:::-;4808:74;;4912:33;4908:1;4903:3;4899:11;4892:54;4972:2;4967:3;4963:12;4956:19;;4798:183;;;:::o;4987:365::-;;5150:67;5214:2;5209:3;5150:67;:::i;:::-;5143:74;;5247:34;5243:1;5238:3;5234:11;5227:55;5313:3;5308:2;5303:3;5299:12;5292:25;5343:2;5338:3;5334:12;5327:19;;5133:219;;;:::o;5358:369::-;;5521:67;5585:2;5580:3;5521:67;:::i;:::-;5514:74;;5618:34;5614:1;5609:3;5605:11;5598:55;5684:7;5679:2;5674:3;5670:12;5663:29;5718:2;5713:3;5709:12;5702:19;;5504:223;;;:::o;5733:368::-;;5896:67;5960:2;5955:3;5896:67;:::i;:::-;5889:74;;5993:34;5989:1;5984:3;5980:11;5973:55;6059:6;6054:2;6049:3;6045:12;6038:28;6092:2;6087:3;6083:12;6076:19;;5879:222;;;:::o;6107:369::-;;6270:67;6334:2;6329:3;6270:67;:::i;:::-;6263:74;;6367:34;6363:1;6358:3;6354:11;6347:55;6433:7;6428:2;6423:3;6419:12;6412:29;6467:2;6462:3;6458:12;6451:19;;6253:223;;;:::o;6482:118::-;6569:24;6587:5;6569:24;:::i;:::-;6564:3;6557:37;6547:53;;:::o;6606:112::-;6689:22;6705:5;6689:22;:::i;:::-;6684:3;6677:35;6667:51;;:::o;6724:222::-;;6855:2;6844:9;6840:18;6832:26;;6868:71;6936:1;6925:9;6921:17;6912:6;6868:71;:::i;:::-;6822:124;;;;:::o;6952:210::-;;7077:2;7066:9;7062:18;7054:26;;7090:65;7152:1;7141:9;7137:17;7128:6;7090:65;:::i;:::-;7044:118;;;;:::o;7168:313::-;;7319:2;7308:9;7304:18;7296:26;;7368:9;7362:4;7358:20;7354:1;7343:9;7339:17;7332:47;7396:78;7469:4;7460:6;7396:78;:::i;:::-;7388:86;;7286:195;;;;:::o;7487:419::-;;7691:2;7680:9;7676:18;7668:26;;7740:9;7734:4;7730:20;7726:1;7715:9;7711:17;7704:47;7768:131;7894:4;7768:131;:::i;:::-;7760:139;;7658:248;;;:::o;7912:419::-;;8116:2;8105:9;8101:18;8093:26;;8165:9;8159:4;8155:20;8151:1;8140:9;8136:17;8129:47;8193:131;8319:4;8193:131;:::i;:::-;8185:139;;8083:248;;;:::o;8337:419::-;;8541:2;8530:9;8526:18;8518:26;;8590:9;8584:4;8580:20;8576:1;8565:9;8561:17;8554:47;8618:131;8744:4;8618:131;:::i;:::-;8610:139;;8508:248;;;:::o;8762:419::-;;8966:2;8955:9;8951:18;8943:26;;9015:9;9009:4;9005:20;9001:1;8990:9;8986:17;8979:47;9043:131;9169:4;9043:131;:::i;:::-;9035:139;;8933:248;;;:::o;9187:419::-;;9391:2;9380:9;9376:18;9368:26;;9440:9;9434:4;9430:20;9426:1;9415:9;9411:17;9404:47;9468:131;9594:4;9468:131;:::i;:::-;9460:139;;9358:248;;;:::o;9612:419::-;;9816:2;9805:9;9801:18;9793:26;;9865:9;9859:4;9855:20;9851:1;9840:9;9836:17;9829:47;9893:131;10019:4;9893:131;:::i;:::-;9885:139;;9783:248;;;:::o;10037:419::-;;10241:2;10230:9;10226:18;10218:26;;10290:9;10284:4;10280:20;10276:1;10265:9;10261:17;10254:47;10318:131;10444:4;10318:131;:::i;:::-;10310:139;;10208:248;;;:::o;10462:419::-;;10666:2;10655:9;10651:18;10643:26;;10715:9;10709:4;10705:20;10701:1;10690:9;10686:17;10679:47;10743:131;10869:4;10743:131;:::i;:::-;10735:139;;10633:248;;;:::o;10887:419::-;;11091:2;11080:9;11076:18;11068:26;;11140:9;11134:4;11130:20;11126:1;11115:9;11111:17;11104:47;11168:131;11294:4;11168:131;:::i;:::-;11160:139;;11058:248;;;:::o;11312:419::-;;11516:2;11505:9;11501:18;11493:26;;11565:9;11559:4;11555:20;11551:1;11540:9;11536:17;11529:47;11593:131;11719:4;11593:131;:::i;:::-;11585:139;;11483:248;;;:::o;11737:222::-;;11868:2;11857:9;11853:18;11845:26;;11881:71;11949:1;11938:9;11934:17;11925:6;11881:71;:::i;:::-;11835:124;;;;:::o;11965:214::-;;12092:2;12081:9;12077:18;12069:26;;12105:67;12169:1;12158:9;12154:17;12145:6;12105:67;:::i;:::-;12059:120;;;;:::o;12185:99::-;;12271:5;12265:12;12255:22;;12244:40;;;:::o;12290:169::-;;12408:6;12403:3;12396:19;12448:4;12443:3;12439:14;12424:29;;12386:73;;;;:::o;12465:305::-;;12524:20;12542:1;12524:20;:::i;:::-;12519:25;;12558:20;12576:1;12558:20;:::i;:::-;12553:25;;12712:1;12644:66;12640:74;12637:1;12634:81;12631:2;;;12718:18;;:::i;:::-;12631:2;12762:1;12759;12755:9;12748:16;;12509:261;;;;:::o;12776:191::-;;12836:20;12854:1;12836:20;:::i;:::-;12831:25;;12870:20;12888:1;12870:20;:::i;:::-;12865:25;;12909:1;12906;12903:8;12900:2;;;12914:18;;:::i;:::-;12900:2;12959:1;12956;12952:9;12944:17;;12821:146;;;;:::o;12973:96::-;;13039:24;13057:5;13039:24;:::i;:::-;13028:35;;13018:51;;;:::o;13075:90::-;;13152:5;13145:13;13138:21;13127:32;;13117:48;;;:::o;13171:126::-;;13248:42;13241:5;13237:54;13226:65;;13216:81;;;:::o;13303:77::-;;13369:5;13358:16;;13348:32;;;:::o;13386:86::-;;13461:4;13454:5;13450:16;13439:27;;13429:43;;;:::o;13478:307::-;13546:1;13556:113;13570:6;13567:1;13564:13;13556:113;;;13655:1;13650:3;13646:11;13640:18;13636:1;13631:3;13627:11;13620:39;13592:2;13589:1;13585:10;13580:15;;13556:113;;;13687:6;13684:1;13681:13;13678:2;;;13767:1;13758:6;13753:3;13749:16;13742:27;13678:2;13527:258;;;;:::o;13791:320::-;;13872:1;13866:4;13862:12;13852:22;;13919:1;13913:4;13909:12;13940:18;13930:2;;13996:4;13988:6;13984:17;13974:27;;13930:2;14058;14050:6;14047:14;14027:18;14024:38;14021:2;;;14077:18;;:::i;:::-;14021:2;13842:269;;;;:::o;14117:180::-;14165:77;14162:1;14155:88;14262:4;14259:1;14252:15;14286:4;14283:1;14276:15;14303:180;14351:77;14348:1;14341:88;14448:4;14445:1;14438:15;14472:4;14469:1;14462:15;14489:102;;14581:2;14577:7;14572:2;14565:5;14561:14;14557:28;14547:38;;14537:54;;;:::o;14597:122::-;14670:24;14688:5;14670:24;:::i;:::-;14663:5;14660:35;14650:2;;14709:1;14706;14699:12;14650:2;14640:79;:::o;14725:122::-;14798:24;14816:5;14798:24;:::i;:::-;14791:5;14788:35;14778:2;;14837:1;14834;14827:12;14778:2;14768:79;:::o

Swarm Source

ipfs://4bf1493463920d004ae86d5bedc39a528cbd4e98e929a5d78bc19b752206f67e
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.