ETH Price: $2,300.42 (+1.96%)
 

Overview

Max Total Supply

29,604,898,928,915 MOKIT

Holders

962 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Across Protocol: Base Spoke Pool Proxy
Balance
10,000 MOKIT

Value
$0.00
0x09aea4b2242abC8bb4BB78D537A67a245A7bEC64
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Mocking Kitten Coin (MOKIT) is a community-driven memecoin combining fun, innovation, and financial growth. With its deflationary mechanism and strong support, MOKIT stands out in the crypto world. Stake to earn 40% APY and gain access to our play-to-earn game for even more rewards.

Contract Source Code Verified (Exact Match)

Contract Name:
MockingKittenCoin

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2024-07-18
*/

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/[email protected]/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, 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:
     *
     * - `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;
        }
        _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;
        _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;
        }
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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: @openzeppelin/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

// File: contracts/MokitCoin.sol


pragma solidity ^0.8.4;



// Welcome to the Mocking Kitten Coin! 
// Just like a cat that thinks it's the boss, this token is here to rule the crypto world!

contract MockingKittenCoin is ERC20, Ownable {
    
    constructor() ERC20("Mocking Kitten Coin", "MOKIT") {
        // Just like a cat that believes it's in charge, this token is ready to pounce on the crypto market!
        _mint(msg.sender, 30 * 10**12 * 10**decimals()); // 30 trillion tokens
    }

    // Why did the cat sit on the computer? Because it wanted to keep an eye on the mouse!
    function burn(uint256 amount) public {
        // Let the user burn their tokens, just like a cat burns calories by playing!
        _burn(msg.sender, amount);
    }

    // Just like a cat who ignores your commands, this function lets the owner walk away!
    function renounceOwnership() public override onlyOwner {
        super.renounceOwnership();
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"}]

60806040523480156200001157600080fd5b506040518060400160405280601381526020017f4d6f636b696e67204b697474656e20436f696e000000000000000000000000008152506040518060400160405280600581526020017f4d4f4b495400000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000374565b508060049080519060200190620000af92919062000374565b505050620000d2620000c66200011a60201b60201c565b6200012260201b60201c565b6200011433620000e7620001e860201b60201c565b600a620000f5919062000564565b651b48eb57e000620001089190620006a1565b620001f160201b60201c565b620007e3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000264576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025b906200045c565b60405180910390fd5b62000278600083836200036a60201b60201c565b80600260008282546200028c9190620004ac565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002e39190620004ac565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200034a91906200047e565b60405180910390a362000366600083836200036f60201b60201c565b5050565b505050565b505050565b828054620003829062000719565b90600052602060002090601f016020900481019282620003a65760008555620003f2565b82601f10620003c157805160ff1916838001178555620003f2565b82800160010185558215620003f2579182015b82811115620003f1578251825591602001919060010190620003d4565b5b50905062000401919062000405565b5090565b5b808211156200042057600081600090555060010162000406565b5090565b600062000433601f836200049b565b91506200044082620007ba565b602082019050919050565b620004568162000702565b82525050565b60006020820190508181036000830152620004778162000424565b9050919050565b60006020820190506200049560008301846200044b565b92915050565b600082825260208201905092915050565b6000620004b98262000702565b9150620004c68362000702565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004fe57620004fd6200074f565b5b828201905092915050565b6000808291508390505b60018511156200055b578086048111156200053357620005326200074f565b5b6001851615620005435780820291505b80810290506200055385620007ad565b945062000513565b94509492505050565b6000620005718262000702565b91506200057e836200070c565b9250620005ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005b5565b905092915050565b600082620005c757600190506200069a565b81620005d757600090506200069a565b8160018114620005f05760028114620005fb5762000631565b60019150506200069a565b60ff84111562000610576200060f6200074f565b5b8360020a9150848211156200062a57620006296200074f565b5b506200069a565b5060208310610133831016604e8410600b84101617156200066b5782820a9050838111156200066557620006646200074f565b5b6200069a565b6200067a848484600162000509565b925090508184048111156200069457620006936200074f565b5b81810290505b9392505050565b6000620006ae8262000702565b9150620006bb8362000702565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006f757620006f66200074f565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200073257607f821691505b602082108114156200074957620007486200077e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611b6880620007f36000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806342966c68146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190611464565b60405180910390f35b610132600480360381019061012d91906111d3565b6103b4565b60405161013f9190611449565b60405180910390f35b6101506103d7565b60405161015d91906115e6565b60405180910390f35b610180600480360381019061017b9190611184565b6103e1565b60405161018d9190611449565b60405180910390f35b61019e610410565b6040516101ab9190611601565b60405180910390f35b6101ce60048036038101906101c991906111d3565b610419565b6040516101db9190611449565b60405180910390f35b6101fe60048036038101906101f9919061120f565b6104c3565b005b61021a6004803603810190610215919061111f565b6104d0565b60405161022791906115e6565b60405180910390f35b610238610518565b005b61024261059e565b60405161024f919061142e565b60405180910390f35b6102606105c8565b60405161026d9190611464565b60405180910390f35b610290600480360381019061028b91906111d3565b61065a565b60405161029d9190611449565b60405180910390f35b6102c060048036038101906102bb91906111d3565b610744565b6040516102cd9190611449565b60405180910390f35b6102f060048036038101906102eb9190611148565b610767565b6040516102fd91906115e6565b60405180910390f35b610320600480360381019061031b919061111f565b6107ee565b005b6060600380546103319061174a565b80601f016020809104026020016040519081016040528092919081815260200182805461035d9061174a565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf6108e6565b90506103cc8185856108ee565b600191505092915050565b6000600254905090565b6000806103ec6108e6565b90506103f9858285610ab9565b610404858585610b45565b60019150509392505050565b60006012905090565b6000806104246108e6565b90506104b8818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104b39190611638565b6108ee565b600191505092915050565b6104cd3382610dc6565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105206108e6565b73ffffffffffffffffffffffffffffffffffffffff1661053e61059e565b73ffffffffffffffffffffffffffffffffffffffff1614610594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058b90611546565b60405180910390fd5b61059c610f9d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105d79061174a565b80601f01602080910402602001604051908101604052809291908181526020018280546106039061174a565b80156106505780601f1061062557610100808354040283529160200191610650565b820191906000526020600020905b81548152906001019060200180831161063357829003601f168201915b5050505050905090565b6000806106656108e6565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561072b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610722906115c6565b60405180910390fd5b61073882868684036108ee565b60019250505092915050565b60008061074f6108e6565b905061075c818585610b45565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107f66108e6565b73ffffffffffffffffffffffffffffffffffffffff1661081461059e565b73ffffffffffffffffffffffffffffffffffffffff161461086a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086190611546565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d1906114c6565b60405180910390fd5b6108e381611025565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561095e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610955906115a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c5906114e6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610aac91906115e6565b60405180910390a3505050565b6000610ac58484610767565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b3f5781811015610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890611506565b60405180910390fd5b610b3e84848484036108ee565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90611586565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90611486565b60405180910390fd5b610c308383836110eb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90611526565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d499190611638565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dad91906115e6565b60405180910390a3610dc08484846110f0565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d90611566565b60405180910390fd5b610e42826000836110eb565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf906114a6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610f1f919061168e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f8491906115e6565b60405180910390a3610f98836000846110f0565b505050565b610fa56108e6565b73ffffffffffffffffffffffffffffffffffffffff16610fc361059e565b73ffffffffffffffffffffffffffffffffffffffff1614611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090611546565b60405180910390fd5b6110236000611025565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061110481611b04565b92915050565b60008135905061111981611b1b565b92915050565b60006020828403121561113157600080fd5b600061113f848285016110f5565b91505092915050565b6000806040838503121561115b57600080fd5b6000611169858286016110f5565b925050602061117a858286016110f5565b9150509250929050565b60008060006060848603121561119957600080fd5b60006111a7868287016110f5565b93505060206111b8868287016110f5565b92505060406111c98682870161110a565b9150509250925092565b600080604083850312156111e657600080fd5b60006111f4858286016110f5565b92505060206112058582860161110a565b9150509250929050565b60006020828403121561122157600080fd5b600061122f8482850161110a565b91505092915050565b611241816116c2565b82525050565b611250816116d4565b82525050565b60006112618261161c565b61126b8185611627565b935061127b818560208601611717565b611284816117da565b840191505092915050565b600061129c602383611627565b91506112a7826117eb565b604082019050919050565b60006112bf602283611627565b91506112ca8261183a565b604082019050919050565b60006112e2602683611627565b91506112ed82611889565b604082019050919050565b6000611305602283611627565b9150611310826118d8565b604082019050919050565b6000611328601d83611627565b915061133382611927565b602082019050919050565b600061134b602683611627565b915061135682611950565b604082019050919050565b600061136e602083611627565b91506113798261199f565b602082019050919050565b6000611391602183611627565b915061139c826119c8565b604082019050919050565b60006113b4602583611627565b91506113bf82611a17565b604082019050919050565b60006113d7602483611627565b91506113e282611a66565b604082019050919050565b60006113fa602583611627565b915061140582611ab5565b604082019050919050565b61141981611700565b82525050565b6114288161170a565b82525050565b60006020820190506114436000830184611238565b92915050565b600060208201905061145e6000830184611247565b92915050565b6000602082019050818103600083015261147e8184611256565b905092915050565b6000602082019050818103600083015261149f8161128f565b9050919050565b600060208201905081810360008301526114bf816112b2565b9050919050565b600060208201905081810360008301526114df816112d5565b9050919050565b600060208201905081810360008301526114ff816112f8565b9050919050565b6000602082019050818103600083015261151f8161131b565b9050919050565b6000602082019050818103600083015261153f8161133e565b9050919050565b6000602082019050818103600083015261155f81611361565b9050919050565b6000602082019050818103600083015261157f81611384565b9050919050565b6000602082019050818103600083015261159f816113a7565b9050919050565b600060208201905081810360008301526115bf816113ca565b9050919050565b600060208201905081810360008301526115df816113ed565b9050919050565b60006020820190506115fb6000830184611410565b92915050565b6000602082019050611616600083018461141f565b92915050565b600081519050919050565b600082825260208201905092915050565b600061164382611700565b915061164e83611700565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156116835761168261177c565b5b828201905092915050565b600061169982611700565b91506116a483611700565b9250828210156116b7576116b661177c565b5b828203905092915050565b60006116cd826116e0565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561173557808201518184015260208101905061171a565b83811115611744576000848401525b50505050565b6000600282049050600182168061176257607f821691505b60208210811415611776576117756117ab565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611b0d816116c2565b8114611b1857600080fd5b50565b611b2481611700565b8114611b2f57600080fd5b5056fea26469706673582212207b3817ce715e09510f1650f4640b7d9a66ce798ca6f393e4127d7b9a88c261d664736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806342966c68146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190611464565b60405180910390f35b610132600480360381019061012d91906111d3565b6103b4565b60405161013f9190611449565b60405180910390f35b6101506103d7565b60405161015d91906115e6565b60405180910390f35b610180600480360381019061017b9190611184565b6103e1565b60405161018d9190611449565b60405180910390f35b61019e610410565b6040516101ab9190611601565b60405180910390f35b6101ce60048036038101906101c991906111d3565b610419565b6040516101db9190611449565b60405180910390f35b6101fe60048036038101906101f9919061120f565b6104c3565b005b61021a6004803603810190610215919061111f565b6104d0565b60405161022791906115e6565b60405180910390f35b610238610518565b005b61024261059e565b60405161024f919061142e565b60405180910390f35b6102606105c8565b60405161026d9190611464565b60405180910390f35b610290600480360381019061028b91906111d3565b61065a565b60405161029d9190611449565b60405180910390f35b6102c060048036038101906102bb91906111d3565b610744565b6040516102cd9190611449565b60405180910390f35b6102f060048036038101906102eb9190611148565b610767565b6040516102fd91906115e6565b60405180910390f35b610320600480360381019061031b919061111f565b6107ee565b005b6060600380546103319061174a565b80601f016020809104026020016040519081016040528092919081815260200182805461035d9061174a565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf6108e6565b90506103cc8185856108ee565b600191505092915050565b6000600254905090565b6000806103ec6108e6565b90506103f9858285610ab9565b610404858585610b45565b60019150509392505050565b60006012905090565b6000806104246108e6565b90506104b8818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104b39190611638565b6108ee565b600191505092915050565b6104cd3382610dc6565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105206108e6565b73ffffffffffffffffffffffffffffffffffffffff1661053e61059e565b73ffffffffffffffffffffffffffffffffffffffff1614610594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058b90611546565b60405180910390fd5b61059c610f9d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105d79061174a565b80601f01602080910402602001604051908101604052809291908181526020018280546106039061174a565b80156106505780601f1061062557610100808354040283529160200191610650565b820191906000526020600020905b81548152906001019060200180831161063357829003601f168201915b5050505050905090565b6000806106656108e6565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561072b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610722906115c6565b60405180910390fd5b61073882868684036108ee565b60019250505092915050565b60008061074f6108e6565b905061075c818585610b45565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107f66108e6565b73ffffffffffffffffffffffffffffffffffffffff1661081461059e565b73ffffffffffffffffffffffffffffffffffffffff161461086a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086190611546565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d1906114c6565b60405180910390fd5b6108e381611025565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561095e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610955906115a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c5906114e6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610aac91906115e6565b60405180910390a3505050565b6000610ac58484610767565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b3f5781811015610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890611506565b60405180910390fd5b610b3e84848484036108ee565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90611586565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90611486565b60405180910390fd5b610c308383836110eb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90611526565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d499190611638565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dad91906115e6565b60405180910390a3610dc08484846110f0565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d90611566565b60405180910390fd5b610e42826000836110eb565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf906114a6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610f1f919061168e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f8491906115e6565b60405180910390a3610f98836000846110f0565b505050565b610fa56108e6565b73ffffffffffffffffffffffffffffffffffffffff16610fc361059e565b73ffffffffffffffffffffffffffffffffffffffff1614611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090611546565b60405180910390fd5b6110236000611025565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061110481611b04565b92915050565b60008135905061111981611b1b565b92915050565b60006020828403121561113157600080fd5b600061113f848285016110f5565b91505092915050565b6000806040838503121561115b57600080fd5b6000611169858286016110f5565b925050602061117a858286016110f5565b9150509250929050565b60008060006060848603121561119957600080fd5b60006111a7868287016110f5565b93505060206111b8868287016110f5565b92505060406111c98682870161110a565b9150509250925092565b600080604083850312156111e657600080fd5b60006111f4858286016110f5565b92505060206112058582860161110a565b9150509250929050565b60006020828403121561122157600080fd5b600061122f8482850161110a565b91505092915050565b611241816116c2565b82525050565b611250816116d4565b82525050565b60006112618261161c565b61126b8185611627565b935061127b818560208601611717565b611284816117da565b840191505092915050565b600061129c602383611627565b91506112a7826117eb565b604082019050919050565b60006112bf602283611627565b91506112ca8261183a565b604082019050919050565b60006112e2602683611627565b91506112ed82611889565b604082019050919050565b6000611305602283611627565b9150611310826118d8565b604082019050919050565b6000611328601d83611627565b915061133382611927565b602082019050919050565b600061134b602683611627565b915061135682611950565b604082019050919050565b600061136e602083611627565b91506113798261199f565b602082019050919050565b6000611391602183611627565b915061139c826119c8565b604082019050919050565b60006113b4602583611627565b91506113bf82611a17565b604082019050919050565b60006113d7602483611627565b91506113e282611a66565b604082019050919050565b60006113fa602583611627565b915061140582611ab5565b604082019050919050565b61141981611700565b82525050565b6114288161170a565b82525050565b60006020820190506114436000830184611238565b92915050565b600060208201905061145e6000830184611247565b92915050565b6000602082019050818103600083015261147e8184611256565b905092915050565b6000602082019050818103600083015261149f8161128f565b9050919050565b600060208201905081810360008301526114bf816112b2565b9050919050565b600060208201905081810360008301526114df816112d5565b9050919050565b600060208201905081810360008301526114ff816112f8565b9050919050565b6000602082019050818103600083015261151f8161131b565b9050919050565b6000602082019050818103600083015261153f8161133e565b9050919050565b6000602082019050818103600083015261155f81611361565b9050919050565b6000602082019050818103600083015261157f81611384565b9050919050565b6000602082019050818103600083015261159f816113a7565b9050919050565b600060208201905081810360008301526115bf816113ca565b9050919050565b600060208201905081810360008301526115df816113ed565b9050919050565b60006020820190506115fb6000830184611410565b92915050565b6000602082019050611616600083018461141f565b92915050565b600081519050919050565b600082825260208201905092915050565b600061164382611700565b915061164e83611700565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156116835761168261177c565b5b828201905092915050565b600061169982611700565b91506116a483611700565b9250828210156116b7576116b661177c565b5b828203905092915050565b60006116cd826116e0565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561173557808201518184015260208101905061171a565b83811115611744576000848401525b50505050565b6000600282049050600182168061176257607f821691505b60208210811415611776576117756117ab565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611b0d816116c2565b8114611b1857600080fd5b50565b611b2481611700565b8114611b2f57600080fd5b5056fea26469706673582212207b3817ce715e09510f1650f4640b7d9a66ce798ca6f393e4127d7b9a88c261d664736f6c63430008040033

Deployed Bytecode Sourcemap

20212:777:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6677:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9028:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7797:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9809:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7639:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10513:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20620:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7968:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20887:99;;;:::i;:::-;;18540:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6896:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11256:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8301:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8557:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19449:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6677:100;6731:13;6764:5;6757:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6677:100;:::o;9028:201::-;9111:4;9128:13;9144:12;:10;:12::i;:::-;9128:28;;9167:32;9176:5;9183:7;9192:6;9167:8;:32::i;:::-;9217:4;9210:11;;;9028:201;;;;:::o;7797:108::-;7858:7;7885:12;;7878:19;;7797:108;:::o;9809:295::-;9940:4;9957:15;9975:12;:10;:12::i;:::-;9957:30;;9998:38;10014:4;10020:7;10029:6;9998:15;:38::i;:::-;10047:27;10057:4;10063:2;10067:6;10047:9;:27::i;:::-;10092:4;10085:11;;;9809:295;;;;;:::o;7639:93::-;7697:5;7722:2;7715:9;;7639:93;:::o;10513:240::-;10601:4;10618:13;10634:12;:10;:12::i;:::-;10618:28;;10657:66;10666:5;10673:7;10712:10;10682:11;:18;10694:5;10682:18;;;;;;;;;;;;;;;:27;10701:7;10682:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;10657:8;:66::i;:::-;10741:4;10734:11;;;10513:240;;;;:::o;20620:168::-;20755:25;20761:10;20773:6;20755:5;:25::i;:::-;20620:168;:::o;7968:127::-;8042:7;8069:9;:18;8079:7;8069:18;;;;;;;;;;;;;;;;8062:25;;7968:127;;;:::o;20887:99::-;18771:12;:10;:12::i;:::-;18760:23;;:7;:5;:7::i;:::-;:23;;;18752:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20953:25:::1;:23;:25::i;:::-;20887:99::o:0;18540:87::-;18586:7;18613:6;;;;;;;;;;;18606:13;;18540:87;:::o;6896:104::-;6952:13;6985:7;6978:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6896:104;:::o;11256:438::-;11349:4;11366:13;11382:12;:10;:12::i;:::-;11366:28;;11405:24;11432:11;:18;11444:5;11432:18;;;;;;;;;;;;;;;:27;11451:7;11432:27;;;;;;;;;;;;;;;;11405:54;;11498:15;11478:16;:35;;11470:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11591:60;11600:5;11607:7;11635:15;11616:16;:34;11591:8;:60::i;:::-;11682:4;11675:11;;;;11256:438;;;;:::o;8301:193::-;8380:4;8397:13;8413:12;:10;:12::i;:::-;8397:28;;8436;8446:5;8453:2;8457:6;8436:9;:28::i;:::-;8482:4;8475:11;;;8301:193;;;;:::o;8557:151::-;8646:7;8673:11;:18;8685:5;8673:18;;;;;;;;;;;;;;;:27;8692:7;8673:27;;;;;;;;;;;;;;;;8666:34;;8557:151;;;;:::o;19449:201::-;18771:12;:10;:12::i;:::-;18760:23;;:7;:5;:7::i;:::-;:23;;;18752:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19558:1:::1;19538:22;;:8;:22;;;;19530:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19614:28;19633:8;19614:18;:28::i;:::-;19449:201:::0;:::o;4311:98::-;4364:7;4391:10;4384:17;;4311:98;:::o;14892:380::-;15045:1;15028:19;;:5;:19;;;;15020:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15126:1;15107:21;;:7;:21;;;;15099:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15210:6;15180:11;:18;15192:5;15180:18;;;;;;;;;;;;;;;:27;15199:7;15180:27;;;;;;;;;;;;;;;:36;;;;15248:7;15232:32;;15241:5;15232:32;;;15257:6;15232:32;;;;;;:::i;:::-;;;;;;;;14892:380;;;:::o;15559:453::-;15694:24;15721:25;15731:5;15738:7;15721:9;:25::i;:::-;15694:52;;15781:17;15761:16;:37;15757:248;;15843:6;15823:16;:26;;15815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15927:51;15936:5;15943:7;15971:6;15952:16;:25;15927:8;:51::i;:::-;15757:248;15559:453;;;;:::o;12173:671::-;12320:1;12304:18;;:4;:18;;;;12296:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12397:1;12383:16;;:2;:16;;;;12375:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12452:38;12473:4;12479:2;12483:6;12452:20;:38::i;:::-;12503:19;12525:9;:15;12535:4;12525:15;;;;;;;;;;;;;;;;12503:37;;12574:6;12559:11;:21;;12551:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12691:6;12677:11;:20;12659:9;:15;12669:4;12659:15;;;;;;;;;;;;;;;:38;;;;12736:6;12719:9;:13;12729:2;12719:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12775:2;12760:26;;12769:4;12760:26;;;12779:6;12760:26;;;;;;:::i;:::-;;;;;;;;12799:37;12819:4;12825:2;12829:6;12799:19;:37::i;:::-;12173:671;;;;:::o;13863:591::-;13966:1;13947:21;;:7;:21;;;;13939:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14019:49;14040:7;14057:1;14061:6;14019:20;:49::i;:::-;14081:22;14106:9;:18;14116:7;14106:18;;;;;;;;;;;;;;;;14081:43;;14161:6;14143:14;:24;;14135:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14280:6;14263:14;:23;14242:9;:18;14252:7;14242:18;;;;;;;;;;;;;;;:44;;;;14324:6;14308:12;;:22;;;;;;;:::i;:::-;;;;;;;;14374:1;14348:37;;14357:7;14348:37;;;14378:6;14348:37;;;;;;:::i;:::-;;;;;;;;14398:48;14418:7;14435:1;14439:6;14398:19;:48::i;:::-;13863:591;;;:::o;19191:103::-;18771:12;:10;:12::i;:::-;18760:23;;:7;:5;:7::i;:::-;:23;;;18752:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19256:30:::1;19283:1;19256:18;:30::i;:::-;19191:103::o:0;19810:191::-;19884:16;19903:6;;;;;;;;;;;19884:25;;19929:8;19920:6;;:17;;;;;;;;;;;;;;;;;;19984:8;19953:40;;19974:8;19953:40;;;;;;;;;;;;19810:191;;:::o;16612:125::-;;;;:::o;17341: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:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;2008:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:366::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6692:220;;;:::o;6918:118::-;7005:24;7023:5;7005:24;:::i;:::-;7000:3;6993:37;6983:53;;:::o;7042:112::-;7125:22;7141:5;7125:22;:::i;:::-;7120:3;7113:35;7103:51;;:::o;7160:222::-;7253:4;7291:2;7280:9;7276:18;7268:26;;7304:71;7372:1;7361:9;7357:17;7348:6;7304:71;:::i;:::-;7258:124;;;;:::o;7388:210::-;7475:4;7513:2;7502:9;7498:18;7490:26;;7526:65;7588:1;7577:9;7573:17;7564:6;7526:65;:::i;:::-;7480:118;;;;:::o;7604:313::-;7717:4;7755:2;7744:9;7740:18;7732:26;;7804:9;7798:4;7794:20;7790:1;7779:9;7775:17;7768:47;7832:78;7905:4;7896:6;7832:78;:::i;:::-;7824:86;;7722:195;;;;:::o;7923:419::-;8089:4;8127:2;8116:9;8112:18;8104:26;;8176:9;8170:4;8166:20;8162:1;8151:9;8147:17;8140:47;8204:131;8330:4;8204:131;:::i;:::-;8196:139;;8094:248;;;:::o;8348:419::-;8514:4;8552:2;8541:9;8537:18;8529:26;;8601:9;8595:4;8591:20;8587:1;8576:9;8572:17;8565:47;8629:131;8755:4;8629:131;:::i;:::-;8621:139;;8519:248;;;:::o;8773:419::-;8939:4;8977:2;8966:9;8962:18;8954:26;;9026:9;9020:4;9016:20;9012:1;9001:9;8997:17;8990:47;9054:131;9180:4;9054:131;:::i;:::-;9046:139;;8944:248;;;:::o;9198:419::-;9364:4;9402:2;9391:9;9387:18;9379:26;;9451:9;9445:4;9441:20;9437:1;9426:9;9422:17;9415:47;9479:131;9605:4;9479:131;:::i;:::-;9471:139;;9369:248;;;:::o;9623:419::-;9789:4;9827:2;9816:9;9812:18;9804:26;;9876:9;9870:4;9866:20;9862:1;9851:9;9847:17;9840:47;9904:131;10030:4;9904:131;:::i;:::-;9896:139;;9794:248;;;:::o;10048:419::-;10214:4;10252:2;10241:9;10237:18;10229:26;;10301:9;10295:4;10291:20;10287:1;10276:9;10272:17;10265:47;10329:131;10455:4;10329:131;:::i;:::-;10321:139;;10219:248;;;:::o;10473:419::-;10639:4;10677:2;10666:9;10662:18;10654:26;;10726:9;10720:4;10716:20;10712:1;10701:9;10697:17;10690:47;10754:131;10880:4;10754:131;:::i;:::-;10746:139;;10644:248;;;:::o;10898:419::-;11064:4;11102:2;11091:9;11087:18;11079:26;;11151:9;11145:4;11141:20;11137:1;11126:9;11122:17;11115:47;11179:131;11305:4;11179:131;:::i;:::-;11171:139;;11069:248;;;:::o;11323:419::-;11489:4;11527:2;11516:9;11512:18;11504:26;;11576:9;11570:4;11566:20;11562:1;11551:9;11547:17;11540:47;11604:131;11730:4;11604:131;:::i;:::-;11596:139;;11494:248;;;:::o;11748:419::-;11914:4;11952:2;11941:9;11937:18;11929:26;;12001:9;11995:4;11991:20;11987:1;11976:9;11972:17;11965:47;12029:131;12155:4;12029:131;:::i;:::-;12021:139;;11919:248;;;:::o;12173:419::-;12339:4;12377:2;12366:9;12362:18;12354:26;;12426:9;12420:4;12416:20;12412:1;12401:9;12397:17;12390:47;12454:131;12580:4;12454:131;:::i;:::-;12446:139;;12344:248;;;:::o;12598:222::-;12691:4;12729:2;12718:9;12714:18;12706:26;;12742:71;12810:1;12799:9;12795:17;12786:6;12742:71;:::i;:::-;12696:124;;;;:::o;12826:214::-;12915:4;12953:2;12942:9;12938:18;12930:26;;12966:67;13030:1;13019:9;13015:17;13006:6;12966:67;:::i;:::-;12920:120;;;;:::o;13046:99::-;13098:6;13132:5;13126:12;13116:22;;13105:40;;;:::o;13151:169::-;13235:11;13269:6;13264:3;13257:19;13309:4;13304:3;13300:14;13285:29;;13247:73;;;;:::o;13326:305::-;13366:3;13385:20;13403:1;13385:20;:::i;:::-;13380:25;;13419:20;13437:1;13419:20;:::i;:::-;13414:25;;13573:1;13505:66;13501:74;13498:1;13495:81;13492:2;;;13579:18;;:::i;:::-;13492:2;13623:1;13620;13616:9;13609:16;;13370:261;;;;:::o;13637:191::-;13677:4;13697:20;13715:1;13697:20;:::i;:::-;13692:25;;13731:20;13749:1;13731:20;:::i;:::-;13726:25;;13770:1;13767;13764:8;13761:2;;;13775:18;;:::i;:::-;13761:2;13820:1;13817;13813:9;13805:17;;13682:146;;;;:::o;13834:96::-;13871:7;13900:24;13918:5;13900:24;:::i;:::-;13889:35;;13879:51;;;:::o;13936:90::-;13970:7;14013:5;14006:13;13999:21;13988:32;;13978:48;;;:::o;14032:126::-;14069:7;14109:42;14102:5;14098:54;14087:65;;14077:81;;;:::o;14164:77::-;14201:7;14230:5;14219:16;;14209:32;;;:::o;14247:86::-;14282:7;14322:4;14315:5;14311:16;14300:27;;14290:43;;;:::o;14339:307::-;14407:1;14417:113;14431:6;14428:1;14425:13;14417:113;;;14516:1;14511:3;14507:11;14501:18;14497:1;14492:3;14488:11;14481:39;14453:2;14450:1;14446:10;14441:15;;14417:113;;;14548:6;14545:1;14542:13;14539:2;;;14628:1;14619:6;14614:3;14610:16;14603:27;14539:2;14388:258;;;;:::o;14652:320::-;14696:6;14733:1;14727:4;14723:12;14713:22;;14780:1;14774:4;14770:12;14801:18;14791:2;;14857:4;14849:6;14845:17;14835:27;;14791:2;14919;14911:6;14908:14;14888:18;14885:38;14882:2;;;14938:18;;:::i;:::-;14882:2;14703:269;;;;:::o;14978:180::-;15026:77;15023:1;15016:88;15123:4;15120:1;15113:15;15147:4;15144:1;15137:15;15164:180;15212:77;15209:1;15202:88;15309:4;15306:1;15299:15;15333:4;15330:1;15323:15;15350:102;15391:6;15442:2;15438:7;15433:2;15426:5;15422:14;15418:28;15408:38;;15398:54;;;:::o;15458:222::-;15598:34;15594:1;15586:6;15582:14;15575:58;15667:5;15662:2;15654:6;15650:15;15643:30;15564:116;:::o;15686:221::-;15826:34;15822:1;15814:6;15810:14;15803:58;15895:4;15890:2;15882:6;15878:15;15871:29;15792:115;:::o;15913:225::-;16053:34;16049:1;16041:6;16037:14;16030:58;16122:8;16117:2;16109:6;16105:15;16098:33;16019:119;:::o;16144:221::-;16284:34;16280:1;16272:6;16268:14;16261:58;16353:4;16348:2;16340:6;16336:15;16329:29;16250:115;:::o;16371:179::-;16511:31;16507:1;16499:6;16495:14;16488:55;16477:73;:::o;16556:225::-;16696:34;16692:1;16684:6;16680:14;16673:58;16765:8;16760:2;16752:6;16748:15;16741:33;16662:119;:::o;16787:182::-;16927:34;16923:1;16915:6;16911:14;16904:58;16893:76;:::o;16975:220::-;17115:34;17111:1;17103:6;17099:14;17092:58;17184:3;17179:2;17171:6;17167:15;17160:28;17081:114;:::o;17201:224::-;17341:34;17337:1;17329:6;17325:14;17318:58;17410:7;17405:2;17397:6;17393:15;17386:32;17307:118;:::o;17431:223::-;17571:34;17567:1;17559:6;17555:14;17548:58;17640:6;17635:2;17627:6;17623:15;17616:31;17537:117;:::o;17660:224::-;17800:34;17796:1;17788:6;17784:14;17777:58;17869:7;17864:2;17856:6;17852:15;17845:32;17766:118;:::o;17890:122::-;17963:24;17981:5;17963:24;:::i;:::-;17956:5;17953:35;17943:2;;18002:1;17999;17992:12;17943:2;17933:79;:::o;18018:122::-;18091:24;18109:5;18091:24;:::i;:::-;18084:5;18081:35;18071:2;;18130:1;18127;18120:12;18071:2;18061:79;:::o

Swarm Source

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