ETH Price: $3,468.59 (+2.39%)
Gas: 12 Gwei

Token

Elmo (ELMO)
 

Overview

Max Total Supply

310,524,493.082654792287694434 ELMO

Holders

4,106 ( 0.049%)

Market

Price

$0.00 @ 0.000001 ETH (-0.15%)

Onchain Market Cap

$1,398,542.08

Circulating Supply Market Cap

$1,235,161.62

Other Info

Token Contract (WITH 18 Decimals)

Balance
305.9666 ELMO

Value
$1.38 ( ~0.000397856474387757 Eth) [0.0001%]
0x01389d3e091189c95cac118ce9cecdf775725d14
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

ElmoERC is here to combine meme with use-case and utility. The hyper deflationary model will assure price development, liquidity strengthening and scarcity in the long-term.

Market

Volume (24H):$3,372.14
Market Capitalization:$1,235,161.62
Circulating Supply:274,248,405.00 ELMO
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ELMO

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-30
*/

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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: contracts/elmo.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


contract ELMO is ERC20, Ownable {
    address public pair;
    uint public immutable burnFee = 10;
    bool public isFirstAddLiq = false;
    constructor() ERC20("Elmo","ELMO"){
        uint tSuppl = 1_000_000_000*10**decimals(); // starting total supply
        super._mint(msg.sender,tSuppl); // mint totalSupply, will never be used again
        
        address uniRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // uniswap routerv2 address
        IUniswapV2Router02 _pancakeV2Router = IUniswapV2Router02(uniRouter);
        IUniswapV2Factory factoryUni = IUniswapV2Factory(_pancakeV2Router.factory());
        pair = factoryUni.createPair(address(this), _pancakeV2Router.WETH()); //create pair with ETH
    }
    function publicBurn(uint amount) external { // public func if anyone want burn some of their tokens
        super._burn(msg.sender,amount);
    }
    function _transfer(address from, address to, uint256 amount) internal override {
        if(to == pair){
            if(!isFirstAddLiq){ // to avoid tax on the first add liquidity, this if will not be executed ever again
                isFirstAddLiq = true;
                super._transfer(from,to,amount);
                return;
            }
            uint burnPart = amount * burnFee / 100; // calculate burn fee
            amount -= burnPart; // remove burn part from amount
            super._burn(from,burnPart);
        }
        super._transfer(from,to,amount);
    }
}
interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}
interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[],"name":"burnFee","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":"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":"isFirstAddLiq","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052600a6080908152506000600660146101000a81548160ff0219169083151502179055503480156200003457600080fd5b506040518060400160405280600481526020017f456c6d6f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f454c4d4f000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000b992919062000590565b508060049080519060200190620000d292919062000590565b505050620000f5620000e96200034160201b60201c565b6200034960201b60201c565b6000620001076200040f60201b60201c565b600a6200011591906200081c565b633b9aca0062000126919062000959565b90506200013f33826200041860201b620007f21760201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050600081905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001a657600080fd5b505afa158015620001bb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e1919062000657565b90508073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200024757600080fd5b505afa1580156200025c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000282919062000657565b6040518363ffffffff1660e01b8152600401620002a1929190620006e7565b602060405180830381600087803b158015620002bc57600080fd5b505af1158015620002d1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f7919062000657565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000ac0565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200048b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004829062000714565b60405180910390fd5b6200049f600083836200058660201b60201c565b8060026000828254620004b3919062000764565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000566919062000736565b60405180910390a362000582600083836200058b60201b60201c565b5050565b505050565b505050565b8280546200059e9062000a05565b90600052602060002090601f016020900481019282620005c257600085556200060e565b82601f10620005dd57805160ff19168380011785556200060e565b828001600101855582156200060e579182015b828111156200060d578251825591602001919060010190620005f0565b5b5090506200061d919062000621565b5090565b5b808211156200063c57600081600090555060010162000622565b5090565b600081519050620006518162000aa6565b92915050565b6000602082840312156200066a57600080fd5b60006200067a8482850162000640565b91505092915050565b6200068e81620009ba565b82525050565b6000620006a3601f8362000753565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620006e181620009ee565b82525050565b6000604082019050620006fe600083018562000683565b6200070d602083018462000683565b9392505050565b600060208201905081810360008301526200072f8162000694565b9050919050565b60006020820190506200074d6000830184620006d6565b92915050565b600082825260208201905092915050565b60006200077182620009ee565b91506200077e83620009ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007b657620007b562000a3b565b5b828201905092915050565b6000808291508390505b60018511156200081357808604811115620007eb57620007ea62000a3b565b5b6001851615620007fb5780820291505b80810290506200080b8562000a99565b9450620007cb565b94509492505050565b60006200082982620009ee565b91506200083683620009f8565b9250620008657fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200086d565b905092915050565b6000826200087f576001905062000952565b816200088f576000905062000952565b8160018114620008a85760028114620008b357620008e9565b600191505062000952565b60ff841115620008c857620008c762000a3b565b5b8360020a915084821115620008e257620008e162000a3b565b5b5062000952565b5060208310610133831016604e8410600b8410161715620009235782820a9050838111156200091d576200091c62000a3b565b5b62000952565b620009328484846001620007c1565b925090508184048111156200094c576200094b62000a3b565b5b81810290505b9392505050565b60006200096682620009ee565b91506200097383620009ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620009af57620009ae62000a3b565b5b828202905092915050565b6000620009c782620009ce565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000600282049050600182168062000a1e57607f821691505b6020821081141562000a355762000a3462000a6a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b62000ab181620009ba565b811462000abd57600080fd5b50565b608051611d4162000ae3600039600081816107d00152610c430152611d416000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a8aa1b3111610071578063a8aa1b31146102e5578063a9059cbb14610303578063dd62ed3e14610333578063f2fde38b14610363578063fce589d81461037f57610116565b8063715018a61461026f5780638da5cb5b1461027957806395d89b4114610297578063a457c2d7146102b557610116565b80632b8b3475116100e95780632b8b3475146101b7578063313ce567146101d357806339509351146101f157806368a3e5b31461022157806370a082311461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039d565b604051610130919061187c565b60405180910390f35b610153600480360381019061014e9190611316565b61042f565b6040516101609190611861565b60405180910390f35b610171610452565b60405161017e9190611a1e565b60405180910390f35b6101a1600480360381019061019c91906112c7565b61045c565b6040516101ae9190611861565b60405180910390f35b6101d160048036038101906101cc9190611352565b61048b565b005b6101db610498565b6040516101e89190611a39565b60405180910390f35b61020b60048036038101906102069190611316565b6104a1565b6040516102189190611861565b60405180910390f35b6102296104d8565b6040516102369190611861565b60405180910390f35b61025960048036038101906102549190611262565b6104eb565b6040516102669190611a1e565b60405180910390f35b610277610533565b005b610281610547565b60405161028e9190611846565b60405180910390f35b61029f610571565b6040516102ac919061187c565b60405180910390f35b6102cf60048036038101906102ca9190611316565b610603565b6040516102dc9190611861565b60405180910390f35b6102ed61067a565b6040516102fa9190611846565b60405180910390f35b61031d60048036038101906103189190611316565b6106a0565b60405161032a9190611861565b60405180910390f35b61034d6004803603810190610348919061128b565b6106c3565b60405161035a9190611a1e565b60405180910390f35b61037d60048036038101906103789190611262565b61074a565b005b6103876107ce565b6040516103949190611a1e565b60405180910390f35b6060600380546103ac90611c0d565b80601f01602080910402602001604051908101604052809291908181526020018280546103d890611c0d565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b60008061043a610949565b9050610447818585610951565b600191505092915050565b6000600254905090565b600080610467610949565b9050610474858285610b1c565b61047f858585610ba8565b60019150509392505050565b6104953382610ca4565b50565b60006012905090565b6000806104ac610949565b90506104cd8185856104be85896106c3565b6104c89190611a70565b610951565b600191505092915050565b600660149054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61053b610e72565b6105456000610ef0565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461058090611c0d565b80601f01602080910402602001604051908101604052809291908181526020018280546105ac90611c0d565b80156105f95780601f106105ce576101008083540402835291602001916105f9565b820191906000526020600020905b8154815290600101906020018083116105dc57829003601f168201915b5050505050905090565b60008061060e610949565b9050600061061c82866106c3565b905083811015610661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610658906119de565b60405180910390fd5b61066e8286868403610951565b60019250505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806106ab610949565b90506106b8818585610ba8565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610752610e72565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b9906118de565b60405180910390fd5b6107cb81610ef0565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610862576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610859906119fe565b60405180910390fd5b61086e60008383610fb6565b80600260008282546108809190611a70565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109319190611a1e565b60405180910390a361094560008383610fbb565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b8906119be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a28906118fe565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b0f9190611a1e565b60405180910390a3505050565b6000610b2884846106c3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ba25781811015610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b9061191e565b60405180910390fd5b610ba18484848403610951565b5b50505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c9357600660149054906101000a900460ff16610c3d576001600660146101000a81548160ff021916908315150217905550610c38838383610fc0565b610c9f565b600060647f000000000000000000000000000000000000000000000000000000000000000083610c6d9190611af7565b610c779190611ac6565b90508082610c859190611b51565b9150610c918482610ca4565b505b610c9e838383610fc0565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b9061197e565b60405180910390fd5b610d2082600083610fb6565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d906118be565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e599190611a1e565b60405180910390a3610e6d83600084610fbb565b505050565b610e7a610949565b73ffffffffffffffffffffffffffffffffffffffff16610e98610547565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee59061195e565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110279061199e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110979061189e565b60405180910390fd5b6110ab838383610fb6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611131576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111289061193e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161121f9190611a1e565b60405180910390a3611232848484610fbb565b50505050565b60008135905061124781611cdd565b92915050565b60008135905061125c81611cf4565b92915050565b60006020828403121561127457600080fd5b600061128284828501611238565b91505092915050565b6000806040838503121561129e57600080fd5b60006112ac85828601611238565b92505060206112bd85828601611238565b9150509250929050565b6000806000606084860312156112dc57600080fd5b60006112ea86828701611238565b93505060206112fb86828701611238565b925050604061130c8682870161124d565b9150509250925092565b6000806040838503121561132957600080fd5b600061133785828601611238565b92505060206113488582860161124d565b9150509250929050565b60006020828403121561136457600080fd5b60006113728482850161124d565b91505092915050565b61138481611b85565b82525050565b61139381611b97565b82525050565b60006113a482611a54565b6113ae8185611a5f565b93506113be818560208601611bda565b6113c781611ccc565b840191505092915050565b60006113df602383611a5f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611445602283611a5f565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114ab602683611a5f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611511602283611a5f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611577601d83611a5f565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006115b7602683611a5f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061161d602083611a5f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061165d602183611a5f565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116c3602583611a5f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611729602483611a5f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061178f602583611a5f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117f5601f83611a5f565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61183181611bc3565b82525050565b61184081611bcd565b82525050565b600060208201905061185b600083018461137b565b92915050565b6000602082019050611876600083018461138a565b92915050565b600060208201905081810360008301526118968184611399565b905092915050565b600060208201905081810360008301526118b7816113d2565b9050919050565b600060208201905081810360008301526118d781611438565b9050919050565b600060208201905081810360008301526118f78161149e565b9050919050565b6000602082019050818103600083015261191781611504565b9050919050565b600060208201905081810360008301526119378161156a565b9050919050565b60006020820190508181036000830152611957816115aa565b9050919050565b6000602082019050818103600083015261197781611610565b9050919050565b6000602082019050818103600083015261199781611650565b9050919050565b600060208201905081810360008301526119b7816116b6565b9050919050565b600060208201905081810360008301526119d78161171c565b9050919050565b600060208201905081810360008301526119f781611782565b9050919050565b60006020820190508181036000830152611a17816117e8565b9050919050565b6000602082019050611a336000830184611828565b92915050565b6000602082019050611a4e6000830184611837565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a7b82611bc3565b9150611a8683611bc3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611abb57611aba611c3f565b5b828201905092915050565b6000611ad182611bc3565b9150611adc83611bc3565b925082611aec57611aeb611c6e565b5b828204905092915050565b6000611b0282611bc3565b9150611b0d83611bc3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611b4657611b45611c3f565b5b828202905092915050565b6000611b5c82611bc3565b9150611b6783611bc3565b925082821015611b7a57611b79611c3f565b5b828203905092915050565b6000611b9082611ba3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611bf8578082015181840152602081019050611bdd565b83811115611c07576000848401525b50505050565b60006002820490506001821680611c2557607f821691505b60208210811415611c3957611c38611c9d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611ce681611b85565b8114611cf157600080fd5b50565b611cfd81611bc3565b8114611d0857600080fd5b5056fea26469706673582212205dbac8ef2aded0f77a50617b27790edc31a7bca56cde7f35a363dabeabb0103364736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a8aa1b3111610071578063a8aa1b31146102e5578063a9059cbb14610303578063dd62ed3e14610333578063f2fde38b14610363578063fce589d81461037f57610116565b8063715018a61461026f5780638da5cb5b1461027957806395d89b4114610297578063a457c2d7146102b557610116565b80632b8b3475116100e95780632b8b3475146101b7578063313ce567146101d357806339509351146101f157806368a3e5b31461022157806370a082311461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039d565b604051610130919061187c565b60405180910390f35b610153600480360381019061014e9190611316565b61042f565b6040516101609190611861565b60405180910390f35b610171610452565b60405161017e9190611a1e565b60405180910390f35b6101a1600480360381019061019c91906112c7565b61045c565b6040516101ae9190611861565b60405180910390f35b6101d160048036038101906101cc9190611352565b61048b565b005b6101db610498565b6040516101e89190611a39565b60405180910390f35b61020b60048036038101906102069190611316565b6104a1565b6040516102189190611861565b60405180910390f35b6102296104d8565b6040516102369190611861565b60405180910390f35b61025960048036038101906102549190611262565b6104eb565b6040516102669190611a1e565b60405180910390f35b610277610533565b005b610281610547565b60405161028e9190611846565b60405180910390f35b61029f610571565b6040516102ac919061187c565b60405180910390f35b6102cf60048036038101906102ca9190611316565b610603565b6040516102dc9190611861565b60405180910390f35b6102ed61067a565b6040516102fa9190611846565b60405180910390f35b61031d60048036038101906103189190611316565b6106a0565b60405161032a9190611861565b60405180910390f35b61034d6004803603810190610348919061128b565b6106c3565b60405161035a9190611a1e565b60405180910390f35b61037d60048036038101906103789190611262565b61074a565b005b6103876107ce565b6040516103949190611a1e565b60405180910390f35b6060600380546103ac90611c0d565b80601f01602080910402602001604051908101604052809291908181526020018280546103d890611c0d565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b60008061043a610949565b9050610447818585610951565b600191505092915050565b6000600254905090565b600080610467610949565b9050610474858285610b1c565b61047f858585610ba8565b60019150509392505050565b6104953382610ca4565b50565b60006012905090565b6000806104ac610949565b90506104cd8185856104be85896106c3565b6104c89190611a70565b610951565b600191505092915050565b600660149054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61053b610e72565b6105456000610ef0565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461058090611c0d565b80601f01602080910402602001604051908101604052809291908181526020018280546105ac90611c0d565b80156105f95780601f106105ce576101008083540402835291602001916105f9565b820191906000526020600020905b8154815290600101906020018083116105dc57829003601f168201915b5050505050905090565b60008061060e610949565b9050600061061c82866106c3565b905083811015610661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610658906119de565b60405180910390fd5b61066e8286868403610951565b60019250505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806106ab610949565b90506106b8818585610ba8565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610752610e72565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b9906118de565b60405180910390fd5b6107cb81610ef0565b50565b7f000000000000000000000000000000000000000000000000000000000000000a81565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610862576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610859906119fe565b60405180910390fd5b61086e60008383610fb6565b80600260008282546108809190611a70565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109319190611a1e565b60405180910390a361094560008383610fbb565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b8906119be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a28906118fe565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b0f9190611a1e565b60405180910390a3505050565b6000610b2884846106c3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ba25781811015610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b9061191e565b60405180910390fd5b610ba18484848403610951565b5b50505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c9357600660149054906101000a900460ff16610c3d576001600660146101000a81548160ff021916908315150217905550610c38838383610fc0565b610c9f565b600060647f000000000000000000000000000000000000000000000000000000000000000a83610c6d9190611af7565b610c779190611ac6565b90508082610c859190611b51565b9150610c918482610ca4565b505b610c9e838383610fc0565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b9061197e565b60405180910390fd5b610d2082600083610fb6565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d906118be565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e599190611a1e565b60405180910390a3610e6d83600084610fbb565b505050565b610e7a610949565b73ffffffffffffffffffffffffffffffffffffffff16610e98610547565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee59061195e565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110279061199e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110979061189e565b60405180910390fd5b6110ab838383610fb6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611131576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111289061193e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161121f9190611a1e565b60405180910390a3611232848484610fbb565b50505050565b60008135905061124781611cdd565b92915050565b60008135905061125c81611cf4565b92915050565b60006020828403121561127457600080fd5b600061128284828501611238565b91505092915050565b6000806040838503121561129e57600080fd5b60006112ac85828601611238565b92505060206112bd85828601611238565b9150509250929050565b6000806000606084860312156112dc57600080fd5b60006112ea86828701611238565b93505060206112fb86828701611238565b925050604061130c8682870161124d565b9150509250925092565b6000806040838503121561132957600080fd5b600061133785828601611238565b92505060206113488582860161124d565b9150509250929050565b60006020828403121561136457600080fd5b60006113728482850161124d565b91505092915050565b61138481611b85565b82525050565b61139381611b97565b82525050565b60006113a482611a54565b6113ae8185611a5f565b93506113be818560208601611bda565b6113c781611ccc565b840191505092915050565b60006113df602383611a5f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611445602283611a5f565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114ab602683611a5f565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611511602283611a5f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611577601d83611a5f565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006115b7602683611a5f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061161d602083611a5f565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061165d602183611a5f565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116c3602583611a5f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611729602483611a5f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061178f602583611a5f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117f5601f83611a5f565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61183181611bc3565b82525050565b61184081611bcd565b82525050565b600060208201905061185b600083018461137b565b92915050565b6000602082019050611876600083018461138a565b92915050565b600060208201905081810360008301526118968184611399565b905092915050565b600060208201905081810360008301526118b7816113d2565b9050919050565b600060208201905081810360008301526118d781611438565b9050919050565b600060208201905081810360008301526118f78161149e565b9050919050565b6000602082019050818103600083015261191781611504565b9050919050565b600060208201905081810360008301526119378161156a565b9050919050565b60006020820190508181036000830152611957816115aa565b9050919050565b6000602082019050818103600083015261197781611610565b9050919050565b6000602082019050818103600083015261199781611650565b9050919050565b600060208201905081810360008301526119b7816116b6565b9050919050565b600060208201905081810360008301526119d78161171c565b9050919050565b600060208201905081810360008301526119f781611782565b9050919050565b60006020820190508181036000830152611a17816117e8565b9050919050565b6000602082019050611a336000830184611828565b92915050565b6000602082019050611a4e6000830184611837565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a7b82611bc3565b9150611a8683611bc3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611abb57611aba611c3f565b5b828201905092915050565b6000611ad182611bc3565b9150611adc83611bc3565b925082611aec57611aeb611c6e565b5b828204905092915050565b6000611b0282611bc3565b9150611b0d83611bc3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611b4657611b45611c3f565b5b828202905092915050565b6000611b5c82611bc3565b9150611b6783611bc3565b925082821015611b7a57611b79611c3f565b5b828203905092915050565b6000611b9082611ba3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611bf8578082015181840152602081019050611bdd565b83811115611c07576000848401525b50505050565b60006002820490506001821680611c2557607f821691505b60208210811415611c3957611c38611c9d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611ce681611b85565b8114611cf157600080fd5b50565b611cfd81611bc3565b8114611d0857600080fd5b5056fea26469706673582212205dbac8ef2aded0f77a50617b27790edc31a7bca56cde7f35a363dabeabb0103364736f6c63430008000033

Deployed Bytecode Sourcemap

20631:1485:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9351:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11702:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10471:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12483:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21368:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10313:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13187:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20737:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10642:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;:::i;:::-;;2128:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9570:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13928:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20670:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10975:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11231:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20696:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9351:100;9405:13;9438:5;9431:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9351:100;:::o;11702:201::-;11785:4;11802:13;11818:12;:10;:12::i;:::-;11802:28;;11841:32;11850:5;11857:7;11866:6;11841:8;:32::i;:::-;11891:4;11884:11;;;11702:201;;;;:::o;10471:108::-;10532:7;10559:12;;10552:19;;10471:108;:::o;12483:295::-;12614:4;12631:15;12649:12;:10;:12::i;:::-;12631:30;;12672:38;12688:4;12694:7;12703:6;12672:15;:38::i;:::-;12721:27;12731:4;12737:2;12741:6;12721:9;:27::i;:::-;12766:4;12759:11;;;12483:295;;;;;:::o;21368:147::-;21477:30;21489:10;21500:6;21477:11;:30::i;:::-;21368:147;:::o;10313:93::-;10371:5;10396:2;10389:9;;10313:93;:::o;13187:238::-;13275:4;13292:13;13308:12;:10;:12::i;:::-;13292:28;;13331:64;13340:5;13347:7;13384:10;13356:25;13366:5;13373:7;13356:9;:25::i;:::-;:38;;;;:::i;:::-;13331:8;:64::i;:::-;13413:4;13406:11;;;13187:238;;;;:::o;20737:33::-;;;;;;;;;;;;;:::o;10642:127::-;10716:7;10743:9;:18;10753:7;10743:18;;;;;;;;;;;;;;;;10736:25;;10642:127;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;9570:104::-;9626:13;9659:7;9652:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9570:104;:::o;13928:436::-;14021:4;14038:13;14054:12;:10;:12::i;:::-;14038:28;;14077:24;14104:25;14114:5;14121:7;14104:9;:25::i;:::-;14077:52;;14168:15;14148:16;:35;;14140:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14261:60;14270:5;14277:7;14305:15;14286:16;:34;14261:8;:60::i;:::-;14352:4;14345:11;;;;13928:436;;;;:::o;20670:19::-;;;;;;;;;;;;;:::o;10975:193::-;11054:4;11071:13;11087:12;:10;:12::i;:::-;11071:28;;11110;11120:5;11127:2;11131:6;11110:9;:28::i;:::-;11156:4;11149:11;;;10975:193;;;;:::o;11231:151::-;11320:7;11347:11;:18;11359:5;11347:18;;;;;;;;;;;;;;;:27;11366:7;11347:27;;;;;;;;;;;;;;;;11340:34;;11231:151;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;20696:34::-;;;:::o;15961:548::-;16064:1;16045:21;;:7;:21;;;;16037:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16115:49;16144:1;16148:7;16157:6;16115:20;:49::i;:::-;16193:6;16177:12;;:22;;;;;;;:::i;:::-;;;;;;;;16370:6;16348:9;:18;16358:7;16348:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;16424:7;16403:37;;16420:1;16403:37;;;16433:6;16403:37;;;;;;:::i;:::-;;;;;;;;16453:48;16481:1;16485:7;16494:6;16453:19;:48::i;:::-;15961:548;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;17955:380::-;18108:1;18091:19;;:5;:19;;;;18083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18189:1;18170:21;;:7;:21;;;;18162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18273:6;18243:11;:18;18255:5;18243:18;;;;;;;;;;;;;;;:27;18262:7;18243:27;;;;;;;;;;;;;;;:36;;;;18311:7;18295:32;;18304:5;18295:32;;;18320:6;18295:32;;;;;;:::i;:::-;;;;;;;;17955:380;;;:::o;18626:453::-;18761:24;18788:25;18798:5;18805:7;18788:9;:25::i;:::-;18761:52;;18848:17;18828:16;:37;18824:248;;18910:6;18890:16;:26;;18882:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18994:51;19003:5;19010:7;19038:6;19019:16;:25;18994:8;:51::i;:::-;18824:248;18626:453;;;;:::o;21521:592::-;21620:4;;;;;;;;;;;21614:10;;:2;:10;;;21611:453;;;21644:13;;;;;;;;;;;21640:232;;21777:4;21761:13;;:20;;;;;;;;;;;;;;;;;;21800:31;21816:4;21821:2;21824:6;21800:15;:31::i;:::-;21850:7;;21640:232;21886:13;21921:3;21911:7;21902:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;21886:38;;21971:8;21961:18;;;;;:::i;:::-;;;22026:26;22038:4;22043:8;22026:11;:26::i;:::-;21611:453;;22074:31;22090:4;22095:2;22098:6;22074:15;:31::i;:::-;21521:592;;;;:::o;16842:675::-;16945:1;16926:21;;:7;:21;;;;16918:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16998:49;17019:7;17036:1;17040:6;16998:20;:49::i;:::-;17060:22;17085:9;:18;17095:7;17085:18;;;;;;;;;;;;;;;;17060:43;;17140:6;17122:14;:24;;17114:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17259:6;17242:14;:23;17221:9;:18;17231:7;17221:18;;;;;;;;;;;;;;;:44;;;;17376:6;17360:12;;:22;;;;;;;;;;;17437:1;17411:37;;17420:7;17411:37;;;17441:6;17411:37;;;;;;:::i;:::-;;;;;;;;17461:48;17481:7;17498:1;17502:6;17461:19;:48::i;:::-;16842:675;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3395:191;;:::o;19679:125::-;;;;:::o;20408:124::-;;;;:::o;14834:840::-;14981:1;14965:18;;:4;:18;;;;14957:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15058:1;15044:16;;:2;:16;;;;15036:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15113:38;15134:4;15140:2;15144:6;15113:20;:38::i;:::-;15164:19;15186:9;:15;15196:4;15186:15;;;;;;;;;;;;;;;;15164:37;;15235:6;15220:11;:21;;15212:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15352:6;15338:11;:20;15320:9;:15;15330:4;15320:15;;;;;;;;;;;;;;;:38;;;;15555:6;15538:9;:13;15548:2;15538:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15605:2;15590:26;;15599:4;15590:26;;;15609:6;15590:26;;;;;;:::i;:::-;;;;;;;;15629:37;15649:4;15655:2;15659:6;15629:19;:37::i;:::-;14834:840;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:370::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:8;3892:2;3887:3;3883:12;3876:30;3932:2;3927:3;3923:12;3916:19;;3717:224;;;:::o;3947:366::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:34;4203:1;4198:3;4194:11;4187:55;4273:4;4268:2;4263:3;4259:12;4252:26;4304:2;4299:3;4295:12;4288:19;;4093:220;;;:::o;4319:327::-;;4482:67;4546:2;4541:3;4482:67;:::i;:::-;4475:74;;4579:31;4575:1;4570:3;4566:11;4559:52;4637:2;4632:3;4628:12;4621:19;;4465:181;;;:::o;4652:370::-;;4815:67;4879:2;4874:3;4815:67;:::i;:::-;4808:74;;4912:34;4908:1;4903:3;4899:11;4892:55;4978:8;4973:2;4968:3;4964:12;4957:30;5013:2;5008:3;5004:12;4997:19;;4798:224;;;:::o;5028:330::-;;5191:67;5255:2;5250:3;5191:67;:::i;:::-;5184:74;;5288:34;5284:1;5279:3;5275:11;5268:55;5349:2;5344:3;5340:12;5333:19;;5174:184;;;:::o;5364:365::-;;5527:67;5591:2;5586:3;5527:67;:::i;:::-;5520:74;;5624:34;5620:1;5615:3;5611:11;5604:55;5690:3;5685:2;5680:3;5676:12;5669:25;5720:2;5715:3;5711:12;5704:19;;5510:219;;;:::o;5735:369::-;;5898:67;5962:2;5957:3;5898:67;:::i;:::-;5891:74;;5995:34;5991:1;5986:3;5982:11;5975:55;6061:7;6056:2;6051:3;6047:12;6040:29;6095:2;6090:3;6086:12;6079:19;;5881:223;;;:::o;6110:368::-;;6273:67;6337:2;6332:3;6273:67;:::i;:::-;6266:74;;6370:34;6366:1;6361:3;6357:11;6350:55;6436:6;6431:2;6426:3;6422:12;6415:28;6469:2;6464:3;6460:12;6453:19;;6256:222;;;:::o;6484:369::-;;6647:67;6711:2;6706:3;6647:67;:::i;:::-;6640:74;;6744:34;6740:1;6735:3;6731:11;6724:55;6810:7;6805:2;6800:3;6796:12;6789:29;6844:2;6839:3;6835:12;6828:19;;6630:223;;;:::o;6859:329::-;;7022:67;7086:2;7081:3;7022:67;:::i;:::-;7015:74;;7119:33;7115:1;7110:3;7106:11;7099:54;7179:2;7174:3;7170:12;7163:19;;7005:183;;;:::o;7194:118::-;7281:24;7299:5;7281:24;:::i;:::-;7276:3;7269:37;7259:53;;:::o;7318:112::-;7401:22;7417:5;7401:22;:::i;:::-;7396:3;7389:35;7379:51;;:::o;7436:222::-;;7567:2;7556:9;7552:18;7544:26;;7580:71;7648:1;7637:9;7633:17;7624:6;7580:71;:::i;:::-;7534:124;;;;:::o;7664:210::-;;7789:2;7778:9;7774:18;7766:26;;7802:65;7864:1;7853:9;7849:17;7840:6;7802:65;:::i;:::-;7756:118;;;;:::o;7880:313::-;;8031:2;8020:9;8016:18;8008:26;;8080:9;8074:4;8070:20;8066:1;8055:9;8051:17;8044:47;8108:78;8181:4;8172:6;8108:78;:::i;:::-;8100:86;;7998:195;;;;:::o;8199:419::-;;8403:2;8392:9;8388:18;8380:26;;8452:9;8446:4;8442:20;8438:1;8427:9;8423:17;8416:47;8480:131;8606:4;8480:131;:::i;:::-;8472:139;;8370:248;;;:::o;8624:419::-;;8828:2;8817:9;8813:18;8805:26;;8877:9;8871:4;8867:20;8863:1;8852:9;8848:17;8841:47;8905:131;9031:4;8905:131;:::i;:::-;8897:139;;8795:248;;;:::o;9049:419::-;;9253:2;9242:9;9238:18;9230:26;;9302:9;9296:4;9292:20;9288:1;9277:9;9273:17;9266:47;9330:131;9456:4;9330:131;:::i;:::-;9322:139;;9220:248;;;:::o;9474:419::-;;9678:2;9667:9;9663:18;9655:26;;9727:9;9721:4;9717:20;9713:1;9702:9;9698:17;9691:47;9755:131;9881:4;9755:131;:::i;:::-;9747:139;;9645:248;;;:::o;9899:419::-;;10103:2;10092:9;10088:18;10080:26;;10152:9;10146:4;10142:20;10138:1;10127:9;10123:17;10116:47;10180:131;10306:4;10180:131;:::i;:::-;10172:139;;10070:248;;;:::o;10324:419::-;;10528:2;10517:9;10513:18;10505:26;;10577:9;10571:4;10567:20;10563:1;10552:9;10548:17;10541:47;10605:131;10731:4;10605:131;:::i;:::-;10597:139;;10495:248;;;:::o;10749:419::-;;10953:2;10942:9;10938:18;10930:26;;11002:9;10996:4;10992:20;10988:1;10977:9;10973:17;10966:47;11030:131;11156:4;11030:131;:::i;:::-;11022:139;;10920:248;;;:::o;11174:419::-;;11378:2;11367:9;11363:18;11355:26;;11427:9;11421:4;11417:20;11413:1;11402:9;11398:17;11391:47;11455:131;11581:4;11455:131;:::i;:::-;11447:139;;11345:248;;;:::o;11599:419::-;;11803:2;11792:9;11788:18;11780:26;;11852:9;11846:4;11842:20;11838:1;11827:9;11823:17;11816:47;11880:131;12006:4;11880:131;:::i;:::-;11872:139;;11770:248;;;:::o;12024:419::-;;12228:2;12217:9;12213:18;12205:26;;12277:9;12271:4;12267:20;12263:1;12252:9;12248:17;12241:47;12305:131;12431:4;12305:131;:::i;:::-;12297:139;;12195:248;;;:::o;12449:419::-;;12653:2;12642:9;12638:18;12630:26;;12702:9;12696:4;12692:20;12688:1;12677:9;12673:17;12666:47;12730:131;12856:4;12730:131;:::i;:::-;12722:139;;12620:248;;;:::o;12874:419::-;;13078:2;13067:9;13063:18;13055:26;;13127:9;13121:4;13117:20;13113:1;13102:9;13098:17;13091:47;13155:131;13281:4;13155:131;:::i;:::-;13147:139;;13045:248;;;:::o;13299:222::-;;13430:2;13419:9;13415:18;13407:26;;13443:71;13511:1;13500:9;13496:17;13487:6;13443:71;:::i;:::-;13397:124;;;;:::o;13527:214::-;;13654:2;13643:9;13639:18;13631:26;;13667:67;13731:1;13720:9;13716:17;13707:6;13667:67;:::i;:::-;13621:120;;;;:::o;13747:99::-;;13833:5;13827:12;13817:22;;13806:40;;;:::o;13852:169::-;;13970:6;13965:3;13958:19;14010:4;14005:3;14001:14;13986:29;;13948:73;;;;:::o;14027:305::-;;14086:20;14104:1;14086:20;:::i;:::-;14081:25;;14120:20;14138:1;14120:20;:::i;:::-;14115:25;;14274:1;14206:66;14202:74;14199:1;14196:81;14193:2;;;14280:18;;:::i;:::-;14193:2;14324:1;14321;14317:9;14310:16;;14071:261;;;;:::o;14338:185::-;;14395:20;14413:1;14395:20;:::i;:::-;14390:25;;14429:20;14447:1;14429:20;:::i;:::-;14424:25;;14468:1;14458:2;;14473:18;;:::i;:::-;14458:2;14515:1;14512;14508:9;14503:14;;14380:143;;;;:::o;14529:348::-;;14592:20;14610:1;14592:20;:::i;:::-;14587:25;;14626:20;14644:1;14626:20;:::i;:::-;14621:25;;14814:1;14746:66;14742:74;14739:1;14736:81;14731:1;14724:9;14717:17;14713:105;14710:2;;;14821:18;;:::i;:::-;14710:2;14869:1;14866;14862:9;14851:20;;14577:300;;;;:::o;14883:191::-;;14943:20;14961:1;14943:20;:::i;:::-;14938:25;;14977:20;14995:1;14977:20;:::i;:::-;14972:25;;15016:1;15013;15010:8;15007:2;;;15021:18;;:::i;:::-;15007:2;15066:1;15063;15059:9;15051:17;;14928:146;;;;:::o;15080:96::-;;15146:24;15164:5;15146:24;:::i;:::-;15135:35;;15125:51;;;:::o;15182:90::-;;15259:5;15252:13;15245:21;15234:32;;15224:48;;;:::o;15278:126::-;;15355:42;15348:5;15344:54;15333:65;;15323:81;;;:::o;15410:77::-;;15476:5;15465:16;;15455:32;;;:::o;15493:86::-;;15568:4;15561:5;15557:16;15546:27;;15536:43;;;:::o;15585:307::-;15653:1;15663:113;15677:6;15674:1;15671:13;15663:113;;;15762:1;15757:3;15753:11;15747:18;15743:1;15738:3;15734:11;15727:39;15699:2;15696:1;15692:10;15687:15;;15663:113;;;15794:6;15791:1;15788:13;15785:2;;;15874:1;15865:6;15860:3;15856:16;15849:27;15785:2;15634:258;;;;:::o;15898:320::-;;15979:1;15973:4;15969:12;15959:22;;16026:1;16020:4;16016:12;16047:18;16037:2;;16103:4;16095:6;16091:17;16081:27;;16037:2;16165;16157:6;16154:14;16134:18;16131:38;16128:2;;;16184:18;;:::i;:::-;16128:2;15949:269;;;;:::o;16224:180::-;16272:77;16269:1;16262:88;16369:4;16366:1;16359:15;16393:4;16390:1;16383:15;16410:180;16458:77;16455:1;16448:88;16555:4;16552:1;16545:15;16579:4;16576:1;16569:15;16596:180;16644:77;16641:1;16634:88;16741:4;16738:1;16731:15;16765:4;16762:1;16755:15;16782:102;;16874:2;16870:7;16865:2;16858:5;16854:14;16850:28;16840:38;;16830:54;;;:::o;16890:122::-;16963:24;16981:5;16963:24;:::i;:::-;16956:5;16953:35;16943:2;;17002:1;16999;16992:12;16943:2;16933:79;:::o;17018:122::-;17091:24;17109:5;17091:24;:::i;:::-;17084:5;17081:35;17071:2;;17130:1;17127;17120:12;17071:2;17061:79;:::o

Swarm Source

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