ETH Price: $3,332.74 (-1.18%)

Token

Criptozo (CRIP)
 

Overview

Max Total Supply

299,992,938.3020792 CRIP

Holders

159

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
CoinTool: MultiSender
Balance
14.985 CRIP

Value
$0.00
0xcec8f07014d889442d7cf3b477b8f72f8179ea09
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:
Criptozo

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

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

/*
 * @author CRIPTOZO
 * https://www.criptozo.com
 */

// SPDX-License-Identifier: MIT
pragma solidity 0.8.16;

/**
 * @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 owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() 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);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

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

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

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

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

    uint256 public burnFee; // 0.1% burn fee

    /**
     * @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() {
        _name = "Criptozo";
        _symbol = "CRIP";
        burnFee = 1;
        _mint(msg.sender, 300000000 * 10**decimals());
    }

    /**
     * @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 See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @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-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-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-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

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

        uint256 burnAmount = (amount * burnFee) / 1000;
        uint256 transferAmount = amount - burnAmount;
        _burn(from, burnAmount);

        unchecked {
            _balances[from] = fromBalance - transferAmount;
        }
        _balances[to] += transferAmount;

        emit Transfer(from, to, transferAmount);

        _afterTokenTransfer(from, to, transferAmount);
    }

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

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

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":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f43726970746f7a6f00000000000000000000000000000000000000000000000081525060039081620000589190620004f3565b506040518060400160405280600481526020017f4352495000000000000000000000000000000000000000000000000000000000815250600490816200009f9190620004f3565b506001600581905550620000e833620000bd620000ee60201b60201c565b600a620000cb91906200076a565b6311e1a300620000dc9190620007bb565b620000f760201b60201c565b62000908565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000160906200087d565b60405180910390fd5b6200017d600083836200026f60201b60201c565b80600260008282546200019191906200089f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001e891906200089f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200024f9190620008eb565b60405180910390a36200026b600083836200027460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002fb57607f821691505b602082108103620003115762000310620002b3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200037b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200033c565b6200038786836200033c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003d4620003ce620003c8846200039f565b620003a9565b6200039f565b9050919050565b6000819050919050565b620003f083620003b3565b62000408620003ff82620003db565b84845462000349565b825550505050565b600090565b6200041f62000410565b6200042c818484620003e5565b505050565b5b8181101562000454576200044860008262000415565b60018101905062000432565b5050565b601f821115620004a3576200046d8162000317565b62000478846200032c565b8101602085101562000488578190505b620004a062000497856200032c565b83018262000431565b50505b505050565b600082821c905092915050565b6000620004c860001984600802620004a8565b1980831691505092915050565b6000620004e38383620004b5565b9150826002028217905092915050565b620004fe8262000279565b67ffffffffffffffff8111156200051a576200051962000284565b5b620005268254620002e2565b6200053382828562000458565b600060209050601f8311600181146200056b576000841562000556578287015190505b620005628582620004d5565b865550620005d2565b601f1984166200057b8662000317565b60005b82811015620005a5578489015182556001820191506020850194506020810190506200057e565b86831015620005c55784890151620005c1601f891682620004b5565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006685780860481111562000640576200063f620005da565b5b6001851615620006505780820291505b8081029050620006608562000609565b945062000620565b94509492505050565b60008262000683576001905062000756565b8162000693576000905062000756565b8160018114620006ac5760028114620006b757620006ed565b600191505062000756565b60ff841115620006cc57620006cb620005da565b5b8360020a915084821115620006e657620006e5620005da565b5b5062000756565b5060208310610133831016604e8410600b8410161715620007275782820a905083811115620007215762000720620005da565b5b62000756565b62000736848484600162000616565b9250905081840481111562000750576200074f620005da565b5b81810290505b9392505050565b600060ff82169050919050565b600062000777826200039f565b915062000784836200075d565b9250620007b37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000671565b905092915050565b6000620007c8826200039f565b9150620007d5836200039f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620008115762000810620005da565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000865601f836200081c565b915062000872826200082d565b602082019050919050565b60006020820190508181036000830152620008988162000856565b9050919050565b6000620008ac826200039f565b9150620008b9836200039f565b9250828201905080821115620008d457620008d3620005da565b5b92915050565b620008e5816200039f565b82525050565b6000602082019050620009026000830184620008da565b92915050565b61175980620009186000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d71461025f578063a9059cbb1461028f578063dd62ed3e146102bf578063fce589d8146102ef576100ea565b806370a08231146101f557806379cc67901461022557806395d89b4114610241576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342966c68146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b6040516101049190610df7565b60405180910390f35b61012760048036038101906101229190610eb2565b61039f565b6040516101349190610f0d565b60405180910390f35b6101456103c2565b6040516101529190610f37565b60405180910390f35b61017560048036038101906101709190610f52565b6103cc565b6040516101829190610f0d565b60405180910390f35b6101936103fb565b6040516101a09190610fc1565b60405180910390f35b6101c360048036038101906101be9190610eb2565b610404565b6040516101d09190610f0d565b60405180910390f35b6101f360048036038101906101ee9190610fdc565b61043b565b005b61020f600480360381019061020a9190611009565b61044f565b60405161021c9190610f37565b60405180910390f35b61023f600480360381019061023a9190610eb2565b610497565b005b6102496104b7565b6040516102569190610df7565b60405180910390f35b61027960048036038101906102749190610eb2565b610549565b6040516102869190610f0d565b60405180910390f35b6102a960048036038101906102a49190610eb2565b6105c0565b6040516102b69190610f0d565b60405180910390f35b6102d960048036038101906102d49190611036565b6105e3565b6040516102e69190610f37565b60405180910390f35b6102f761066a565b6040516103049190610f37565b60405180910390f35b60606003805461031c906110a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610348906110a5565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b6000806103aa610670565b90506103b7818585610678565b600191505092915050565b6000600254905090565b6000806103d7610670565b90506103e4858285610841565b6103ef8585856108cd565b60019150509392505050565b60006012905090565b60008061040f610670565b905061043081858561042185896105e3565b61042b9190611105565b610678565b600191505092915050565b61044c610446610670565b82610b87565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a9826104a3610670565b83610841565b6104b38282610b87565b5050565b6060600480546104c6906110a5565b80601f01602080910402602001604051908101604052809291908181526020018280546104f2906110a5565b801561053f5780601f106105145761010080835404028352916020019161053f565b820191906000526020600020905b81548152906001019060200180831161052257829003601f168201915b5050505050905090565b600080610554610670565b9050600061056282866105e3565b9050838110156105a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059e906111ab565b60405180910390fd5b6105b48286868403610678565b60019250505092915050565b6000806105cb610670565b90506105d88185856108cd565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60055481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106de9061123d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074d906112cf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108349190610f37565b60405180910390a3505050565b600061084d84846105e3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108c757818110156108b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b09061133b565b60405180910390fd5b6108c68484848403610678565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361093c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610933906113cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a29061145f565b60405180910390fd5b6109b6838383610d5d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a33906114f1565b60405180910390fd5b60006103e860055484610a4f9190611511565b610a59919061159a565b905060008184610a6991906115cb565b9050610a758683610b87565b8083036000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b089190611105565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b6c9190610f37565b60405180910390a3610b7f868683610d62565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90611671565b60405180910390fd5b610c0282600083610d5d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f90611703565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610cdf91906115cb565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d449190610f37565b60405180910390a3610d5883600084610d62565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610da1578082015181840152602081019050610d86565b60008484015250505050565b6000601f19601f8301169050919050565b6000610dc982610d67565b610dd38185610d72565b9350610de3818560208601610d83565b610dec81610dad565b840191505092915050565b60006020820190508181036000830152610e118184610dbe565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e4982610e1e565b9050919050565b610e5981610e3e565b8114610e6457600080fd5b50565b600081359050610e7681610e50565b92915050565b6000819050919050565b610e8f81610e7c565b8114610e9a57600080fd5b50565b600081359050610eac81610e86565b92915050565b60008060408385031215610ec957610ec8610e19565b5b6000610ed785828601610e67565b9250506020610ee885828601610e9d565b9150509250929050565b60008115159050919050565b610f0781610ef2565b82525050565b6000602082019050610f226000830184610efe565b92915050565b610f3181610e7c565b82525050565b6000602082019050610f4c6000830184610f28565b92915050565b600080600060608486031215610f6b57610f6a610e19565b5b6000610f7986828701610e67565b9350506020610f8a86828701610e67565b9250506040610f9b86828701610e9d565b9150509250925092565b600060ff82169050919050565b610fbb81610fa5565b82525050565b6000602082019050610fd66000830184610fb2565b92915050565b600060208284031215610ff257610ff1610e19565b5b600061100084828501610e9d565b91505092915050565b60006020828403121561101f5761101e610e19565b5b600061102d84828501610e67565b91505092915050565b6000806040838503121561104d5761104c610e19565b5b600061105b85828601610e67565b925050602061106c85828601610e67565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806110bd57607f821691505b6020821081036110d0576110cf611076565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061111082610e7c565b915061111b83610e7c565b9250828201905080821115611133576111326110d6565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611195602583610d72565b91506111a082611139565b604082019050919050565b600060208201905081810360008301526111c481611188565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611227602483610d72565b9150611232826111cb565b604082019050919050565b600060208201905081810360008301526112568161121a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006112b9602283610d72565b91506112c48261125d565b604082019050919050565b600060208201905081810360008301526112e8816112ac565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611325601d83610d72565b9150611330826112ef565b602082019050919050565b6000602082019050818103600083015261135481611318565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006113b7602583610d72565b91506113c28261135b565b604082019050919050565b600060208201905081810360008301526113e6816113aa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611449602383610d72565b9150611454826113ed565b604082019050919050565b600060208201905081810360008301526114788161143c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006114db602683610d72565b91506114e68261147f565b604082019050919050565b6000602082019050818103600083015261150a816114ce565b9050919050565b600061151c82610e7c565b915061152783610e7c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156115605761155f6110d6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006115a582610e7c565b91506115b083610e7c565b9250826115c0576115bf61156b565b5b828204905092915050565b60006115d682610e7c565b91506115e183610e7c565b92508282039050818111156115f9576115f86110d6565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061165b602183610d72565b9150611666826115ff565b604082019050919050565b6000602082019050818103600083015261168a8161164e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006116ed602283610d72565b91506116f882611691565b604082019050919050565b6000602082019050818103600083015261171c816116e0565b905091905056fea2646970667358221220f1cb2a1df4172cd6474b3030a98294b93bea1a3b8a017e2297d40e2e0547840c64736f6c63430008100033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d71461025f578063a9059cbb1461028f578063dd62ed3e146102bf578063fce589d8146102ef576100ea565b806370a08231146101f557806379cc67901461022557806395d89b4114610241576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342966c68146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b6040516101049190610df7565b60405180910390f35b61012760048036038101906101229190610eb2565b61039f565b6040516101349190610f0d565b60405180910390f35b6101456103c2565b6040516101529190610f37565b60405180910390f35b61017560048036038101906101709190610f52565b6103cc565b6040516101829190610f0d565b60405180910390f35b6101936103fb565b6040516101a09190610fc1565b60405180910390f35b6101c360048036038101906101be9190610eb2565b610404565b6040516101d09190610f0d565b60405180910390f35b6101f360048036038101906101ee9190610fdc565b61043b565b005b61020f600480360381019061020a9190611009565b61044f565b60405161021c9190610f37565b60405180910390f35b61023f600480360381019061023a9190610eb2565b610497565b005b6102496104b7565b6040516102569190610df7565b60405180910390f35b61027960048036038101906102749190610eb2565b610549565b6040516102869190610f0d565b60405180910390f35b6102a960048036038101906102a49190610eb2565b6105c0565b6040516102b69190610f0d565b60405180910390f35b6102d960048036038101906102d49190611036565b6105e3565b6040516102e69190610f37565b60405180910390f35b6102f761066a565b6040516103049190610f37565b60405180910390f35b60606003805461031c906110a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610348906110a5565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b6000806103aa610670565b90506103b7818585610678565b600191505092915050565b6000600254905090565b6000806103d7610670565b90506103e4858285610841565b6103ef8585856108cd565b60019150509392505050565b60006012905090565b60008061040f610670565b905061043081858561042185896105e3565b61042b9190611105565b610678565b600191505092915050565b61044c610446610670565b82610b87565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a9826104a3610670565b83610841565b6104b38282610b87565b5050565b6060600480546104c6906110a5565b80601f01602080910402602001604051908101604052809291908181526020018280546104f2906110a5565b801561053f5780601f106105145761010080835404028352916020019161053f565b820191906000526020600020905b81548152906001019060200180831161052257829003601f168201915b5050505050905090565b600080610554610670565b9050600061056282866105e3565b9050838110156105a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059e906111ab565b60405180910390fd5b6105b48286868403610678565b60019250505092915050565b6000806105cb610670565b90506105d88185856108cd565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60055481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106de9061123d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074d906112cf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108349190610f37565b60405180910390a3505050565b600061084d84846105e3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108c757818110156108b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b09061133b565b60405180910390fd5b6108c68484848403610678565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361093c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610933906113cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a29061145f565b60405180910390fd5b6109b6838383610d5d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a33906114f1565b60405180910390fd5b60006103e860055484610a4f9190611511565b610a59919061159a565b905060008184610a6991906115cb565b9050610a758683610b87565b8083036000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b089190611105565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b6c9190610f37565b60405180910390a3610b7f868683610d62565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90611671565b60405180910390fd5b610c0282600083610d5d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f90611703565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610cdf91906115cb565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d449190610f37565b60405180910390a3610d5883600084610d62565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610da1578082015181840152602081019050610d86565b60008484015250505050565b6000601f19601f8301169050919050565b6000610dc982610d67565b610dd38185610d72565b9350610de3818560208601610d83565b610dec81610dad565b840191505092915050565b60006020820190508181036000830152610e118184610dbe565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e4982610e1e565b9050919050565b610e5981610e3e565b8114610e6457600080fd5b50565b600081359050610e7681610e50565b92915050565b6000819050919050565b610e8f81610e7c565b8114610e9a57600080fd5b50565b600081359050610eac81610e86565b92915050565b60008060408385031215610ec957610ec8610e19565b5b6000610ed785828601610e67565b9250506020610ee885828601610e9d565b9150509250929050565b60008115159050919050565b610f0781610ef2565b82525050565b6000602082019050610f226000830184610efe565b92915050565b610f3181610e7c565b82525050565b6000602082019050610f4c6000830184610f28565b92915050565b600080600060608486031215610f6b57610f6a610e19565b5b6000610f7986828701610e67565b9350506020610f8a86828701610e67565b9250506040610f9b86828701610e9d565b9150509250925092565b600060ff82169050919050565b610fbb81610fa5565b82525050565b6000602082019050610fd66000830184610fb2565b92915050565b600060208284031215610ff257610ff1610e19565b5b600061100084828501610e9d565b91505092915050565b60006020828403121561101f5761101e610e19565b5b600061102d84828501610e67565b91505092915050565b6000806040838503121561104d5761104c610e19565b5b600061105b85828601610e67565b925050602061106c85828601610e67565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806110bd57607f821691505b6020821081036110d0576110cf611076565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061111082610e7c565b915061111b83610e7c565b9250828201905080821115611133576111326110d6565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611195602583610d72565b91506111a082611139565b604082019050919050565b600060208201905081810360008301526111c481611188565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611227602483610d72565b9150611232826111cb565b604082019050919050565b600060208201905081810360008301526112568161121a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006112b9602283610d72565b91506112c48261125d565b604082019050919050565b600060208201905081810360008301526112e8816112ac565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611325601d83610d72565b9150611330826112ef565b602082019050919050565b6000602082019050818103600083015261135481611318565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006113b7602583610d72565b91506113c28261135b565b604082019050919050565b600060208201905081810360008301526113e6816113aa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611449602383610d72565b9150611454826113ed565b604082019050919050565b600060208201905081810360008301526114788161143c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006114db602683610d72565b91506114e68261147f565b604082019050919050565b6000602082019050818103600083015261150a816114ce565b9050919050565b600061151c82610e7c565b915061152783610e7c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156115605761155f6110d6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006115a582610e7c565b91506115b083610e7c565b9250826115c0576115bf61156b565b5b828204905092915050565b60006115d682610e7c565b91506115e183610e7c565b92508282039050818111156115f9576115f86110d6565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061165b602183610d72565b9150611666826115ff565b604082019050919050565b6000602082019050818103600083015261168a8161164e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006116ed602283610d72565b91506116f882611691565b604082019050919050565b6000602082019050818103600083015261171c816116e0565b905091905056fea2646970667358221220f1cb2a1df4172cd6474b3030a98294b93bea1a3b8a017e2297d40e2e0547840c64736f6c63430008100033

Deployed Bytecode Sourcemap

5284:12894:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6155:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8383:242;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6543:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9469:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7290:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11533:270;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16148:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7446:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16558:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6374:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12306:505;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7829:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8688:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5569:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6155:100;6209:13;6242:5;6235:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6155:100;:::o;8383:242::-;8502:4;8524:13;8540:12;:10;:12::i;:::-;8524:28;;8563:32;8572:5;8579:7;8588:6;8563:8;:32::i;:::-;8613:4;8606:11;;;8383:242;;;;:::o;6543:108::-;6604:7;6631:12;;6624:19;;6543:108;:::o;9469:295::-;9600:4;9617:15;9635:12;:10;:12::i;:::-;9617:30;;9658:38;9674:4;9680:7;9689:6;9658:15;:38::i;:::-;9707:27;9717:4;9723:2;9727:6;9707:9;:27::i;:::-;9752:4;9745:11;;;9469:295;;;;;:::o;7290:93::-;7348:5;7373:2;7366:9;;7290:93;:::o;11533:270::-;11648:4;11670:13;11686:12;:10;:12::i;:::-;11670:28;;11709:64;11718:5;11725:7;11762:10;11734:25;11744:5;11751:7;11734:9;:25::i;:::-;:38;;;;:::i;:::-;11709:8;:64::i;:::-;11791:4;11784:11;;;11533:270;;;;:::o;16148:91::-;16204:27;16210:12;:10;:12::i;:::-;16224:6;16204:5;:27::i;:::-;16148:91;:::o;7446:177::-;7565:7;7597:9;:18;7607:7;7597:18;;;;;;;;;;;;;;;;7590:25;;7446:177;;;:::o;16558:164::-;16635:46;16651:7;16660:12;:10;:12::i;:::-;16674:6;16635:15;:46::i;:::-;16692:22;16698:7;16707:6;16692:5;:22::i;:::-;16558:164;;:::o;6374:104::-;6430:13;6463:7;6456:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6374:104;:::o;12306:505::-;12426:4;12448:13;12464:12;:10;:12::i;:::-;12448:28;;12487:24;12514:25;12524:5;12531:7;12514:9;:25::i;:::-;12487:52;;12592:15;12572:16;:35;;12550:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;12708:60;12717:5;12724:7;12752:15;12733:16;:34;12708:8;:60::i;:::-;12799:4;12792:11;;;;12306:505;;;;:::o;7829:234::-;7944:4;7966:13;7982:12;:10;:12::i;:::-;7966:28;;8005;8015:5;8022:2;8026:6;8005:9;:28::i;:::-;8051:4;8044:11;;;7829:234;;;;:::o;8688:201::-;8822:7;8854:11;:18;8866:5;8854:18;;;;;;;;;;;;;;;:27;8873:7;8854:27;;;;;;;;;;;;;;;;8847:34;;8688:201;;;;:::o;5569:22::-;;;;:::o;3981:98::-;4034:7;4061:10;4054:17;;3981:98;:::o;14859:380::-;15012:1;14995:19;;:5;:19;;;14987:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15093:1;15074:21;;:7;:21;;;15066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15177:6;15147:11;:18;15159:5;15147:18;;;;;;;;;;;;;;;:27;15166:7;15147:27;;;;;;;;;;;;;;;:36;;;;15215:7;15199:32;;15208:5;15199:32;;;15224:6;15199:32;;;;;;:::i;:::-;;;;;;;;14859:380;;;:::o;15530:502::-;15665:24;15692:25;15702:5;15709:7;15692:9;:25::i;:::-;15665:52;;15752:17;15732:16;:37;15728:297;;15832:6;15812:16;:26;;15786:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;15947:51;15956:5;15963:7;15991:6;15972:16;:25;15947:8;:51::i;:::-;15728:297;15654:378;15530:502;;;:::o;10234:890::-;10381:1;10365:18;;:4;:18;;;10357:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10458:1;10444:16;;:2;:16;;;10436:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10513:38;10534:4;10540:2;10544:6;10513:20;:38::i;:::-;10564:19;10586:9;:15;10596:4;10586:15;;;;;;;;;;;;;;;;10564:37;;10649:6;10634:11;:21;;10612:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;10734:18;10776:4;10765:7;;10756:6;:16;;;;:::i;:::-;10755:25;;;;:::i;:::-;10734:46;;10791:22;10825:10;10816:6;:19;;;;:::i;:::-;10791:44;;10846:23;10852:4;10858:10;10846:5;:23::i;:::-;10939:14;10925:11;:28;10907:9;:15;10917:4;10907:15;;;;;;;;;;;;;;;:46;;;;10992:14;10975:9;:13;10985:2;10975:13;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;11039:2;11024:34;;11033:4;11024:34;;;11043:14;11024:34;;;;;;:::i;:::-;;;;;;;;11071:45;11091:4;11097:2;11101:14;11071:19;:45::i;:::-;10346:778;;;10234:890;;;:::o;13830:591::-;13933:1;13914:21;;:7;:21;;;13906:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13986:49;14007:7;14024:1;14028:6;13986:20;:49::i;:::-;14048:22;14073:9;:18;14083:7;14073:18;;;;;;;;;;;;;;;;14048:43;;14128:6;14110:14;:24;;14102:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14247:6;14230:14;:23;14209:9;:18;14219:7;14209:18;;;;;;;;;;;;;;;:44;;;;14291:6;14275:12;;:22;;;;;;;:::i;:::-;;;;;;;;14341:1;14315:37;;14324:7;14315:37;;;14345:6;14315:37;;;;;;:::i;:::-;;;;;;;;14365:48;14385:7;14402:1;14406:6;14365:19;:48::i;:::-;13895:526;13830:591;;:::o;17322:125::-;;;;:::o;18051:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:474::-;5591:6;5599;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5901:2;5927:53;5972:7;5963:6;5952:9;5948:22;5927:53;:::i;:::-;5917:63;;5872:118;5523:474;;;;;:::o;6003:180::-;6051:77;6048:1;6041:88;6148:4;6145:1;6138:15;6172:4;6169:1;6162:15;6189:320;6233:6;6270:1;6264:4;6260:12;6250:22;;6317:1;6311:4;6307:12;6338:18;6328:81;;6394:4;6386:6;6382:17;6372:27;;6328:81;6456:2;6448:6;6445:14;6425:18;6422:38;6419:84;;6475:18;;:::i;:::-;6419:84;6240:269;6189:320;;;:::o;6515:180::-;6563:77;6560:1;6553:88;6660:4;6657:1;6650:15;6684:4;6681:1;6674:15;6701:191;6741:3;6760:20;6778:1;6760:20;:::i;:::-;6755:25;;6794:20;6812:1;6794:20;:::i;:::-;6789:25;;6837:1;6834;6830:9;6823:16;;6858:3;6855:1;6852:10;6849:36;;;6865:18;;:::i;:::-;6849:36;6701:191;;;;:::o;6898:224::-;7038:34;7034:1;7026:6;7022:14;7015:58;7107:7;7102:2;7094:6;7090:15;7083:32;6898:224;:::o;7128:366::-;7270:3;7291:67;7355:2;7350:3;7291:67;:::i;:::-;7284:74;;7367:93;7456:3;7367:93;:::i;:::-;7485:2;7480:3;7476:12;7469:19;;7128:366;;;:::o;7500:419::-;7666:4;7704:2;7693:9;7689:18;7681:26;;7753:9;7747:4;7743:20;7739:1;7728:9;7724:17;7717:47;7781:131;7907:4;7781:131;:::i;:::-;7773:139;;7500:419;;;:::o;7925:223::-;8065:34;8061:1;8053:6;8049:14;8042:58;8134:6;8129:2;8121:6;8117:15;8110:31;7925:223;:::o;8154:366::-;8296:3;8317:67;8381:2;8376:3;8317:67;:::i;:::-;8310:74;;8393:93;8482:3;8393:93;:::i;:::-;8511:2;8506:3;8502:12;8495:19;;8154:366;;;:::o;8526:419::-;8692:4;8730:2;8719:9;8715:18;8707:26;;8779:9;8773:4;8769:20;8765:1;8754:9;8750:17;8743:47;8807:131;8933:4;8807:131;:::i;:::-;8799:139;;8526:419;;;:::o;8951:221::-;9091:34;9087:1;9079:6;9075:14;9068:58;9160:4;9155:2;9147:6;9143:15;9136:29;8951:221;:::o;9178:366::-;9320:3;9341:67;9405:2;9400:3;9341:67;:::i;:::-;9334:74;;9417:93;9506:3;9417:93;:::i;:::-;9535:2;9530:3;9526:12;9519:19;;9178:366;;;:::o;9550:419::-;9716:4;9754:2;9743:9;9739:18;9731:26;;9803:9;9797:4;9793:20;9789:1;9778:9;9774:17;9767:47;9831:131;9957:4;9831:131;:::i;:::-;9823:139;;9550:419;;;:::o;9975:179::-;10115:31;10111:1;10103:6;10099:14;10092:55;9975:179;:::o;10160:366::-;10302:3;10323:67;10387:2;10382:3;10323:67;:::i;:::-;10316:74;;10399:93;10488:3;10399:93;:::i;:::-;10517:2;10512:3;10508:12;10501:19;;10160:366;;;:::o;10532:419::-;10698:4;10736:2;10725:9;10721:18;10713:26;;10785:9;10779:4;10775:20;10771:1;10760:9;10756:17;10749:47;10813:131;10939:4;10813:131;:::i;:::-;10805:139;;10532:419;;;:::o;10957:224::-;11097:34;11093:1;11085:6;11081:14;11074:58;11166:7;11161:2;11153:6;11149:15;11142:32;10957:224;:::o;11187:366::-;11329:3;11350:67;11414:2;11409:3;11350:67;:::i;:::-;11343:74;;11426:93;11515:3;11426:93;:::i;:::-;11544:2;11539:3;11535:12;11528:19;;11187:366;;;:::o;11559:419::-;11725:4;11763:2;11752:9;11748:18;11740:26;;11812:9;11806:4;11802:20;11798:1;11787:9;11783:17;11776:47;11840:131;11966:4;11840:131;:::i;:::-;11832:139;;11559:419;;;:::o;11984:222::-;12124:34;12120:1;12112:6;12108:14;12101:58;12193:5;12188:2;12180:6;12176:15;12169:30;11984:222;:::o;12212:366::-;12354:3;12375:67;12439:2;12434:3;12375:67;:::i;:::-;12368:74;;12451:93;12540:3;12451:93;:::i;:::-;12569:2;12564:3;12560:12;12553:19;;12212:366;;;:::o;12584:419::-;12750:4;12788:2;12777:9;12773:18;12765:26;;12837:9;12831:4;12827:20;12823:1;12812:9;12808:17;12801:47;12865:131;12991:4;12865:131;:::i;:::-;12857:139;;12584:419;;;:::o;13009:225::-;13149:34;13145:1;13137:6;13133:14;13126:58;13218:8;13213:2;13205:6;13201:15;13194:33;13009:225;:::o;13240:366::-;13382:3;13403:67;13467:2;13462:3;13403:67;:::i;:::-;13396:74;;13479:93;13568:3;13479:93;:::i;:::-;13597:2;13592:3;13588:12;13581:19;;13240:366;;;:::o;13612:419::-;13778:4;13816:2;13805:9;13801:18;13793:26;;13865:9;13859:4;13855:20;13851:1;13840:9;13836:17;13829:47;13893:131;14019:4;13893:131;:::i;:::-;13885:139;;13612:419;;;:::o;14037:348::-;14077:7;14100:20;14118:1;14100:20;:::i;:::-;14095:25;;14134:20;14152:1;14134:20;:::i;:::-;14129:25;;14322:1;14254:66;14250:74;14247:1;14244:81;14239:1;14232:9;14225:17;14221:105;14218:131;;;14329:18;;:::i;:::-;14218:131;14377:1;14374;14370:9;14359:20;;14037:348;;;;:::o;14391:180::-;14439:77;14436:1;14429:88;14536:4;14533:1;14526:15;14560:4;14557:1;14550:15;14577:185;14617:1;14634:20;14652:1;14634:20;:::i;:::-;14629:25;;14668:20;14686:1;14668:20;:::i;:::-;14663:25;;14707:1;14697:35;;14712:18;;:::i;:::-;14697:35;14754:1;14751;14747:9;14742:14;;14577:185;;;;:::o;14768:194::-;14808:4;14828:20;14846:1;14828:20;:::i;:::-;14823:25;;14862:20;14880:1;14862:20;:::i;:::-;14857:25;;14906:1;14903;14899:9;14891:17;;14930:1;14924:4;14921:11;14918:37;;;14935:18;;:::i;:::-;14918:37;14768:194;;;;:::o;14968:220::-;15108:34;15104:1;15096:6;15092:14;15085:58;15177:3;15172:2;15164:6;15160:15;15153:28;14968:220;:::o;15194:366::-;15336:3;15357:67;15421:2;15416:3;15357:67;:::i;:::-;15350:74;;15433:93;15522:3;15433:93;:::i;:::-;15551:2;15546:3;15542:12;15535:19;;15194:366;;;:::o;15566:419::-;15732:4;15770:2;15759:9;15755:18;15747:26;;15819:9;15813:4;15809:20;15805:1;15794:9;15790:17;15783:47;15847:131;15973:4;15847:131;:::i;:::-;15839:139;;15566:419;;;:::o;15991:221::-;16131:34;16127:1;16119:6;16115:14;16108:58;16200:4;16195:2;16187:6;16183:15;16176:29;15991:221;:::o;16218:366::-;16360:3;16381:67;16445:2;16440:3;16381:67;:::i;:::-;16374:74;;16457:93;16546:3;16457:93;:::i;:::-;16575:2;16570:3;16566:12;16559:19;;16218:366;;;:::o;16590:419::-;16756:4;16794:2;16783:9;16779:18;16771:26;;16843:9;16837:4;16833:20;16829:1;16818:9;16814:17;16807:47;16871:131;16997:4;16871:131;:::i;:::-;16863:139;;16590:419;;;:::o

Swarm Source

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