ETH Price: $3,336.59 (-1.52%)
Gas: 12 Gwei

Token

dotUNIVERSE (dUNIV)
 

Overview

Max Total Supply

6,666,666,666 dUNIV

Holders

18

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
The Sandbox: SAND Token
Balance
1,000 dUNIV

Value
$0.00
0x3845badAde8e6dFF049820680d1F14bD3903a5d0
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:
dotUNIVERSE

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-10-22
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contract-c503274d44.sol


pragma solidity ^0.8.4;



/// @custom:security-contact [email protected]
contract dotUNIVERSE is ERC20, ERC20Burnable {
    constructor() ERC20("dotUNIVERSE", "dUNIV") {
        _mint(msg.sender, 6666666666 * 10 ** decimals());
    }
}

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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f646f74554e4956455253450000000000000000000000000000000000000000008152506040518060400160405280600581526020017f64554e495600000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000285565b508060049080519060200190620000af92919062000285565b505050620000f333620000c7620000f960201b60201c565b600a620000d5919062000475565b64018d5d42aa620000e79190620005b2565b6200010260201b60201c565b620006f4565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000175576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016c906200036d565b60405180910390fd5b62000189600083836200027b60201b60201c565b80600260008282546200019d9190620003bd565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001f49190620003bd565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200025b91906200038f565b60405180910390a362000277600083836200028060201b60201c565b5050565b505050565b505050565b82805462000293906200062a565b90600052602060002090601f016020900481019282620002b7576000855562000303565b82601f10620002d257805160ff191683800117855562000303565b8280016001018555821562000303579182015b8281111562000302578251825591602001919060010190620002e5565b5b50905062000312919062000316565b5090565b5b808211156200033157600081600090555060010162000317565b5090565b600062000344601f83620003ac565b91506200035182620006cb565b602082019050919050565b620003678162000613565b82525050565b60006020820190508181036000830152620003888162000335565b9050919050565b6000602082019050620003a660008301846200035c565b92915050565b600082825260208201905092915050565b6000620003ca8262000613565b9150620003d78362000613565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200040f576200040e62000660565b5b828201905092915050565b6000808291508390505b60018511156200046c5780860481111562000444576200044362000660565b5b6001851615620004545780820291505b80810290506200046485620006be565b945062000424565b94509492505050565b6000620004828262000613565b91506200048f836200061d565b9250620004be7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004c6565b905092915050565b600082620004d85760019050620005ab565b81620004e85760009050620005ab565b81600181146200050157600281146200050c5762000542565b6001915050620005ab565b60ff84111562000521576200052062000660565b5b8360020a9150848211156200053b576200053a62000660565b5b50620005ab565b5060208310610133831016604e8410600b84101617156200057c5782820a90508381111562000576576200057562000660565b5b620005ab565b6200058b84848460016200041a565b92509050818404811115620005a557620005a462000660565b5b81810290505b9392505050565b6000620005bf8262000613565b9150620005cc8362000613565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000608576200060762000660565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200064357607f821691505b602082108114156200065a57620006596200068f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61163d80620007046000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b4114610226578063a457c2d714610244578063a9059cbb14610274578063dd62ed3e146102a4576100cf565b806342966c68146101be57806370a08231146101da57806379cc67901461020a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102d4565b6040516100e99190610ff1565b60405180910390f35b61010c60048036038101906101079190610dd0565b610366565b6040516101199190610fd6565b60405180910390f35b61012a610389565b6040516101379190611133565b60405180910390f35b61015a60048036038101906101559190610d81565b610393565b6040516101679190610fd6565b60405180910390f35b6101786103c2565b604051610185919061114e565b60405180910390f35b6101a860048036038101906101a39190610dd0565b6103cb565b6040516101b59190610fd6565b60405180910390f35b6101d860048036038101906101d39190610e0c565b610402565b005b6101f460048036038101906101ef9190610d1c565b610416565b6040516102019190611133565b60405180910390f35b610224600480360381019061021f9190610dd0565b61045e565b005b61022e61047e565b60405161023b9190610ff1565b60405180910390f35b61025e60048036038101906102599190610dd0565b610510565b60405161026b9190610fd6565b60405180910390f35b61028e60048036038101906102899190610dd0565b610587565b60405161029b9190610fd6565b60405180910390f35b6102be60048036038101906102b99190610d45565b6105aa565b6040516102cb9190611133565b60405180910390f35b6060600380546102e390611297565b80601f016020809104026020016040519081016040528092919081815260200182805461030f90611297565b801561035c5780601f106103315761010080835404028352916020019161035c565b820191906000526020600020905b81548152906001019060200180831161033f57829003601f168201915b5050505050905090565b600080610371610631565b905061037e818585610639565b600191505092915050565b6000600254905090565b60008061039e610631565b90506103ab858285610804565b6103b6858585610890565b60019150509392505050565b60006012905090565b6000806103d6610631565b90506103f78185856103e885896105aa565b6103f29190611185565b610639565b600191505092915050565b61041361040d610631565b82610b11565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104708261046a610631565b83610804565b61047a8282610b11565b5050565b60606004805461048d90611297565b80601f01602080910402602001604051908101604052809291908181526020018280546104b990611297565b80156105065780601f106104db57610100808354040283529160200191610506565b820191906000526020600020905b8154815290600101906020018083116104e957829003601f168201915b5050505050905090565b60008061051b610631565b9050600061052982866105aa565b90508381101561056e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056590611113565b60405180910390fd5b61057b8286868403610639565b60019250505092915050565b600080610592610631565b905061059f818585610890565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a0906110f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071090611053565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107f79190611133565b60405180910390a3505050565b600061081084846105aa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461088a578181101561087c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087390611073565b60405180910390fd5b6108898484848403610639565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f7906110d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096790611013565b60405180910390fd5b61097b838383610ce8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890611093565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a949190611185565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610af89190611133565b60405180910390a3610b0b848484610ced565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b78906110b3565b60405180910390fd5b610b8d82600083610ce8565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90611033565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610c6a91906111db565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ccf9190611133565b60405180910390a3610ce383600084610ced565b505050565b505050565b505050565b600081359050610d01816115d9565b92915050565b600081359050610d16816115f0565b92915050565b600060208284031215610d2e57600080fd5b6000610d3c84828501610cf2565b91505092915050565b60008060408385031215610d5857600080fd5b6000610d6685828601610cf2565b9250506020610d7785828601610cf2565b9150509250929050565b600080600060608486031215610d9657600080fd5b6000610da486828701610cf2565b9350506020610db586828701610cf2565b9250506040610dc686828701610d07565b9150509250925092565b60008060408385031215610de357600080fd5b6000610df185828601610cf2565b9250506020610e0285828601610d07565b9150509250929050565b600060208284031215610e1e57600080fd5b6000610e2c84828501610d07565b91505092915050565b610e3e81611221565b82525050565b6000610e4f82611169565b610e598185611174565b9350610e69818560208601611264565b610e7281611327565b840191505092915050565b6000610e8a602383611174565b9150610e9582611338565b604082019050919050565b6000610ead602283611174565b9150610eb882611387565b604082019050919050565b6000610ed0602283611174565b9150610edb826113d6565b604082019050919050565b6000610ef3601d83611174565b9150610efe82611425565b602082019050919050565b6000610f16602683611174565b9150610f218261144e565b604082019050919050565b6000610f39602183611174565b9150610f448261149d565b604082019050919050565b6000610f5c602583611174565b9150610f67826114ec565b604082019050919050565b6000610f7f602483611174565b9150610f8a8261153b565b604082019050919050565b6000610fa2602583611174565b9150610fad8261158a565b604082019050919050565b610fc18161124d565b82525050565b610fd081611257565b82525050565b6000602082019050610feb6000830184610e35565b92915050565b6000602082019050818103600083015261100b8184610e44565b905092915050565b6000602082019050818103600083015261102c81610e7d565b9050919050565b6000602082019050818103600083015261104c81610ea0565b9050919050565b6000602082019050818103600083015261106c81610ec3565b9050919050565b6000602082019050818103600083015261108c81610ee6565b9050919050565b600060208201905081810360008301526110ac81610f09565b9050919050565b600060208201905081810360008301526110cc81610f2c565b9050919050565b600060208201905081810360008301526110ec81610f4f565b9050919050565b6000602082019050818103600083015261110c81610f72565b9050919050565b6000602082019050818103600083015261112c81610f95565b9050919050565b60006020820190506111486000830184610fb8565b92915050565b60006020820190506111636000830184610fc7565b92915050565b600081519050919050565b600082825260208201905092915050565b60006111908261124d565b915061119b8361124d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156111d0576111cf6112c9565b5b828201905092915050565b60006111e68261124d565b91506111f18361124d565b925082821015611204576112036112c9565b5b828203905092915050565b600061121a8261122d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611282578082015181840152602081019050611267565b83811115611291576000848401525b50505050565b600060028204905060018216806112af57607f821691505b602082108114156112c3576112c26112f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6115e28161120f565b81146115ed57600080fd5b50565b6115f98161124d565b811461160457600080fd5b5056fea2646970667358221220033f08edda6d569a40aef20e57055677088c44e678e2413db9f69cd826021cc564736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b4114610226578063a457c2d714610244578063a9059cbb14610274578063dd62ed3e146102a4576100cf565b806342966c68146101be57806370a08231146101da57806379cc67901461020a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102d4565b6040516100e99190610ff1565b60405180910390f35b61010c60048036038101906101079190610dd0565b610366565b6040516101199190610fd6565b60405180910390f35b61012a610389565b6040516101379190611133565b60405180910390f35b61015a60048036038101906101559190610d81565b610393565b6040516101679190610fd6565b60405180910390f35b6101786103c2565b604051610185919061114e565b60405180910390f35b6101a860048036038101906101a39190610dd0565b6103cb565b6040516101b59190610fd6565b60405180910390f35b6101d860048036038101906101d39190610e0c565b610402565b005b6101f460048036038101906101ef9190610d1c565b610416565b6040516102019190611133565b60405180910390f35b610224600480360381019061021f9190610dd0565b61045e565b005b61022e61047e565b60405161023b9190610ff1565b60405180910390f35b61025e60048036038101906102599190610dd0565b610510565b60405161026b9190610fd6565b60405180910390f35b61028e60048036038101906102899190610dd0565b610587565b60405161029b9190610fd6565b60405180910390f35b6102be60048036038101906102b99190610d45565b6105aa565b6040516102cb9190611133565b60405180910390f35b6060600380546102e390611297565b80601f016020809104026020016040519081016040528092919081815260200182805461030f90611297565b801561035c5780601f106103315761010080835404028352916020019161035c565b820191906000526020600020905b81548152906001019060200180831161033f57829003601f168201915b5050505050905090565b600080610371610631565b905061037e818585610639565b600191505092915050565b6000600254905090565b60008061039e610631565b90506103ab858285610804565b6103b6858585610890565b60019150509392505050565b60006012905090565b6000806103d6610631565b90506103f78185856103e885896105aa565b6103f29190611185565b610639565b600191505092915050565b61041361040d610631565b82610b11565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104708261046a610631565b83610804565b61047a8282610b11565b5050565b60606004805461048d90611297565b80601f01602080910402602001604051908101604052809291908181526020018280546104b990611297565b80156105065780601f106104db57610100808354040283529160200191610506565b820191906000526020600020905b8154815290600101906020018083116104e957829003601f168201915b5050505050905090565b60008061051b610631565b9050600061052982866105aa565b90508381101561056e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056590611113565b60405180910390fd5b61057b8286868403610639565b60019250505092915050565b600080610592610631565b905061059f818585610890565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a0906110f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071090611053565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107f79190611133565b60405180910390a3505050565b600061081084846105aa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461088a578181101561087c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087390611073565b60405180910390fd5b6108898484848403610639565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f7906110d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096790611013565b60405180910390fd5b61097b838383610ce8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890611093565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a949190611185565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610af89190611133565b60405180910390a3610b0b848484610ced565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b78906110b3565b60405180910390fd5b610b8d82600083610ce8565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90611033565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610c6a91906111db565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ccf9190611133565b60405180910390a3610ce383600084610ced565b505050565b505050565b505050565b600081359050610d01816115d9565b92915050565b600081359050610d16816115f0565b92915050565b600060208284031215610d2e57600080fd5b6000610d3c84828501610cf2565b91505092915050565b60008060408385031215610d5857600080fd5b6000610d6685828601610cf2565b9250506020610d7785828601610cf2565b9150509250929050565b600080600060608486031215610d9657600080fd5b6000610da486828701610cf2565b9350506020610db586828701610cf2565b9250506040610dc686828701610d07565b9150509250925092565b60008060408385031215610de357600080fd5b6000610df185828601610cf2565b9250506020610e0285828601610d07565b9150509250929050565b600060208284031215610e1e57600080fd5b6000610e2c84828501610d07565b91505092915050565b610e3e81611221565b82525050565b6000610e4f82611169565b610e598185611174565b9350610e69818560208601611264565b610e7281611327565b840191505092915050565b6000610e8a602383611174565b9150610e9582611338565b604082019050919050565b6000610ead602283611174565b9150610eb882611387565b604082019050919050565b6000610ed0602283611174565b9150610edb826113d6565b604082019050919050565b6000610ef3601d83611174565b9150610efe82611425565b602082019050919050565b6000610f16602683611174565b9150610f218261144e565b604082019050919050565b6000610f39602183611174565b9150610f448261149d565b604082019050919050565b6000610f5c602583611174565b9150610f67826114ec565b604082019050919050565b6000610f7f602483611174565b9150610f8a8261153b565b604082019050919050565b6000610fa2602583611174565b9150610fad8261158a565b604082019050919050565b610fc18161124d565b82525050565b610fd081611257565b82525050565b6000602082019050610feb6000830184610e35565b92915050565b6000602082019050818103600083015261100b8184610e44565b905092915050565b6000602082019050818103600083015261102c81610e7d565b9050919050565b6000602082019050818103600083015261104c81610ea0565b9050919050565b6000602082019050818103600083015261106c81610ec3565b9050919050565b6000602082019050818103600083015261108c81610ee6565b9050919050565b600060208201905081810360008301526110ac81610f09565b9050919050565b600060208201905081810360008301526110cc81610f2c565b9050919050565b600060208201905081810360008301526110ec81610f4f565b9050919050565b6000602082019050818103600083015261110c81610f72565b9050919050565b6000602082019050818103600083015261112c81610f95565b9050919050565b60006020820190506111486000830184610fb8565b92915050565b60006020820190506111636000830184610fc7565b92915050565b600081519050919050565b600082825260208201905092915050565b60006111908261124d565b915061119b8361124d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156111d0576111cf6112c9565b5b828201905092915050565b60006111e68261124d565b91506111f18361124d565b925082821015611204576112036112c9565b5b828203905092915050565b600061121a8261122d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611282578082015181840152602081019050611267565b83811115611291576000848401525b50505050565b600060028204905060018216806112af57607f821691505b602082108114156112c3576112c26112f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6115e28161120f565b81146115ed57600080fd5b50565b6115f98161124d565b811461160457600080fd5b5056fea2646970667358221220033f08edda6d569a40aef20e57055677088c44e678e2413db9f69cd826021cc564736f6c63430008040033

Deployed Bytecode Sourcemap

18781:166:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6712:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9063:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7832:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9844:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7674:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10548:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18087:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8003:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18497:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6931:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11289:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8336:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8592:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6712:100;6766:13;6799:5;6792:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6712:100;:::o;9063:201::-;9146:4;9163:13;9179:12;:10;:12::i;:::-;9163:28;;9202:32;9211:5;9218:7;9227:6;9202:8;:32::i;:::-;9252:4;9245:11;;;9063:201;;;;:::o;7832:108::-;7893:7;7920:12;;7913:19;;7832:108;:::o;9844:295::-;9975:4;9992:15;10010:12;:10;:12::i;:::-;9992:30;;10033:38;10049:4;10055:7;10064:6;10033:15;:38::i;:::-;10082:27;10092:4;10098:2;10102:6;10082:9;:27::i;:::-;10127:4;10120:11;;;9844:295;;;;;:::o;7674:93::-;7732:5;7757:2;7750:9;;7674:93;:::o;10548:238::-;10636:4;10653:13;10669:12;:10;:12::i;:::-;10653:28;;10692:64;10701:5;10708:7;10745:10;10717:25;10727:5;10734:7;10717:9;:25::i;:::-;:38;;;;:::i;:::-;10692:8;:64::i;:::-;10774:4;10767:11;;;10548:238;;;;:::o;18087:91::-;18143:27;18149:12;:10;:12::i;:::-;18163:6;18143:5;:27::i;:::-;18087:91;:::o;8003:127::-;8077:7;8104:9;:18;8114:7;8104:18;;;;;;;;;;;;;;;;8097:25;;8003:127;;;:::o;18497:164::-;18574:46;18590:7;18599:12;:10;:12::i;:::-;18613:6;18574:15;:46::i;:::-;18631:22;18637:7;18646:6;18631:5;:22::i;:::-;18497:164;;:::o;6931:104::-;6987:13;7020:7;7013:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6931:104;:::o;11289:436::-;11382:4;11399:13;11415:12;:10;:12::i;:::-;11399:28;;11438:24;11465:25;11475:5;11482:7;11465:9;:25::i;:::-;11438:52;;11529:15;11509:16;:35;;11501:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11622:60;11631:5;11638:7;11666:15;11647:16;:34;11622:8;:60::i;:::-;11713:4;11706:11;;;;11289:436;;;;:::o;8336:193::-;8415:4;8432:13;8448:12;:10;:12::i;:::-;8432:28;;8471;8481:5;8488:2;8492:6;8471:9;:28::i;:::-;8517:4;8510:11;;;8336:193;;;;:::o;8592:151::-;8681:7;8708:11;:18;8720:5;8708:18;;;;;;;;;;;;;;;:27;8727:7;8708:27;;;;;;;;;;;;;;;;8701:34;;8592:151;;;;:::o;720:98::-;773:7;800:10;793:17;;720:98;:::o;14914:380::-;15067:1;15050:19;;:5;:19;;;;15042:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15148:1;15129:21;;:7;:21;;;;15121:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15232:6;15202:11;:18;15214:5;15202:18;;;;;;;;;;;;;;;:27;15221:7;15202:27;;;;;;;;;;;;;;;:36;;;;15270:7;15254:32;;15263:5;15254:32;;;15279:6;15254:32;;;;;;:::i;:::-;;;;;;;;14914:380;;;:::o;15585:453::-;15720:24;15747:25;15757:5;15764:7;15747:9;:25::i;:::-;15720:52;;15807:17;15787:16;:37;15783:248;;15869:6;15849:16;:26;;15841:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15953:51;15962:5;15969:7;15997:6;15978:16;:25;15953:8;:51::i;:::-;15783:248;15585:453;;;;:::o;12195:671::-;12342:1;12326:18;;:4;:18;;;;12318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12419:1;12405:16;;:2;:16;;;;12397:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12474:38;12495:4;12501:2;12505:6;12474:20;:38::i;:::-;12525:19;12547:9;:15;12557:4;12547:15;;;;;;;;;;;;;;;;12525:37;;12596:6;12581:11;:21;;12573:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12713:6;12699:11;:20;12681:9;:15;12691:4;12681:15;;;;;;;;;;;;;;;:38;;;;12758:6;12741:9;:13;12751:2;12741:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12797:2;12782:26;;12791:4;12782:26;;;12801:6;12782:26;;;;;;:::i;:::-;;;;;;;;12821:37;12841:4;12847:2;12851:6;12821:19;:37::i;:::-;12195:671;;;;:::o;13885:591::-;13988:1;13969:21;;:7;:21;;;;13961:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14041:49;14062:7;14079:1;14083:6;14041:20;:49::i;:::-;14103:22;14128:9;:18;14138:7;14128:18;;;;;;;;;;;;;;;;14103:43;;14183:6;14165:14;:24;;14157:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14302:6;14285:14;:23;14264:9;:18;14274:7;14264:18;;;;;;;;;;;;;;;:44;;;;14346:6;14330:12;;:22;;;;;;;:::i;:::-;;;;;;;;14396:1;14370:37;;14379:7;14370:37;;;14400:6;14370:37;;;;;;:::i;:::-;;;;;;;;14420:48;14440:7;14457:1;14461:6;14420:19;:48::i;:::-;13885:591;;;:::o;16638:125::-;;;;:::o;17367:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;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::-;633:6;641;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::-;1055:6;1063;1071;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::-;1604:6;1612;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::-;2008:6;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:109::-;2298:21;2313:5;2298:21;:::i;:::-;2293:3;2286:34;2276:50;;:::o;2332:364::-;2420:3;2448:39;2481:5;2448:39;:::i;:::-;2503:71;2567:6;2562:3;2503:71;:::i;:::-;2496:78;;2583:52;2628:6;2623:3;2616:4;2609:5;2605:16;2583:52;:::i;:::-;2660:29;2682:6;2660:29;:::i;:::-;2655:3;2651:39;2644:46;;2424:272;;;;;:::o;2702:366::-;2844:3;2865:67;2929:2;2924:3;2865:67;:::i;:::-;2858:74;;2941:93;3030:3;2941:93;:::i;:::-;3059:2;3054:3;3050:12;3043:19;;2848:220;;;:::o;3074:366::-;3216:3;3237:67;3301:2;3296:3;3237:67;:::i;:::-;3230:74;;3313:93;3402:3;3313:93;:::i;:::-;3431:2;3426:3;3422:12;3415:19;;3220:220;;;:::o;3446:366::-;3588:3;3609:67;3673:2;3668:3;3609:67;:::i;:::-;3602:74;;3685:93;3774:3;3685:93;:::i;:::-;3803:2;3798:3;3794:12;3787:19;;3592:220;;;:::o;3818:366::-;3960:3;3981:67;4045:2;4040:3;3981:67;:::i;:::-;3974:74;;4057:93;4146:3;4057:93;:::i;:::-;4175:2;4170:3;4166:12;4159:19;;3964:220;;;:::o;4190:366::-;4332:3;4353:67;4417:2;4412:3;4353:67;:::i;:::-;4346:74;;4429:93;4518:3;4429:93;:::i;:::-;4547:2;4542:3;4538:12;4531:19;;4336:220;;;:::o;4562:366::-;4704:3;4725:67;4789:2;4784:3;4725:67;:::i;:::-;4718:74;;4801:93;4890:3;4801:93;:::i;:::-;4919:2;4914:3;4910:12;4903:19;;4708:220;;;:::o;4934:366::-;5076:3;5097:67;5161:2;5156:3;5097:67;:::i;:::-;5090:74;;5173:93;5262:3;5173:93;:::i;:::-;5291:2;5286:3;5282:12;5275:19;;5080:220;;;:::o;5306:366::-;5448:3;5469:67;5533:2;5528:3;5469:67;:::i;:::-;5462:74;;5545:93;5634:3;5545:93;:::i;:::-;5663:2;5658:3;5654:12;5647:19;;5452:220;;;:::o;5678:366::-;5820:3;5841:67;5905:2;5900:3;5841:67;:::i;:::-;5834:74;;5917:93;6006:3;5917:93;:::i;:::-;6035:2;6030:3;6026:12;6019:19;;5824:220;;;:::o;6050:118::-;6137:24;6155:5;6137:24;:::i;:::-;6132:3;6125:37;6115:53;;:::o;6174:112::-;6257:22;6273:5;6257:22;:::i;:::-;6252:3;6245:35;6235:51;;:::o;6292:210::-;6379:4;6417:2;6406:9;6402:18;6394:26;;6430:65;6492:1;6481:9;6477:17;6468:6;6430:65;:::i;:::-;6384:118;;;;:::o;6508:313::-;6621:4;6659:2;6648:9;6644:18;6636:26;;6708:9;6702:4;6698:20;6694:1;6683:9;6679:17;6672:47;6736:78;6809:4;6800:6;6736:78;:::i;:::-;6728:86;;6626:195;;;;:::o;6827:419::-;6993:4;7031:2;7020:9;7016:18;7008:26;;7080:9;7074:4;7070:20;7066:1;7055:9;7051:17;7044:47;7108:131;7234:4;7108:131;:::i;:::-;7100:139;;6998:248;;;:::o;7252:419::-;7418:4;7456:2;7445:9;7441:18;7433:26;;7505:9;7499:4;7495:20;7491:1;7480:9;7476:17;7469:47;7533:131;7659:4;7533:131;:::i;:::-;7525:139;;7423:248;;;:::o;7677:419::-;7843:4;7881:2;7870:9;7866:18;7858:26;;7930:9;7924:4;7920:20;7916:1;7905:9;7901:17;7894:47;7958:131;8084:4;7958:131;:::i;:::-;7950:139;;7848:248;;;:::o;8102:419::-;8268:4;8306:2;8295:9;8291:18;8283:26;;8355:9;8349:4;8345:20;8341:1;8330:9;8326:17;8319:47;8383:131;8509:4;8383:131;:::i;:::-;8375:139;;8273:248;;;:::o;8527:419::-;8693:4;8731:2;8720:9;8716:18;8708:26;;8780:9;8774:4;8770:20;8766:1;8755:9;8751:17;8744:47;8808:131;8934:4;8808:131;:::i;:::-;8800:139;;8698:248;;;:::o;8952:419::-;9118:4;9156:2;9145:9;9141:18;9133:26;;9205:9;9199:4;9195:20;9191:1;9180:9;9176:17;9169:47;9233:131;9359:4;9233:131;:::i;:::-;9225:139;;9123:248;;;:::o;9377:419::-;9543:4;9581:2;9570:9;9566:18;9558:26;;9630:9;9624:4;9620:20;9616:1;9605:9;9601:17;9594:47;9658:131;9784:4;9658:131;:::i;:::-;9650:139;;9548:248;;;:::o;9802:419::-;9968:4;10006:2;9995:9;9991:18;9983:26;;10055:9;10049:4;10045:20;10041:1;10030:9;10026:17;10019:47;10083:131;10209:4;10083:131;:::i;:::-;10075:139;;9973:248;;;:::o;10227:419::-;10393:4;10431:2;10420:9;10416:18;10408:26;;10480:9;10474:4;10470:20;10466:1;10455:9;10451:17;10444:47;10508:131;10634:4;10508:131;:::i;:::-;10500:139;;10398:248;;;:::o;10652:222::-;10745:4;10783:2;10772:9;10768:18;10760:26;;10796:71;10864:1;10853:9;10849:17;10840:6;10796:71;:::i;:::-;10750:124;;;;:::o;10880:214::-;10969:4;11007:2;10996:9;10992:18;10984:26;;11020:67;11084:1;11073:9;11069:17;11060:6;11020:67;:::i;:::-;10974:120;;;;:::o;11100:99::-;11152:6;11186:5;11180:12;11170:22;;11159:40;;;:::o;11205:169::-;11289:11;11323:6;11318:3;11311:19;11363:4;11358:3;11354:14;11339:29;;11301:73;;;;:::o;11380:305::-;11420:3;11439:20;11457:1;11439:20;:::i;:::-;11434:25;;11473:20;11491:1;11473:20;:::i;:::-;11468:25;;11627:1;11559:66;11555:74;11552:1;11549:81;11546:2;;;11633:18;;:::i;:::-;11546:2;11677:1;11674;11670:9;11663:16;;11424:261;;;;:::o;11691:191::-;11731:4;11751:20;11769:1;11751:20;:::i;:::-;11746:25;;11785:20;11803:1;11785:20;:::i;:::-;11780:25;;11824:1;11821;11818:8;11815:2;;;11829:18;;:::i;:::-;11815:2;11874:1;11871;11867:9;11859:17;;11736:146;;;;:::o;11888:96::-;11925:7;11954:24;11972:5;11954:24;:::i;:::-;11943:35;;11933:51;;;:::o;11990:90::-;12024:7;12067:5;12060:13;12053:21;12042:32;;12032:48;;;:::o;12086:126::-;12123:7;12163:42;12156:5;12152:54;12141:65;;12131:81;;;:::o;12218:77::-;12255:7;12284:5;12273:16;;12263:32;;;:::o;12301:86::-;12336:7;12376:4;12369:5;12365:16;12354:27;;12344:43;;;:::o;12393:307::-;12461:1;12471:113;12485:6;12482:1;12479:13;12471:113;;;12570:1;12565:3;12561:11;12555:18;12551:1;12546:3;12542:11;12535:39;12507:2;12504:1;12500:10;12495:15;;12471:113;;;12602:6;12599:1;12596:13;12593:2;;;12682:1;12673:6;12668:3;12664:16;12657:27;12593:2;12442:258;;;;:::o;12706:320::-;12750:6;12787:1;12781:4;12777:12;12767:22;;12834:1;12828:4;12824:12;12855:18;12845:2;;12911:4;12903:6;12899:17;12889:27;;12845:2;12973;12965:6;12962:14;12942:18;12939:38;12936:2;;;12992:18;;:::i;:::-;12936:2;12757:269;;;;:::o;13032:180::-;13080:77;13077:1;13070:88;13177:4;13174:1;13167:15;13201:4;13198:1;13191:15;13218:180;13266:77;13263:1;13256:88;13363:4;13360:1;13353:15;13387:4;13384:1;13377:15;13404:102;13445:6;13496:2;13492:7;13487:2;13480:5;13476:14;13472:28;13462:38;;13452:54;;;:::o;13512:222::-;13652:34;13648:1;13640:6;13636:14;13629:58;13721:5;13716:2;13708:6;13704:15;13697:30;13618:116;:::o;13740:221::-;13880:34;13876:1;13868:6;13864:14;13857:58;13949:4;13944:2;13936:6;13932:15;13925:29;13846:115;:::o;13967:221::-;14107:34;14103:1;14095:6;14091:14;14084:58;14176:4;14171:2;14163:6;14159:15;14152:29;14073:115;:::o;14194:179::-;14334:31;14330:1;14322:6;14318:14;14311:55;14300:73;:::o;14379:225::-;14519:34;14515:1;14507:6;14503:14;14496:58;14588:8;14583:2;14575:6;14571:15;14564:33;14485:119;:::o;14610:220::-;14750:34;14746:1;14738:6;14734:14;14727:58;14819:3;14814:2;14806:6;14802:15;14795:28;14716:114;:::o;14836:224::-;14976:34;14972:1;14964:6;14960:14;14953:58;15045:7;15040:2;15032:6;15028:15;15021:32;14942:118;:::o;15066:223::-;15206:34;15202:1;15194:6;15190:14;15183:58;15275:6;15270:2;15262:6;15258:15;15251:31;15172:117;:::o;15295:224::-;15435:34;15431:1;15423:6;15419:14;15412:58;15504:7;15499:2;15491:6;15487:15;15480:32;15401:118;:::o;15525:122::-;15598:24;15616:5;15598:24;:::i;:::-;15591:5;15588:35;15578:2;;15637:1;15634;15627:12;15578:2;15568:79;:::o;15653:122::-;15726:24;15744:5;15726:24;:::i;:::-;15719:5;15716:35;15706:2;;15765:1;15762;15755:12;15706:2;15696:79;:::o

Swarm Source

ipfs://033f08edda6d569a40aef20e57055677088c44e678e2413db9f69cd826021cc5
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.