ETH Price: $2,043.24 (+6.73%)
 

Overview

Max Total Supply

74 NaN

Holders

15

Transfers

-
0

Market

Onchain Market Cap

-

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

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 6: NotAnNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "./ERC20.sol";
import "./Ownable.sol";

contract NotAnNFT is ERC20, Ownable {
    constructor() ERC20("Not an NFT", "NaN") {}

    uint256 public maxSupply = 10000 ether;
    uint256 public mintFee = 0.01 ether;
    uint256 public maxPerWallet = 5;
    mapping(address => uint) public addressMintedBalance;


    function mint(uint256 quantity) external payable {
        require(addressMintedBalance[msg.sender] + quantity <= maxPerWallet, "You can't mint this many.");
        require(totalSupply() + quantity <= maxSupply, "Cannot exceed max supply");
        require(tx.origin == msg.sender, "No contracts!");
        require(msg.value >= mintFee * quantity, "Amount of Ether sent too small");
        _mint(msg.sender, quantity * 1 ether);
        addressMintedBalance[msg.sender] += quantity;
    }

    function withdraw() external {
        (bool success, ) = owner().call{value: address(this).balance}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}

File 1 of 6: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 2 of 6: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 3 of 6: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 4 of 6: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";

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

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

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

File 6 of 6: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

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":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"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":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405269021e19e0c9bab2400000600655662386f26fc1000060075560056008553480156200002f57600080fd5b506040518060400160405280600a81526020017f4e6f7420616e204e4654000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e614e00000000000000000000000000000000000000000000000000000000008152508160039081620000ad919062000430565b508060049081620000bf919062000430565b505050620000e2620000d6620000e860201b60201c565b620000f060201b60201c565b62000517565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200023857607f821691505b6020821081036200024e576200024d620001f0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002b87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000279565b620002c4868362000279565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003116200030b6200030584620002dc565b620002e6565b620002dc565b9050919050565b6000819050919050565b6200032d83620002f0565b620003456200033c8262000318565b84845462000286565b825550505050565b600090565b6200035c6200034d565b6200036981848462000322565b505050565b5b8181101562000391576200038560008262000352565b6001810190506200036f565b5050565b601f821115620003e057620003aa8162000254565b620003b58462000269565b81016020851015620003c5578190505b620003dd620003d48562000269565b8301826200036e565b50505b505050565b600082821c905092915050565b60006200040560001984600802620003e5565b1980831691505092915050565b6000620004208383620003f2565b9150826002028217905092915050565b6200043b82620001b6565b67ffffffffffffffff811115620004575762000456620001c1565b5b6200046382546200021f565b6200047082828562000395565b600060209050601f831160018114620004a8576000841562000493578287015190505b6200049f858262000412565b8655506200050f565b601f198416620004b88662000254565b60005b82811015620004e257848901518255600182019150602085019450602081019050620004bb565b86831015620005025784890151620004fe601f891682620003f2565b8355505b6001600288020188555050505b505050505050565b611f7080620005276000396000f3fe60806040526004361061011f5760003560e01c806370a08231116100a0578063a457c2d711610064578063a457c2d7146103cc578063a9059cbb14610409578063d5abeb0114610446578063dd62ed3e14610471578063f2fde38b146104ae5761011f565b806370a0823114610306578063715018a6146103435780638da5cb5b1461035a57806395d89b4114610385578063a0712d68146103b05761011f565b806323b872dd116100e757806323b872dd1461021f578063313ce5671461025c57806339509351146102875780633ccfd60b146102c4578063453c2310146102db5761011f565b806306fdde0314610124578063095ea7b31461014f57806313966db51461018c57806318160ddd146101b757806318cae269146101e2575b600080fd5b34801561013057600080fd5b506101396104d7565b60405161014691906113c2565b60405180910390f35b34801561015b57600080fd5b506101766004803603810190610171919061147d565b610569565b60405161018391906114d8565b60405180910390f35b34801561019857600080fd5b506101a161058c565b6040516101ae9190611502565b60405180910390f35b3480156101c357600080fd5b506101cc610592565b6040516101d99190611502565b60405180910390f35b3480156101ee57600080fd5b506102096004803603810190610204919061151d565b61059c565b6040516102169190611502565b60405180910390f35b34801561022b57600080fd5b506102466004803603810190610241919061154a565b6105b4565b60405161025391906114d8565b60405180910390f35b34801561026857600080fd5b506102716105e3565b60405161027e91906115b9565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a9919061147d565b6105ec565b6040516102bb91906114d8565b60405180910390f35b3480156102d057600080fd5b506102d9610623565b005b3480156102e757600080fd5b506102f06106d9565b6040516102fd9190611502565b60405180910390f35b34801561031257600080fd5b5061032d6004803603810190610328919061151d565b6106df565b60405161033a9190611502565b60405180910390f35b34801561034f57600080fd5b50610358610727565b005b34801561036657600080fd5b5061036f61073b565b60405161037c91906115e3565b60405180910390f35b34801561039157600080fd5b5061039a610765565b6040516103a791906113c2565b60405180910390f35b6103ca60048036038101906103c591906115fe565b6107f7565b005b3480156103d857600080fd5b506103f360048036038101906103ee919061147d565b610a11565b60405161040091906114d8565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b919061147d565b610a88565b60405161043d91906114d8565b60405180910390f35b34801561045257600080fd5b5061045b610aab565b6040516104689190611502565b60405180910390f35b34801561047d57600080fd5b506104986004803603810190610493919061162b565b610ab1565b6040516104a59190611502565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d0919061151d565b610b38565b005b6060600380546104e69061169a565b80601f01602080910402602001604051908101604052809291908181526020018280546105129061169a565b801561055f5780601f106105345761010080835404028352916020019161055f565b820191906000526020600020905b81548152906001019060200180831161054257829003601f168201915b5050505050905090565b600080610574610bbb565b9050610581818585610bc3565b600191505092915050565b60075481565b6000600254905090565b60096020528060005260406000206000915090505481565b6000806105bf610bbb565b90506105cc858285610d8c565b6105d7858585610e18565b60019150509392505050565b60006012905090565b6000806105f7610bbb565b90506106188185856106098589610ab1565b61061391906116fa565b610bc3565b600191505092915050565b600061062d61073b565b73ffffffffffffffffffffffffffffffffffffffff16476040516106509061175f565b60006040518083038185875af1925050503d806000811461068d576040519150601f19603f3d011682016040523d82523d6000602084013e610692565b606091505b50509050806106d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cd906117e6565b60405180910390fd5b50565b60085481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61072f61108e565b610739600061110c565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107749061169a565b80601f01602080910402602001604051908101604052809291908181526020018280546107a09061169a565b80156107ed5780601f106107c2576101008083540402835291602001916107ed565b820191906000526020600020905b8154815290600101906020018083116107d057829003601f168201915b5050505050905090565b60085481600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461084591906116fa565b1115610886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087d90611852565b60405180910390fd5b60065481610892610592565b61089c91906116fa565b11156108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d4906118be565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461094b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109429061192a565b60405180910390fd5b80600754610959919061194a565b34101561099b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610992906119d8565b60405180910390fd5b6109b833670de0b6b3a7640000836109b3919061194a565b6111d2565b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a0791906116fa565b9250508190555050565b600080610a1c610bbb565b90506000610a2a8286610ab1565b905083811015610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690611a6a565b60405180910390fd5b610a7c8286868403610bc3565b60019250505092915050565b600080610a93610bbb565b9050610aa0818585610e18565b600191505092915050565b60065481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b4061108e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690611afc565b60405180910390fd5b610bb88161110c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990611b8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890611c20565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d7f9190611502565b60405180910390a3505050565b6000610d988484610ab1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e125781811015610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90611c8c565b60405180910390fd5b610e118484848403610bc3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611d1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90611db0565b60405180910390fd5b610f01838383611328565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90611e42565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110759190611502565b60405180910390a361108884848461132d565b50505050565b611096610bbb565b73ffffffffffffffffffffffffffffffffffffffff166110b461073b565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190611eae565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123890611f1a565b60405180910390fd5b61124d60008383611328565b806002600082825461125f91906116fa565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113109190611502565b60405180910390a36113246000838361132d565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561136c578082015181840152602081019050611351565b60008484015250505050565b6000601f19601f8301169050919050565b600061139482611332565b61139e818561133d565b93506113ae81856020860161134e565b6113b781611378565b840191505092915050565b600060208201905081810360008301526113dc8184611389565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611414826113e9565b9050919050565b61142481611409565b811461142f57600080fd5b50565b6000813590506114418161141b565b92915050565b6000819050919050565b61145a81611447565b811461146557600080fd5b50565b60008135905061147781611451565b92915050565b60008060408385031215611494576114936113e4565b5b60006114a285828601611432565b92505060206114b385828601611468565b9150509250929050565b60008115159050919050565b6114d2816114bd565b82525050565b60006020820190506114ed60008301846114c9565b92915050565b6114fc81611447565b82525050565b600060208201905061151760008301846114f3565b92915050565b600060208284031215611533576115326113e4565b5b600061154184828501611432565b91505092915050565b600080600060608486031215611563576115626113e4565b5b600061157186828701611432565b935050602061158286828701611432565b925050604061159386828701611468565b9150509250925092565b600060ff82169050919050565b6115b38161159d565b82525050565b60006020820190506115ce60008301846115aa565b92915050565b6115dd81611409565b82525050565b60006020820190506115f860008301846115d4565b92915050565b600060208284031215611614576116136113e4565b5b600061162284828501611468565b91505092915050565b60008060408385031215611642576116416113e4565b5b600061165085828601611432565b925050602061166185828601611432565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806116b257607f821691505b6020821081036116c5576116c461166b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061170582611447565b915061171083611447565b9250828201905080821115611728576117276116cb565b5b92915050565b600081905092915050565b50565b600061174960008361172e565b915061175482611739565b600082019050919050565b600061176a8261173c565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006117d0603a8361133d565b91506117db82611774565b604082019050919050565b600060208201905081810360008301526117ff816117c3565b9050919050565b7f596f752063616e2774206d696e742074686973206d616e792e00000000000000600082015250565b600061183c60198361133d565b915061184782611806565b602082019050919050565b6000602082019050818103600083015261186b8161182f565b9050919050565b7f43616e6e6f7420657863656564206d617820737570706c790000000000000000600082015250565b60006118a860188361133d565b91506118b382611872565b602082019050919050565b600060208201905081810360008301526118d78161189b565b9050919050565b7f4e6f20636f6e7472616374732100000000000000000000000000000000000000600082015250565b6000611914600d8361133d565b915061191f826118de565b602082019050919050565b6000602082019050818103600083015261194381611907565b9050919050565b600061195582611447565b915061196083611447565b925082820261196e81611447565b91508282048414831517611985576119846116cb565b5b5092915050565b7f416d6f756e74206f662045746865722073656e7420746f6f20736d616c6c0000600082015250565b60006119c2601e8361133d565b91506119cd8261198c565b602082019050919050565b600060208201905081810360008301526119f1816119b5565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a5460258361133d565b9150611a5f826119f8565b604082019050919050565b60006020820190508181036000830152611a8381611a47565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ae660268361133d565b9150611af182611a8a565b604082019050919050565b60006020820190508181036000830152611b1581611ad9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b7860248361133d565b9150611b8382611b1c565b604082019050919050565b60006020820190508181036000830152611ba781611b6b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c0a60228361133d565b9150611c1582611bae565b604082019050919050565b60006020820190508181036000830152611c3981611bfd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c76601d8361133d565b9150611c8182611c40565b602082019050919050565b60006020820190508181036000830152611ca581611c69565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d0860258361133d565b9150611d1382611cac565b604082019050919050565b60006020820190508181036000830152611d3781611cfb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d9a60238361133d565b9150611da582611d3e565b604082019050919050565b60006020820190508181036000830152611dc981611d8d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e2c60268361133d565b9150611e3782611dd0565b604082019050919050565b60006020820190508181036000830152611e5b81611e1f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e9860208361133d565b9150611ea382611e62565b602082019050919050565b60006020820190508181036000830152611ec781611e8b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611f04601f8361133d565b9150611f0f82611ece565b602082019050919050565b60006020820190508181036000830152611f3381611ef7565b905091905056fea2646970667358221220114bdb7f5cce86321ca20e788f59499946683964ecfa89caaee6eecd38f4ffd164736f6c63430008120033

Deployed Bytecode

0x60806040526004361061011f5760003560e01c806370a08231116100a0578063a457c2d711610064578063a457c2d7146103cc578063a9059cbb14610409578063d5abeb0114610446578063dd62ed3e14610471578063f2fde38b146104ae5761011f565b806370a0823114610306578063715018a6146103435780638da5cb5b1461035a57806395d89b4114610385578063a0712d68146103b05761011f565b806323b872dd116100e757806323b872dd1461021f578063313ce5671461025c57806339509351146102875780633ccfd60b146102c4578063453c2310146102db5761011f565b806306fdde0314610124578063095ea7b31461014f57806313966db51461018c57806318160ddd146101b757806318cae269146101e2575b600080fd5b34801561013057600080fd5b506101396104d7565b60405161014691906113c2565b60405180910390f35b34801561015b57600080fd5b506101766004803603810190610171919061147d565b610569565b60405161018391906114d8565b60405180910390f35b34801561019857600080fd5b506101a161058c565b6040516101ae9190611502565b60405180910390f35b3480156101c357600080fd5b506101cc610592565b6040516101d99190611502565b60405180910390f35b3480156101ee57600080fd5b506102096004803603810190610204919061151d565b61059c565b6040516102169190611502565b60405180910390f35b34801561022b57600080fd5b506102466004803603810190610241919061154a565b6105b4565b60405161025391906114d8565b60405180910390f35b34801561026857600080fd5b506102716105e3565b60405161027e91906115b9565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a9919061147d565b6105ec565b6040516102bb91906114d8565b60405180910390f35b3480156102d057600080fd5b506102d9610623565b005b3480156102e757600080fd5b506102f06106d9565b6040516102fd9190611502565b60405180910390f35b34801561031257600080fd5b5061032d6004803603810190610328919061151d565b6106df565b60405161033a9190611502565b60405180910390f35b34801561034f57600080fd5b50610358610727565b005b34801561036657600080fd5b5061036f61073b565b60405161037c91906115e3565b60405180910390f35b34801561039157600080fd5b5061039a610765565b6040516103a791906113c2565b60405180910390f35b6103ca60048036038101906103c591906115fe565b6107f7565b005b3480156103d857600080fd5b506103f360048036038101906103ee919061147d565b610a11565b60405161040091906114d8565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b919061147d565b610a88565b60405161043d91906114d8565b60405180910390f35b34801561045257600080fd5b5061045b610aab565b6040516104689190611502565b60405180910390f35b34801561047d57600080fd5b506104986004803603810190610493919061162b565b610ab1565b6040516104a59190611502565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d0919061151d565b610b38565b005b6060600380546104e69061169a565b80601f01602080910402602001604051908101604052809291908181526020018280546105129061169a565b801561055f5780601f106105345761010080835404028352916020019161055f565b820191906000526020600020905b81548152906001019060200180831161054257829003601f168201915b5050505050905090565b600080610574610bbb565b9050610581818585610bc3565b600191505092915050565b60075481565b6000600254905090565b60096020528060005260406000206000915090505481565b6000806105bf610bbb565b90506105cc858285610d8c565b6105d7858585610e18565b60019150509392505050565b60006012905090565b6000806105f7610bbb565b90506106188185856106098589610ab1565b61061391906116fa565b610bc3565b600191505092915050565b600061062d61073b565b73ffffffffffffffffffffffffffffffffffffffff16476040516106509061175f565b60006040518083038185875af1925050503d806000811461068d576040519150601f19603f3d011682016040523d82523d6000602084013e610692565b606091505b50509050806106d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cd906117e6565b60405180910390fd5b50565b60085481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61072f61108e565b610739600061110c565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107749061169a565b80601f01602080910402602001604051908101604052809291908181526020018280546107a09061169a565b80156107ed5780601f106107c2576101008083540402835291602001916107ed565b820191906000526020600020905b8154815290600101906020018083116107d057829003601f168201915b5050505050905090565b60085481600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461084591906116fa565b1115610886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087d90611852565b60405180910390fd5b60065481610892610592565b61089c91906116fa565b11156108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d4906118be565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461094b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109429061192a565b60405180910390fd5b80600754610959919061194a565b34101561099b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610992906119d8565b60405180910390fd5b6109b833670de0b6b3a7640000836109b3919061194a565b6111d2565b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a0791906116fa565b9250508190555050565b600080610a1c610bbb565b90506000610a2a8286610ab1565b905083811015610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690611a6a565b60405180910390fd5b610a7c8286868403610bc3565b60019250505092915050565b600080610a93610bbb565b9050610aa0818585610e18565b600191505092915050565b60065481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b4061108e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690611afc565b60405180910390fd5b610bb88161110c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990611b8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890611c20565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d7f9190611502565b60405180910390a3505050565b6000610d988484610ab1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e125781811015610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90611c8c565b60405180910390fd5b610e118484848403610bc3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90611d1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90611db0565b60405180910390fd5b610f01838383611328565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90611e42565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110759190611502565b60405180910390a361108884848461132d565b50505050565b611096610bbb565b73ffffffffffffffffffffffffffffffffffffffff166110b461073b565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190611eae565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123890611f1a565b60405180910390fd5b61124d60008383611328565b806002600082825461125f91906116fa565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113109190611502565b60405180910390a36113246000838361132d565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561136c578082015181840152602081019050611351565b60008484015250505050565b6000601f19601f8301169050919050565b600061139482611332565b61139e818561133d565b93506113ae81856020860161134e565b6113b781611378565b840191505092915050565b600060208201905081810360008301526113dc8184611389565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611414826113e9565b9050919050565b61142481611409565b811461142f57600080fd5b50565b6000813590506114418161141b565b92915050565b6000819050919050565b61145a81611447565b811461146557600080fd5b50565b60008135905061147781611451565b92915050565b60008060408385031215611494576114936113e4565b5b60006114a285828601611432565b92505060206114b385828601611468565b9150509250929050565b60008115159050919050565b6114d2816114bd565b82525050565b60006020820190506114ed60008301846114c9565b92915050565b6114fc81611447565b82525050565b600060208201905061151760008301846114f3565b92915050565b600060208284031215611533576115326113e4565b5b600061154184828501611432565b91505092915050565b600080600060608486031215611563576115626113e4565b5b600061157186828701611432565b935050602061158286828701611432565b925050604061159386828701611468565b9150509250925092565b600060ff82169050919050565b6115b38161159d565b82525050565b60006020820190506115ce60008301846115aa565b92915050565b6115dd81611409565b82525050565b60006020820190506115f860008301846115d4565b92915050565b600060208284031215611614576116136113e4565b5b600061162284828501611468565b91505092915050565b60008060408385031215611642576116416113e4565b5b600061165085828601611432565b925050602061166185828601611432565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806116b257607f821691505b6020821081036116c5576116c461166b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061170582611447565b915061171083611447565b9250828201905080821115611728576117276116cb565b5b92915050565b600081905092915050565b50565b600061174960008361172e565b915061175482611739565b600082019050919050565b600061176a8261173c565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006117d0603a8361133d565b91506117db82611774565b604082019050919050565b600060208201905081810360008301526117ff816117c3565b9050919050565b7f596f752063616e2774206d696e742074686973206d616e792e00000000000000600082015250565b600061183c60198361133d565b915061184782611806565b602082019050919050565b6000602082019050818103600083015261186b8161182f565b9050919050565b7f43616e6e6f7420657863656564206d617820737570706c790000000000000000600082015250565b60006118a860188361133d565b91506118b382611872565b602082019050919050565b600060208201905081810360008301526118d78161189b565b9050919050565b7f4e6f20636f6e7472616374732100000000000000000000000000000000000000600082015250565b6000611914600d8361133d565b915061191f826118de565b602082019050919050565b6000602082019050818103600083015261194381611907565b9050919050565b600061195582611447565b915061196083611447565b925082820261196e81611447565b91508282048414831517611985576119846116cb565b5b5092915050565b7f416d6f756e74206f662045746865722073656e7420746f6f20736d616c6c0000600082015250565b60006119c2601e8361133d565b91506119cd8261198c565b602082019050919050565b600060208201905081810360008301526119f1816119b5565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a5460258361133d565b9150611a5f826119f8565b604082019050919050565b60006020820190508181036000830152611a8381611a47565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ae660268361133d565b9150611af182611a8a565b604082019050919050565b60006020820190508181036000830152611b1581611ad9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b7860248361133d565b9150611b8382611b1c565b604082019050919050565b60006020820190508181036000830152611ba781611b6b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c0a60228361133d565b9150611c1582611bae565b604082019050919050565b60006020820190508181036000830152611c3981611bfd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c76601d8361133d565b9150611c8182611c40565b602082019050919050565b60006020820190508181036000830152611ca581611c69565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d0860258361133d565b9150611d1382611cac565b604082019050919050565b60006020820190508181036000830152611d3781611cfb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d9a60238361133d565b9150611da582611d3e565b604082019050919050565b60006020820190508181036000830152611dc981611d8d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e2c60268361133d565b9150611e3782611dd0565b604082019050919050565b60006020820190508181036000830152611e5b81611e1f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e9860208361133d565b9150611ea382611e62565b602082019050919050565b60006020820190508181036000830152611ec781611e8b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611f04601f8361133d565b9150611f0f82611ece565b602082019050919050565b60006020820190508181036000830152611f3381611ef7565b905091905056fea2646970667358221220114bdb7f5cce86321ca20e788f59499946683964ecfa89caaee6eecd38f4ffd164736f6c63430008120033

Deployed Bytecode Sourcemap

110:993:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2198:100:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4558:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;249:35:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3327:108:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;329:52:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5339:261:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3169:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6009:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;898:202:4;;;;;;;;;;;;;:::i;:::-;;291:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3498:127:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1877:103:5;;;;;;;;;;;;;:::i;:::-;;1236:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2417:104:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;392:498:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6750:436:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3831:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;204:38:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4087:151:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2135:201:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2198:100:1;2252:13;2285:5;2278:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2198:100;:::o;4558:201::-;4641:4;4658:13;4674:12;:10;:12::i;:::-;4658:28;;4697:32;4706:5;4713:7;4722:6;4697:8;:32::i;:::-;4747:4;4740:11;;;4558:201;;;;:::o;249:35:4:-;;;;:::o;3327:108:1:-;3388:7;3415:12;;3408:19;;3327:108;:::o;329:52:4:-;;;;;;;;;;;;;;;;;:::o;5339:261:1:-;5436:4;5453:15;5471:12;:10;:12::i;:::-;5453:30;;5494:38;5510:4;5516:7;5525:6;5494:15;:38::i;:::-;5543:27;5553:4;5559:2;5563:6;5543:9;:27::i;:::-;5588:4;5581:11;;;5339:261;;;;;:::o;3169:93::-;3227:5;3252:2;3245:9;;3169:93;:::o;6009:238::-;6097:4;6114:13;6130:12;:10;:12::i;:::-;6114:28;;6153:64;6162:5;6169:7;6206:10;6178:25;6188:5;6195:7;6178:9;:25::i;:::-;:38;;;;:::i;:::-;6153:8;:64::i;:::-;6235:4;6228:11;;;6009:238;;;;:::o;898:202:4:-;939:12;957:7;:5;:7::i;:::-;:12;;977:21;957:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;938:65;;;1022:7;1014:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;927:173;898:202::o;291:31::-;;;;:::o;3498:127:1:-;3572:7;3599:9;:18;3609:7;3599:18;;;;;;;;;;;;;;;;3592:25;;3498:127;;;:::o;1877:103:5:-;1122:13;:11;:13::i;:::-;1942:30:::1;1969:1;1942:18;:30::i;:::-;1877:103::o:0;1236:87::-;1282:7;1309:6;;;;;;;;;;;1302:13;;1236:87;:::o;2417:104:1:-;2473:13;2506:7;2499:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2417:104;:::o;392:498:4:-;507:12;;495:8;460:20;:32;481:10;460:32;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:59;;452:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;596:9;;584:8;568:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;560:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;666:10;653:23;;:9;:23;;;645:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;736:8;726:7;;:18;;;;:::i;:::-;713:9;:31;;705:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;790:37;796:10;819:7;808:8;:18;;;;:::i;:::-;790:5;:37::i;:::-;874:8;838:20;:32;859:10;838:32;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;392:498;:::o;6750:436:1:-;6843:4;6860:13;6876:12;:10;:12::i;:::-;6860:28;;6899:24;6926:25;6936:5;6943:7;6926:9;:25::i;:::-;6899:52;;6990:15;6970:16;:35;;6962:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7083:60;7092:5;7099:7;7127:15;7108:16;:34;7083:8;:60::i;:::-;7174:4;7167:11;;;;6750:436;;;;:::o;3831:193::-;3910:4;3927:13;3943:12;:10;:12::i;:::-;3927:28;;3966;3976:5;3983:2;3987:6;3966:9;:28::i;:::-;4012:4;4005:11;;;3831:193;;;;:::o;204:38:4:-;;;;:::o;4087:151:1:-;4176:7;4203:11;:18;4215:5;4203:18;;;;;;;;;;;;;;;:27;4222:7;4203:27;;;;;;;;;;;;;;;;4196:34;;4087:151;;;;:::o;2135:201:5:-;1122:13;:11;:13::i;:::-;2244:1:::1;2224:22;;:8;:22;;::::0;2216:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2300:28;2319:8;2300:18;:28::i;:::-;2135:201:::0;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;10743:346:1:-;10862:1;10845:19;;:5;:19;;;10837:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10943:1;10924:21;;:7;:21;;;10916:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11027:6;10997:11;:18;11009:5;10997:18;;;;;;;;;;;;;;;:27;11016:7;10997:27;;;;;;;;;;;;;;;:36;;;;11065:7;11049:32;;11058:5;11049:32;;;11074:6;11049:32;;;;;;:::i;:::-;;;;;;;;10743:346;;;:::o;11380:419::-;11481:24;11508:25;11518:5;11525:7;11508:9;:25::i;:::-;11481:52;;11568:17;11548:16;:37;11544:248;;11630:6;11610:16;:26;;11602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11714:51;11723:5;11730:7;11758:6;11739:16;:25;11714:8;:51::i;:::-;11544:248;11470:329;11380:419;;;:::o;7656:806::-;7769:1;7753:18;;:4;:18;;;7745:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7846:1;7832:16;;:2;:16;;;7824:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7901:38;7922:4;7928:2;7932:6;7901:20;:38::i;:::-;7952:19;7974:9;:15;7984:4;7974:15;;;;;;;;;;;;;;;;7952:37;;8023:6;8008:11;:21;;8000:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8140:6;8126:11;:20;8108:9;:15;8118:4;8108:15;;;;;;;;;;;;;;;:38;;;;8343:6;8326:9;:13;8336:2;8326:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8393:2;8378:26;;8387:4;8378:26;;;8397:6;8378:26;;;;;;:::i;:::-;;;;;;;;8417:37;8437:4;8443:2;8447:6;8417:19;:37::i;:::-;7734:728;7656:806;;;:::o;1401:132:5:-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1401:132::o;2496:191::-;2570:16;2589:6;;;;;;;;;;;2570:25;;2615:8;2606:6;;:17;;;;;;;;;;;;;;;;;;2670:8;2639:40;;2660:8;2639:40;;;;;;;;;;;;2559:128;2496:191;:::o;8749:548:1:-;8852:1;8833:21;;:7;:21;;;8825:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8903:49;8932:1;8936:7;8945:6;8903:20;:49::i;:::-;8981:6;8965:12;;:22;;;;;;;:::i;:::-;;;;;;;;9158:6;9136:9;:18;9146:7;9136:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;9212:7;9191:37;;9208:1;9191:37;;;9221:6;9191:37;;;;;;:::i;:::-;;;;;;;;9241:48;9269:1;9273:7;9282:6;9241:19;:48::i;:::-;8749:548;;:::o;12399:91::-;;;;:::o;13094:90::-;;;;:::o;7:99:6:-;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:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:329::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::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:147::-;7351:11;7388:3;7373:18;;7250:147;;;;:::o;7403:114::-;;:::o;7523:398::-;7682:3;7703:83;7784:1;7779:3;7703:83;:::i;:::-;7696:90;;7795:93;7884:3;7795:93;:::i;:::-;7913:1;7908:3;7904:11;7897:18;;7523:398;;;:::o;7927:379::-;8111:3;8133:147;8276:3;8133:147;:::i;:::-;8126:154;;8297:3;8290:10;;7927:379;;;:::o;8312:245::-;8452:34;8448:1;8440:6;8436:14;8429:58;8521:28;8516:2;8508:6;8504:15;8497:53;8312:245;:::o;8563:366::-;8705:3;8726:67;8790:2;8785:3;8726:67;:::i;:::-;8719:74;;8802:93;8891:3;8802:93;:::i;:::-;8920:2;8915:3;8911:12;8904:19;;8563:366;;;:::o;8935:419::-;9101:4;9139:2;9128:9;9124:18;9116:26;;9188:9;9182:4;9178:20;9174:1;9163:9;9159:17;9152:47;9216:131;9342:4;9216:131;:::i;:::-;9208:139;;8935:419;;;:::o;9360:175::-;9500:27;9496:1;9488:6;9484:14;9477:51;9360:175;:::o;9541:366::-;9683:3;9704:67;9768:2;9763:3;9704:67;:::i;:::-;9697:74;;9780:93;9869:3;9780:93;:::i;:::-;9898:2;9893:3;9889:12;9882:19;;9541:366;;;:::o;9913:419::-;10079:4;10117:2;10106:9;10102:18;10094:26;;10166:9;10160:4;10156:20;10152:1;10141:9;10137:17;10130:47;10194:131;10320:4;10194:131;:::i;:::-;10186:139;;9913:419;;;:::o;10338:174::-;10478:26;10474:1;10466:6;10462:14;10455:50;10338:174;:::o;10518:366::-;10660:3;10681:67;10745:2;10740:3;10681:67;:::i;:::-;10674:74;;10757:93;10846:3;10757:93;:::i;:::-;10875:2;10870:3;10866:12;10859:19;;10518:366;;;:::o;10890:419::-;11056:4;11094:2;11083:9;11079:18;11071:26;;11143:9;11137:4;11133:20;11129:1;11118:9;11114:17;11107:47;11171:131;11297:4;11171:131;:::i;:::-;11163:139;;10890:419;;;:::o;11315:163::-;11455:15;11451:1;11443:6;11439:14;11432:39;11315:163;:::o;11484:366::-;11626:3;11647:67;11711:2;11706:3;11647:67;:::i;:::-;11640:74;;11723:93;11812:3;11723:93;:::i;:::-;11841:2;11836:3;11832:12;11825:19;;11484:366;;;:::o;11856:419::-;12022:4;12060:2;12049:9;12045:18;12037:26;;12109:9;12103:4;12099:20;12095:1;12084:9;12080:17;12073:47;12137:131;12263:4;12137:131;:::i;:::-;12129:139;;11856:419;;;:::o;12281:410::-;12321:7;12344:20;12362:1;12344:20;:::i;:::-;12339:25;;12378:20;12396:1;12378:20;:::i;:::-;12373:25;;12433:1;12430;12426:9;12455:30;12473:11;12455:30;:::i;:::-;12444:41;;12634:1;12625:7;12621:15;12618:1;12615:22;12595:1;12588:9;12568:83;12545:139;;12664:18;;:::i;:::-;12545:139;12329:362;12281:410;;;;:::o;12697:180::-;12837:32;12833:1;12825:6;12821:14;12814:56;12697:180;:::o;12883:366::-;13025:3;13046:67;13110:2;13105:3;13046:67;:::i;:::-;13039:74;;13122:93;13211:3;13122:93;:::i;:::-;13240:2;13235:3;13231:12;13224:19;;12883:366;;;:::o;13255:419::-;13421:4;13459:2;13448:9;13444:18;13436:26;;13508:9;13502:4;13498:20;13494:1;13483:9;13479:17;13472:47;13536:131;13662:4;13536:131;:::i;:::-;13528:139;;13255:419;;;:::o;13680:224::-;13820:34;13816:1;13808:6;13804:14;13797:58;13889:7;13884:2;13876:6;13872:15;13865:32;13680:224;:::o;13910:366::-;14052:3;14073:67;14137:2;14132:3;14073:67;:::i;:::-;14066:74;;14149:93;14238:3;14149:93;:::i;:::-;14267:2;14262:3;14258:12;14251:19;;13910:366;;;:::o;14282:419::-;14448:4;14486:2;14475:9;14471:18;14463:26;;14535:9;14529:4;14525:20;14521:1;14510:9;14506:17;14499:47;14563:131;14689:4;14563:131;:::i;:::-;14555:139;;14282:419;;;:::o;14707:225::-;14847:34;14843:1;14835:6;14831:14;14824:58;14916:8;14911:2;14903:6;14899:15;14892:33;14707:225;:::o;14938:366::-;15080:3;15101:67;15165:2;15160:3;15101:67;:::i;:::-;15094:74;;15177:93;15266:3;15177:93;:::i;:::-;15295:2;15290:3;15286:12;15279:19;;14938:366;;;:::o;15310:419::-;15476:4;15514:2;15503:9;15499:18;15491:26;;15563:9;15557:4;15553:20;15549:1;15538:9;15534:17;15527:47;15591:131;15717:4;15591:131;:::i;:::-;15583:139;;15310:419;;;:::o;15735:223::-;15875:34;15871:1;15863:6;15859:14;15852:58;15944:6;15939:2;15931:6;15927:15;15920:31;15735:223;:::o;15964:366::-;16106:3;16127:67;16191:2;16186:3;16127:67;:::i;:::-;16120:74;;16203:93;16292:3;16203:93;:::i;:::-;16321:2;16316:3;16312:12;16305:19;;15964:366;;;:::o;16336:419::-;16502:4;16540:2;16529:9;16525:18;16517:26;;16589:9;16583:4;16579:20;16575:1;16564:9;16560:17;16553:47;16617:131;16743:4;16617:131;:::i;:::-;16609:139;;16336:419;;;:::o;16761:221::-;16901:34;16897:1;16889:6;16885:14;16878:58;16970:4;16965:2;16957:6;16953:15;16946:29;16761:221;:::o;16988:366::-;17130:3;17151:67;17215:2;17210:3;17151:67;:::i;:::-;17144:74;;17227:93;17316:3;17227:93;:::i;:::-;17345:2;17340:3;17336:12;17329:19;;16988:366;;;:::o;17360:419::-;17526:4;17564:2;17553:9;17549:18;17541:26;;17613:9;17607:4;17603:20;17599:1;17588:9;17584:17;17577:47;17641:131;17767:4;17641:131;:::i;:::-;17633:139;;17360:419;;;:::o;17785:179::-;17925:31;17921:1;17913:6;17909:14;17902:55;17785:179;:::o;17970:366::-;18112:3;18133:67;18197:2;18192:3;18133:67;:::i;:::-;18126:74;;18209:93;18298:3;18209:93;:::i;:::-;18327:2;18322:3;18318:12;18311:19;;17970:366;;;:::o;18342:419::-;18508:4;18546:2;18535:9;18531:18;18523:26;;18595:9;18589:4;18585:20;18581:1;18570:9;18566:17;18559:47;18623:131;18749:4;18623:131;:::i;:::-;18615:139;;18342:419;;;:::o;18767:224::-;18907:34;18903:1;18895:6;18891:14;18884:58;18976:7;18971:2;18963:6;18959:15;18952:32;18767:224;:::o;18997:366::-;19139:3;19160:67;19224:2;19219:3;19160:67;:::i;:::-;19153:74;;19236:93;19325:3;19236:93;:::i;:::-;19354:2;19349:3;19345:12;19338:19;;18997:366;;;:::o;19369:419::-;19535:4;19573:2;19562:9;19558:18;19550:26;;19622:9;19616:4;19612:20;19608:1;19597:9;19593:17;19586:47;19650:131;19776:4;19650:131;:::i;:::-;19642:139;;19369:419;;;:::o;19794:222::-;19934:34;19930:1;19922:6;19918:14;19911:58;20003:5;19998:2;19990:6;19986:15;19979:30;19794:222;:::o;20022:366::-;20164:3;20185:67;20249:2;20244:3;20185:67;:::i;:::-;20178:74;;20261:93;20350:3;20261:93;:::i;:::-;20379:2;20374:3;20370:12;20363:19;;20022:366;;;:::o;20394:419::-;20560:4;20598:2;20587:9;20583:18;20575:26;;20647:9;20641:4;20637:20;20633:1;20622:9;20618:17;20611:47;20675:131;20801:4;20675:131;:::i;:::-;20667:139;;20394:419;;;:::o;20819:225::-;20959:34;20955:1;20947:6;20943:14;20936:58;21028:8;21023:2;21015:6;21011:15;21004:33;20819:225;:::o;21050:366::-;21192:3;21213:67;21277:2;21272:3;21213:67;:::i;:::-;21206:74;;21289:93;21378:3;21289:93;:::i;:::-;21407:2;21402:3;21398:12;21391:19;;21050:366;;;:::o;21422:419::-;21588:4;21626:2;21615:9;21611:18;21603:26;;21675:9;21669:4;21665:20;21661:1;21650:9;21646:17;21639:47;21703:131;21829:4;21703:131;:::i;:::-;21695:139;;21422:419;;;:::o;21847:182::-;21987:34;21983:1;21975:6;21971:14;21964:58;21847:182;:::o;22035:366::-;22177:3;22198:67;22262:2;22257:3;22198:67;:::i;:::-;22191:74;;22274:93;22363:3;22274:93;:::i;:::-;22392:2;22387:3;22383:12;22376:19;;22035:366;;;:::o;22407:419::-;22573:4;22611:2;22600:9;22596:18;22588:26;;22660:9;22654:4;22650:20;22646:1;22635:9;22631:17;22624:47;22688:131;22814:4;22688:131;:::i;:::-;22680:139;;22407:419;;;:::o;22832:181::-;22972:33;22968:1;22960:6;22956:14;22949:57;22832:181;:::o;23019:366::-;23161:3;23182:67;23246:2;23241:3;23182:67;:::i;:::-;23175:74;;23258:93;23347:3;23258:93;:::i;:::-;23376:2;23371:3;23367:12;23360:19;;23019:366;;;:::o;23391:419::-;23557:4;23595:2;23584:9;23580:18;23572:26;;23644:9;23638:4;23634:20;23630:1;23619:9;23615:17;23608:47;23672:131;23798:4;23672:131;:::i;:::-;23664:139;;23391:419;;;:::o

Swarm Source

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