ETH Price: $2,065.44 (-9.12%)

Token

Fungi (FUGI)
 

Overview

Max Total Supply

1,000 FUGI

Holders

8

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
Fungi

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-09-04
*/

// SPDX-License-Identifier: MIT
/**
   https://x.com/Fungi_ERC20i|
   https://t.me/fungi_erc20i
 *
*/

// 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: v11.sol

pragma solidity ^0.8.0;



contract Fungi  is ERC20, Ownable {
    uint256 private _totalSupply = 1000 * (10 ** 18);
    uint256 private _tokenPrice = 200000 * (10 ** 18);

    constructor() ERC20("Fungi ", "FUGI") {
        _mint(msg.sender, _totalSupply);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "No balance to withdraw");
        payable(msg.sender).transfer(balance);
    }

    function setTokenPrice(uint256 newTokenPrice) external onlyOwner {
        require(newTokenPrice > 0, "Token price should be greater than 0");
        _tokenPrice = newTokenPrice;
    }

    function getTokenPrice() external view returns (uint256) {
        return _tokenPrice;
    }

    function burn(uint256 amount) external {
        require(amount > 0, "Amount to burn should be greater than 0");
        require(balanceOf(msg.sender) >= amount, "Not enough tokens to burn");
        _burn(msg.sender, amount);
    }
}

Contract Security Audit

Contract ABI

API
[{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"setTokenPrice","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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052683635c9adc5dea00000600655692a5a058fc295ed0000006007553480156200002b575f80fd5b506040518060400160405280600681526020017f46756e67692000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f46554749000000000000000000000000000000000000000000000000000000008152508160039081620000a9919062000595565b508060049081620000bb919062000595565b505050620000de620000d2620000f860201b60201c565b620000ff60201b60201c565b620000f233600654620001c260201b60201c565b6200078a565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000233576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022a90620006d7565b60405180910390fd5b620002465f83836200032760201b60201c565b8060025f82825462000259919062000724565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030891906200076f565b60405180910390a3620003235f83836200032c60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620003ad57607f821691505b602082108103620003c357620003c262000368565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004277fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003ea565b620004338683620003ea565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200047d6200047762000471846200044b565b62000454565b6200044b565b9050919050565b5f819050919050565b62000498836200045d565b620004b0620004a78262000484565b848454620003f6565b825550505050565b5f90565b620004c6620004b8565b620004d38184846200048d565b505050565b5b81811015620004fa57620004ee5f82620004bc565b600181019050620004d9565b5050565b601f82111562000549576200051381620003c9565b6200051e84620003db565b810160208510156200052e578190505b620005466200053d85620003db565b830182620004d8565b50505b505050565b5f82821c905092915050565b5f6200056b5f19846008026200054e565b1980831691505092915050565b5f6200058583836200055a565b9150826002028217905092915050565b620005a08262000331565b67ffffffffffffffff811115620005bc57620005bb6200033b565b5b620005c8825462000395565b620005d5828285620004fe565b5f60209050601f8311600181146200060b575f8415620005f6578287015190505b62000602858262000578565b86555062000671565b601f1984166200061b86620003c9565b5f5b8281101562000644578489015182556001820191506020850194506020810190506200061d565b8683101562000664578489015162000660601f8916826200055a565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620006bf601f8362000679565b9150620006cc8262000689565b602082019050919050565b5f6020820190508181035f830152620006f081620006b1565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000730826200044b565b91506200073d836200044b565b9250828201905080821115620007585762000757620006f7565b5b92915050565b62000769816200044b565b82525050565b5f602082019050620007845f8301846200075e565b92915050565b611c7280620007985f395ff3fe608060405234801561000f575f80fd5b5060043610610114575f3560e01c80636a61e5fc116100a057806395d89b411161006f57806395d89b41146102ba578063a457c2d7146102d8578063a9059cbb14610308578063dd62ed3e14610338578063f2fde38b1461036857610114565b80636a61e5fc1461024657806370a0823114610262578063715018a6146102925780638da5cb5b1461029c57610114565b8063313ce567116100e7578063313ce567146101b457806339509351146101d25780633ccfd60b1461020257806342966c681461020c5780634b94f50e1461022857610114565b806306fdde0314610118578063095ea7b31461013657806318160ddd1461016657806323b872dd14610184575b5f80fd5b610120610384565b60405161012d919061113b565b60405180910390f35b610150600480360381019061014b91906111ec565b610414565b60405161015d9190611244565b60405180910390f35b61016e610436565b60405161017b919061126c565b60405180910390f35b61019e60048036038101906101999190611285565b61043f565b6040516101ab9190611244565b60405180910390f35b6101bc61046d565b6040516101c991906112f0565b60405180910390f35b6101ec60048036038101906101e791906111ec565b610475565b6040516101f99190611244565b60405180910390f35b61020a6104ab565b005b61022660048036038101906102219190611309565b610540565b005b6102306105da565b60405161023d919061126c565b60405180910390f35b610260600480360381019061025b9190611309565b6105e3565b005b61027c60048036038101906102779190611334565b610637565b604051610289919061126c565b60405180910390f35b61029a61067c565b005b6102a461068f565b6040516102b1919061136e565b60405180910390f35b6102c26106b7565b6040516102cf919061113b565b60405180910390f35b6102f260048036038101906102ed91906111ec565b610747565b6040516102ff9190611244565b60405180910390f35b610322600480360381019061031d91906111ec565b6107bc565b60405161032f9190611244565b60405180910390f35b610352600480360381019061034d9190611387565b6107de565b60405161035f919061126c565b60405180910390f35b610382600480360381019061037d9190611334565b610860565b005b606060038054610393906113f2565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906113f2565b801561040a5780601f106103e15761010080835404028352916020019161040a565b820191905f5260205f20905b8154815290600101906020018083116103ed57829003601f168201915b5050505050905090565b5f8061041e6108e2565b905061042b8185856108e9565b600191505092915050565b5f600254905090565b5f806104496108e2565b9050610456858285610aac565b610461858585610b37565b60019150509392505050565b5f6012905090565b5f8061047f6108e2565b90506104a081858561049185896107de565b61049b919061144f565b6108e9565b600191505092915050565b6104b3610da3565b5f4790505f81116104f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f0906114cc565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f1935050505015801561053c573d5f803e3d5ffd5b5050565b5f8111610582576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105799061155a565b60405180910390fd5b8061058c33610637565b10156105cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c4906115c2565b60405180910390fd5b6105d73382610e21565b50565b5f600754905090565b6105eb610da3565b5f811161062d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062490611650565b60405180910390fd5b8060078190555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610684610da3565b61068d5f610fe4565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106c6906113f2565b80601f01602080910402602001604051908101604052809291908181526020018280546106f2906113f2565b801561073d5780601f106107145761010080835404028352916020019161073d565b820191905f5260205f20905b81548152906001019060200180831161072057829003601f168201915b5050505050905090565b5f806107516108e2565b90505f61075e82866107de565b9050838110156107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a906116de565b60405180910390fd5b6107b082868684036108e9565b60019250505092915050565b5f806107c66108e2565b90506107d3818585610b37565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610868610da3565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cd9061176c565b60405180910390fd5b6108df81610fe4565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e906117fa565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc90611888565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a9f919061126c565b60405180910390a3505050565b5f610ab784846107de565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b315781811015610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a906118f0565b60405180910390fd5b610b3084848484036108e9565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c9061197e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90611a0c565b60405180910390fd5b610c1e8383836110a7565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890611a9a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d8a919061126c565b60405180910390a3610d9d8484846110ac565b50505050565b610dab6108e2565b73ffffffffffffffffffffffffffffffffffffffff16610dc961068f565b73ffffffffffffffffffffffffffffffffffffffff1614610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690611b02565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690611b90565b60405180910390fd5b610e9a825f836110a7565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490611c1e565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fcc919061126c565b60405180910390a3610fdf835f846110ac565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156110e85780820151818401526020810190506110cd565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61110d826110b1565b61111781856110bb565b93506111278185602086016110cb565b611130816110f3565b840191505092915050565b5f6020820190508181035f8301526111538184611103565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111888261115f565b9050919050565b6111988161117e565b81146111a2575f80fd5b50565b5f813590506111b38161118f565b92915050565b5f819050919050565b6111cb816111b9565b81146111d5575f80fd5b50565b5f813590506111e6816111c2565b92915050565b5f80604083850312156112025761120161115b565b5b5f61120f858286016111a5565b9250506020611220858286016111d8565b9150509250929050565b5f8115159050919050565b61123e8161122a565b82525050565b5f6020820190506112575f830184611235565b92915050565b611266816111b9565b82525050565b5f60208201905061127f5f83018461125d565b92915050565b5f805f6060848603121561129c5761129b61115b565b5b5f6112a9868287016111a5565b93505060206112ba868287016111a5565b92505060406112cb868287016111d8565b9150509250925092565b5f60ff82169050919050565b6112ea816112d5565b82525050565b5f6020820190506113035f8301846112e1565b92915050565b5f6020828403121561131e5761131d61115b565b5b5f61132b848285016111d8565b91505092915050565b5f602082840312156113495761134861115b565b5b5f611356848285016111a5565b91505092915050565b6113688161117e565b82525050565b5f6020820190506113815f83018461135f565b92915050565b5f806040838503121561139d5761139c61115b565b5b5f6113aa858286016111a5565b92505060206113bb858286016111a5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061140957607f821691505b60208210810361141c5761141b6113c5565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611459826111b9565b9150611464836111b9565b925082820190508082111561147c5761147b611422565b5b92915050565b7f4e6f2062616c616e636520746f207769746864726177000000000000000000005f82015250565b5f6114b66016836110bb565b91506114c182611482565b602082019050919050565b5f6020820190508181035f8301526114e3816114aa565b9050919050565b7f416d6f756e7420746f206275726e2073686f756c6420626520677265617465725f8201527f207468616e203000000000000000000000000000000000000000000000000000602082015250565b5f6115446027836110bb565b915061154f826114ea565b604082019050919050565b5f6020820190508181035f83015261157181611538565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320746f206275726e000000000000005f82015250565b5f6115ac6019836110bb565b91506115b782611578565b602082019050919050565b5f6020820190508181035f8301526115d9816115a0565b9050919050565b7f546f6b656e2070726963652073686f756c6420626520677265617465722074685f8201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b5f61163a6024836110bb565b9150611645826115e0565b604082019050919050565b5f6020820190508181035f8301526116678161162e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6116c86025836110bb565b91506116d38261166e565b604082019050919050565b5f6020820190508181035f8301526116f5816116bc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6117566026836110bb565b9150611761826116fc565b604082019050919050565b5f6020820190508181035f8301526117838161174a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6117e46024836110bb565b91506117ef8261178a565b604082019050919050565b5f6020820190508181035f830152611811816117d8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6118726022836110bb565b915061187d82611818565b604082019050919050565b5f6020820190508181035f83015261189f81611866565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6118da601d836110bb565b91506118e5826118a6565b602082019050919050565b5f6020820190508181035f830152611907816118ce565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6119686025836110bb565b91506119738261190e565b604082019050919050565b5f6020820190508181035f8301526119958161195c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6119f66023836110bb565b9150611a018261199c565b604082019050919050565b5f6020820190508181035f830152611a23816119ea565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611a846026836110bb565b9150611a8f82611a2a565b604082019050919050565b5f6020820190508181035f830152611ab181611a78565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611aec6020836110bb565b9150611af782611ab8565b602082019050919050565b5f6020820190508181035f830152611b1981611ae0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b7a6021836110bb565b9150611b8582611b20565b604082019050919050565b5f6020820190508181035f830152611ba781611b6e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611c086022836110bb565b9150611c1382611bae565b604082019050919050565b5f6020820190508181035f830152611c3581611bfc565b905091905056fea2646970667358221220aba0ceeac05cbe332047d00a03e80585fb2aa4570fb210046cc2c6e861c424aa64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610114575f3560e01c80636a61e5fc116100a057806395d89b411161006f57806395d89b41146102ba578063a457c2d7146102d8578063a9059cbb14610308578063dd62ed3e14610338578063f2fde38b1461036857610114565b80636a61e5fc1461024657806370a0823114610262578063715018a6146102925780638da5cb5b1461029c57610114565b8063313ce567116100e7578063313ce567146101b457806339509351146101d25780633ccfd60b1461020257806342966c681461020c5780634b94f50e1461022857610114565b806306fdde0314610118578063095ea7b31461013657806318160ddd1461016657806323b872dd14610184575b5f80fd5b610120610384565b60405161012d919061113b565b60405180910390f35b610150600480360381019061014b91906111ec565b610414565b60405161015d9190611244565b60405180910390f35b61016e610436565b60405161017b919061126c565b60405180910390f35b61019e60048036038101906101999190611285565b61043f565b6040516101ab9190611244565b60405180910390f35b6101bc61046d565b6040516101c991906112f0565b60405180910390f35b6101ec60048036038101906101e791906111ec565b610475565b6040516101f99190611244565b60405180910390f35b61020a6104ab565b005b61022660048036038101906102219190611309565b610540565b005b6102306105da565b60405161023d919061126c565b60405180910390f35b610260600480360381019061025b9190611309565b6105e3565b005b61027c60048036038101906102779190611334565b610637565b604051610289919061126c565b60405180910390f35b61029a61067c565b005b6102a461068f565b6040516102b1919061136e565b60405180910390f35b6102c26106b7565b6040516102cf919061113b565b60405180910390f35b6102f260048036038101906102ed91906111ec565b610747565b6040516102ff9190611244565b60405180910390f35b610322600480360381019061031d91906111ec565b6107bc565b60405161032f9190611244565b60405180910390f35b610352600480360381019061034d9190611387565b6107de565b60405161035f919061126c565b60405180910390f35b610382600480360381019061037d9190611334565b610860565b005b606060038054610393906113f2565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906113f2565b801561040a5780601f106103e15761010080835404028352916020019161040a565b820191905f5260205f20905b8154815290600101906020018083116103ed57829003601f168201915b5050505050905090565b5f8061041e6108e2565b905061042b8185856108e9565b600191505092915050565b5f600254905090565b5f806104496108e2565b9050610456858285610aac565b610461858585610b37565b60019150509392505050565b5f6012905090565b5f8061047f6108e2565b90506104a081858561049185896107de565b61049b919061144f565b6108e9565b600191505092915050565b6104b3610da3565b5f4790505f81116104f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f0906114cc565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f1935050505015801561053c573d5f803e3d5ffd5b5050565b5f8111610582576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105799061155a565b60405180910390fd5b8061058c33610637565b10156105cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c4906115c2565b60405180910390fd5b6105d73382610e21565b50565b5f600754905090565b6105eb610da3565b5f811161062d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062490611650565b60405180910390fd5b8060078190555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610684610da3565b61068d5f610fe4565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106c6906113f2565b80601f01602080910402602001604051908101604052809291908181526020018280546106f2906113f2565b801561073d5780601f106107145761010080835404028352916020019161073d565b820191905f5260205f20905b81548152906001019060200180831161072057829003601f168201915b5050505050905090565b5f806107516108e2565b90505f61075e82866107de565b9050838110156107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a906116de565b60405180910390fd5b6107b082868684036108e9565b60019250505092915050565b5f806107c66108e2565b90506107d3818585610b37565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610868610da3565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cd9061176c565b60405180910390fd5b6108df81610fe4565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e906117fa565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc90611888565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a9f919061126c565b60405180910390a3505050565b5f610ab784846107de565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b315781811015610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a906118f0565b60405180910390fd5b610b3084848484036108e9565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c9061197e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90611a0c565b60405180910390fd5b610c1e8383836110a7565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890611a9a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d8a919061126c565b60405180910390a3610d9d8484846110ac565b50505050565b610dab6108e2565b73ffffffffffffffffffffffffffffffffffffffff16610dc961068f565b73ffffffffffffffffffffffffffffffffffffffff1614610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690611b02565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690611b90565b60405180910390fd5b610e9a825f836110a7565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1490611c1e565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fcc919061126c565b60405180910390a3610fdf835f846110ac565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156110e85780820151818401526020810190506110cd565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61110d826110b1565b61111781856110bb565b93506111278185602086016110cb565b611130816110f3565b840191505092915050565b5f6020820190508181035f8301526111538184611103565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111888261115f565b9050919050565b6111988161117e565b81146111a2575f80fd5b50565b5f813590506111b38161118f565b92915050565b5f819050919050565b6111cb816111b9565b81146111d5575f80fd5b50565b5f813590506111e6816111c2565b92915050565b5f80604083850312156112025761120161115b565b5b5f61120f858286016111a5565b9250506020611220858286016111d8565b9150509250929050565b5f8115159050919050565b61123e8161122a565b82525050565b5f6020820190506112575f830184611235565b92915050565b611266816111b9565b82525050565b5f60208201905061127f5f83018461125d565b92915050565b5f805f6060848603121561129c5761129b61115b565b5b5f6112a9868287016111a5565b93505060206112ba868287016111a5565b92505060406112cb868287016111d8565b9150509250925092565b5f60ff82169050919050565b6112ea816112d5565b82525050565b5f6020820190506113035f8301846112e1565b92915050565b5f6020828403121561131e5761131d61115b565b5b5f61132b848285016111d8565b91505092915050565b5f602082840312156113495761134861115b565b5b5f611356848285016111a5565b91505092915050565b6113688161117e565b82525050565b5f6020820190506113815f83018461135f565b92915050565b5f806040838503121561139d5761139c61115b565b5b5f6113aa858286016111a5565b92505060206113bb858286016111a5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061140957607f821691505b60208210810361141c5761141b6113c5565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611459826111b9565b9150611464836111b9565b925082820190508082111561147c5761147b611422565b5b92915050565b7f4e6f2062616c616e636520746f207769746864726177000000000000000000005f82015250565b5f6114b66016836110bb565b91506114c182611482565b602082019050919050565b5f6020820190508181035f8301526114e3816114aa565b9050919050565b7f416d6f756e7420746f206275726e2073686f756c6420626520677265617465725f8201527f207468616e203000000000000000000000000000000000000000000000000000602082015250565b5f6115446027836110bb565b915061154f826114ea565b604082019050919050565b5f6020820190508181035f83015261157181611538565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320746f206275726e000000000000005f82015250565b5f6115ac6019836110bb565b91506115b782611578565b602082019050919050565b5f6020820190508181035f8301526115d9816115a0565b9050919050565b7f546f6b656e2070726963652073686f756c6420626520677265617465722074685f8201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b5f61163a6024836110bb565b9150611645826115e0565b604082019050919050565b5f6020820190508181035f8301526116678161162e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6116c86025836110bb565b91506116d38261166e565b604082019050919050565b5f6020820190508181035f8301526116f5816116bc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6117566026836110bb565b9150611761826116fc565b604082019050919050565b5f6020820190508181035f8301526117838161174a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6117e46024836110bb565b91506117ef8261178a565b604082019050919050565b5f6020820190508181035f830152611811816117d8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6118726022836110bb565b915061187d82611818565b604082019050919050565b5f6020820190508181035f83015261189f81611866565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6118da601d836110bb565b91506118e5826118a6565b602082019050919050565b5f6020820190508181035f830152611907816118ce565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6119686025836110bb565b91506119738261190e565b604082019050919050565b5f6020820190508181035f8301526119958161195c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6119f66023836110bb565b9150611a018261199c565b604082019050919050565b5f6020820190508181035f830152611a23816119ea565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611a846026836110bb565b9150611a8f82611a2a565b604082019050919050565b5f6020820190508181035f830152611ab181611a78565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611aec6020836110bb565b9150611af782611ab8565b602082019050919050565b5f6020820190508181035f830152611b1981611ae0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b7a6021836110bb565b9150611b8582611b20565b604082019050919050565b5f6020820190508181035f830152611ba781611b6e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611c086022836110bb565b9150611c1382611bae565b604082019050919050565b5f6020820190508181035f830152611c3581611bfc565b905091905056fea2646970667358221220aba0ceeac05cbe332047d00a03e80585fb2aa4570fb210046cc2c6e861c424aa64736f6c63430008140033

Deployed Bytecode Sourcemap

20698:997:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9459:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11810:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10579:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12591:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10421:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13295:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20948:202;;;:::i;:::-;;21456:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21354:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21158:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10750:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2884:103;;;:::i;:::-;;2236:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9678:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14036:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11083:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11339:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3142:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9459:100;9513:13;9546:5;9539:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9459:100;:::o;11810:201::-;11893:4;11910:13;11926:12;:10;:12::i;:::-;11910:28;;11949:32;11958:5;11965:7;11974:6;11949:8;:32::i;:::-;11999:4;11992:11;;;11810:201;;;;:::o;10579:108::-;10640:7;10667:12;;10660:19;;10579:108;:::o;12591:295::-;12722:4;12739:15;12757:12;:10;:12::i;:::-;12739:30;;12780:38;12796:4;12802:7;12811:6;12780:15;:38::i;:::-;12829:27;12839:4;12845:2;12849:6;12829:9;:27::i;:::-;12874:4;12867:11;;;12591:295;;;;;:::o;10421:93::-;10479:5;10504:2;10497:9;;10421:93;:::o;13295:238::-;13383:4;13400:13;13416:12;:10;:12::i;:::-;13400:28;;13439:64;13448:5;13455:7;13492:10;13464:25;13474:5;13481:7;13464:9;:25::i;:::-;:38;;;;:::i;:::-;13439:8;:64::i;:::-;13521:4;13514:11;;;13295:238;;;;:::o;20948:202::-;2122:13;:11;:13::i;:::-;20998:15:::1;21016:21;20998:39;;21066:1;21056:7;:11;21048:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;21113:10;21105:28;;:37;21134:7;21105:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;20987:163;20948:202::o:0;21456:236::-;21523:1;21514:6;:10;21506:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;21612:6;21587:21;21597:10;21587:9;:21::i;:::-;:31;;21579:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;21659:25;21665:10;21677:6;21659:5;:25::i;:::-;21456:236;:::o;21354:94::-;21402:7;21429:11;;21422:18;;21354:94;:::o;21158:188::-;2122:13;:11;:13::i;:::-;21258:1:::1;21242:13;:17;21234:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;21325:13;21311:11;:27;;;;21158:188:::0;:::o;10750:127::-;10824:7;10851:9;:18;10861:7;10851:18;;;;;;;;;;;;;;;;10844:25;;10750:127;;;:::o;2884:103::-;2122:13;:11;:13::i;:::-;2949:30:::1;2976:1;2949:18;:30::i;:::-;2884:103::o:0;2236:87::-;2282:7;2309:6;;;;;;;;;;;2302:13;;2236:87;:::o;9678:104::-;9734:13;9767:7;9760:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9678:104;:::o;14036:436::-;14129:4;14146:13;14162:12;:10;:12::i;:::-;14146:28;;14185:24;14212:25;14222:5;14229:7;14212:9;:25::i;:::-;14185:52;;14276:15;14256:16;:35;;14248:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14369:60;14378:5;14385:7;14413:15;14394:16;:34;14369:8;:60::i;:::-;14460:4;14453:11;;;;14036:436;;;;:::o;11083:193::-;11162:4;11179:13;11195:12;:10;:12::i;:::-;11179:28;;11218;11228:5;11235:2;11239:6;11218:9;:28::i;:::-;11264:4;11257:11;;;11083:193;;;;:::o;11339:151::-;11428:7;11455:11;:18;11467:5;11455:18;;;;;;;;;;;;;;;:27;11474:7;11455:27;;;;;;;;;;;;;;;;11448:34;;11339:151;;;;:::o;3142:201::-;2122:13;:11;:13::i;:::-;3251:1:::1;3231:22;;:8;:22;;::::0;3223:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3307:28;3326:8;3307:18;:28::i;:::-;3142:201:::0;:::o;787:98::-;840:7;867:10;860:17;;787:98;:::o;18063:380::-;18216:1;18199:19;;:5;:19;;;18191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18297:1;18278:21;;:7;:21;;;18270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18381:6;18351:11;:18;18363:5;18351:18;;;;;;;;;;;;;;;:27;18370:7;18351:27;;;;;;;;;;;;;;;:36;;;;18419:7;18403:32;;18412:5;18403:32;;;18428:6;18403:32;;;;;;:::i;:::-;;;;;;;;18063:380;;;:::o;18734:453::-;18869:24;18896:25;18906:5;18913:7;18896:9;:25::i;:::-;18869:52;;18956:17;18936:16;:37;18932:248;;19018:6;18998:16;:26;;18990:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19102:51;19111:5;19118:7;19146:6;19127:16;:25;19102:8;:51::i;:::-;18932:248;18858:329;18734:453;;;:::o;14942:840::-;15089:1;15073:18;;:4;:18;;;15065:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15166:1;15152:16;;:2;:16;;;15144:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15221:38;15242:4;15248:2;15252:6;15221:20;:38::i;:::-;15272:19;15294:9;:15;15304:4;15294:15;;;;;;;;;;;;;;;;15272:37;;15343:6;15328:11;:21;;15320:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15460:6;15446:11;:20;15428:9;:15;15438:4;15428:15;;;;;;;;;;;;;;;:38;;;;15663:6;15646:9;:13;15656:2;15646:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15713:2;15698:26;;15707:4;15698:26;;;15717:6;15698:26;;;;;;:::i;:::-;;;;;;;;15737:37;15757:4;15763:2;15767:6;15737:19;:37::i;:::-;15054:728;14942:840;;;:::o;2401:132::-;2476:12;:10;:12::i;:::-;2465:23;;:7;:5;:7::i;:::-;:23;;;2457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2401:132::o;16950:675::-;17053:1;17034:21;;:7;:21;;;17026:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17106:49;17127:7;17144:1;17148:6;17106:20;:49::i;:::-;17168:22;17193:9;:18;17203:7;17193:18;;;;;;;;;;;;;;;;17168:43;;17248:6;17230:14;:24;;17222:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17367:6;17350:14;:23;17329:9;:18;17339:7;17329:18;;;;;;;;;;;;;;;:44;;;;17484:6;17468:12;;:22;;;;;;;;;;;17545:1;17519:37;;17528:7;17519:37;;;17549:6;17519:37;;;;;;:::i;:::-;;;;;;;;17569:48;17589:7;17606:1;17610:6;17569:19;:48::i;:::-;17015:610;16950:675;;:::o;3503:191::-;3577:16;3596:6;;;;;;;;;;;3577:25;;3622:8;3613:6;;:17;;;;;;;;;;;;;;;;;;3677:8;3646:40;;3667:8;3646:40;;;;;;;;;;;;3566:128;3503:191;:::o;19787:125::-;;;;:::o;20516:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:172::-;7390:24;7386:1;7378:6;7374:14;7367:48;7250:172;:::o;7428:366::-;7570:3;7591:67;7655:2;7650:3;7591:67;:::i;:::-;7584:74;;7667:93;7756:3;7667:93;:::i;:::-;7785:2;7780:3;7776:12;7769:19;;7428:366;;;:::o;7800:419::-;7966:4;8004:2;7993:9;7989:18;7981:26;;8053:9;8047:4;8043:20;8039:1;8028:9;8024:17;8017:47;8081:131;8207:4;8081:131;:::i;:::-;8073:139;;7800:419;;;:::o;8225:226::-;8365:34;8361:1;8353:6;8349:14;8342:58;8434:9;8429:2;8421:6;8417:15;8410:34;8225:226;:::o;8457:366::-;8599:3;8620:67;8684:2;8679:3;8620:67;:::i;:::-;8613:74;;8696:93;8785:3;8696:93;:::i;:::-;8814:2;8809:3;8805:12;8798:19;;8457:366;;;:::o;8829:419::-;8995:4;9033:2;9022:9;9018:18;9010:26;;9082:9;9076:4;9072:20;9068:1;9057:9;9053:17;9046:47;9110:131;9236:4;9110:131;:::i;:::-;9102:139;;8829:419;;;:::o;9254:175::-;9394:27;9390:1;9382:6;9378:14;9371:51;9254:175;:::o;9435:366::-;9577:3;9598:67;9662:2;9657:3;9598:67;:::i;:::-;9591:74;;9674:93;9763:3;9674:93;:::i;:::-;9792:2;9787:3;9783:12;9776:19;;9435:366;;;:::o;9807:419::-;9973:4;10011:2;10000:9;9996:18;9988:26;;10060:9;10054:4;10050:20;10046:1;10035:9;10031:17;10024:47;10088:131;10214:4;10088:131;:::i;:::-;10080:139;;9807:419;;;:::o;10232:223::-;10372:34;10368:1;10360:6;10356:14;10349:58;10441:6;10436:2;10428:6;10424:15;10417:31;10232:223;:::o;10461:366::-;10603:3;10624:67;10688:2;10683:3;10624:67;:::i;:::-;10617:74;;10700:93;10789:3;10700:93;:::i;:::-;10818:2;10813:3;10809:12;10802:19;;10461:366;;;:::o;10833:419::-;10999:4;11037:2;11026:9;11022:18;11014:26;;11086:9;11080:4;11076:20;11072:1;11061:9;11057:17;11050:47;11114:131;11240:4;11114:131;:::i;:::-;11106:139;;10833:419;;;:::o;11258:224::-;11398:34;11394:1;11386:6;11382:14;11375:58;11467:7;11462:2;11454:6;11450:15;11443:32;11258:224;:::o;11488:366::-;11630:3;11651:67;11715:2;11710:3;11651:67;:::i;:::-;11644:74;;11727:93;11816:3;11727:93;:::i;:::-;11845:2;11840:3;11836:12;11829:19;;11488:366;;;:::o;11860:419::-;12026:4;12064:2;12053:9;12049:18;12041:26;;12113:9;12107:4;12103:20;12099:1;12088:9;12084:17;12077:47;12141:131;12267:4;12141:131;:::i;:::-;12133:139;;11860:419;;;:::o;12285:225::-;12425:34;12421:1;12413:6;12409:14;12402:58;12494:8;12489:2;12481:6;12477:15;12470:33;12285:225;:::o;12516:366::-;12658:3;12679:67;12743:2;12738:3;12679:67;:::i;:::-;12672:74;;12755:93;12844:3;12755:93;:::i;:::-;12873:2;12868:3;12864:12;12857:19;;12516:366;;;:::o;12888:419::-;13054:4;13092:2;13081:9;13077:18;13069:26;;13141:9;13135:4;13131:20;13127:1;13116:9;13112:17;13105:47;13169:131;13295:4;13169:131;:::i;:::-;13161:139;;12888:419;;;:::o;13313:223::-;13453:34;13449:1;13441:6;13437:14;13430:58;13522:6;13517:2;13509:6;13505:15;13498:31;13313:223;:::o;13542:366::-;13684:3;13705:67;13769:2;13764:3;13705:67;:::i;:::-;13698:74;;13781:93;13870:3;13781:93;:::i;:::-;13899:2;13894:3;13890:12;13883:19;;13542:366;;;:::o;13914:419::-;14080:4;14118:2;14107:9;14103:18;14095:26;;14167:9;14161:4;14157:20;14153:1;14142:9;14138:17;14131:47;14195:131;14321:4;14195:131;:::i;:::-;14187:139;;13914:419;;;:::o;14339:221::-;14479:34;14475:1;14467:6;14463:14;14456:58;14548:4;14543:2;14535:6;14531:15;14524:29;14339:221;:::o;14566:366::-;14708:3;14729:67;14793:2;14788:3;14729:67;:::i;:::-;14722:74;;14805:93;14894:3;14805:93;:::i;:::-;14923:2;14918:3;14914:12;14907:19;;14566:366;;;:::o;14938:419::-;15104:4;15142:2;15131:9;15127:18;15119:26;;15191:9;15185:4;15181:20;15177:1;15166:9;15162:17;15155:47;15219:131;15345:4;15219:131;:::i;:::-;15211:139;;14938:419;;;:::o;15363:179::-;15503:31;15499:1;15491:6;15487:14;15480:55;15363:179;:::o;15548:366::-;15690:3;15711:67;15775:2;15770:3;15711:67;:::i;:::-;15704:74;;15787:93;15876:3;15787:93;:::i;:::-;15905:2;15900:3;15896:12;15889:19;;15548:366;;;:::o;15920:419::-;16086:4;16124:2;16113:9;16109:18;16101:26;;16173:9;16167:4;16163:20;16159:1;16148:9;16144:17;16137:47;16201:131;16327:4;16201:131;:::i;:::-;16193:139;;15920:419;;;:::o;16345:224::-;16485:34;16481:1;16473:6;16469:14;16462:58;16554:7;16549:2;16541:6;16537:15;16530:32;16345:224;:::o;16575:366::-;16717:3;16738:67;16802:2;16797:3;16738:67;:::i;:::-;16731:74;;16814:93;16903:3;16814:93;:::i;:::-;16932:2;16927:3;16923:12;16916:19;;16575:366;;;:::o;16947:419::-;17113:4;17151:2;17140:9;17136:18;17128:26;;17200:9;17194:4;17190:20;17186:1;17175:9;17171:17;17164:47;17228:131;17354:4;17228:131;:::i;:::-;17220:139;;16947:419;;;:::o;17372:222::-;17512:34;17508:1;17500:6;17496:14;17489:58;17581:5;17576:2;17568:6;17564:15;17557:30;17372:222;:::o;17600:366::-;17742:3;17763:67;17827:2;17822:3;17763:67;:::i;:::-;17756:74;;17839:93;17928:3;17839:93;:::i;:::-;17957:2;17952:3;17948:12;17941:19;;17600:366;;;:::o;17972:419::-;18138:4;18176:2;18165:9;18161:18;18153:26;;18225:9;18219:4;18215:20;18211:1;18200:9;18196:17;18189:47;18253:131;18379:4;18253:131;:::i;:::-;18245:139;;17972:419;;;:::o;18397:225::-;18537:34;18533:1;18525:6;18521:14;18514:58;18606:8;18601:2;18593:6;18589:15;18582:33;18397:225;:::o;18628:366::-;18770:3;18791:67;18855:2;18850:3;18791:67;:::i;:::-;18784:74;;18867:93;18956:3;18867:93;:::i;:::-;18985:2;18980:3;18976:12;18969:19;;18628:366;;;:::o;19000:419::-;19166:4;19204:2;19193:9;19189:18;19181:26;;19253:9;19247:4;19243:20;19239:1;19228:9;19224:17;19217:47;19281:131;19407:4;19281:131;:::i;:::-;19273:139;;19000:419;;;:::o;19425:182::-;19565:34;19561:1;19553:6;19549:14;19542:58;19425:182;:::o;19613:366::-;19755:3;19776:67;19840:2;19835:3;19776:67;:::i;:::-;19769:74;;19852:93;19941:3;19852:93;:::i;:::-;19970:2;19965:3;19961:12;19954:19;;19613:366;;;:::o;19985:419::-;20151:4;20189:2;20178:9;20174:18;20166:26;;20238:9;20232:4;20228:20;20224:1;20213:9;20209:17;20202:47;20266:131;20392:4;20266:131;:::i;:::-;20258:139;;19985:419;;;:::o;20410:220::-;20550:34;20546:1;20538:6;20534:14;20527:58;20619:3;20614:2;20606:6;20602:15;20595:28;20410:220;:::o;20636:366::-;20778:3;20799:67;20863:2;20858:3;20799:67;:::i;:::-;20792:74;;20875:93;20964:3;20875:93;:::i;:::-;20993:2;20988:3;20984:12;20977:19;;20636:366;;;:::o;21008:419::-;21174:4;21212:2;21201:9;21197:18;21189:26;;21261:9;21255:4;21251:20;21247:1;21236:9;21232:17;21225:47;21289:131;21415:4;21289:131;:::i;:::-;21281:139;;21008:419;;;:::o;21433:221::-;21573:34;21569:1;21561:6;21557:14;21550:58;21642:4;21637:2;21629:6;21625:15;21618:29;21433:221;:::o;21660:366::-;21802:3;21823:67;21887:2;21882:3;21823:67;:::i;:::-;21816:74;;21899:93;21988:3;21899:93;:::i;:::-;22017:2;22012:3;22008:12;22001:19;;21660:366;;;:::o;22032:419::-;22198:4;22236:2;22225:9;22221:18;22213:26;;22285:9;22279:4;22275:20;22271:1;22260:9;22256:17;22249:47;22313:131;22439:4;22313:131;:::i;:::-;22305:139;;22032:419;;;:::o

Swarm Source

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