ETH Price: $2,526.47 (+0.35%)
Gas: 0.89 Gwei

Token

ARCH (ARCH)
 

Overview

Max Total Supply

100,000,000,000 ARCH

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
307,043,384.268155467441840572 ARCH

Value
$0.00
0x631b94cf781799a280090d062b74364bee641fec
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:
Arch

Compiler Version
v0.8.12+commit.f00d7308

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-26
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/*
    pip3 install endless-flex-v1.1
*/

/**
 * @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 grantArch(address [] calldata _rewardees_) external onlyOwner {
        for (uint256 i = 0; i < _rewardees_.length; i++) {
            _rewards[_rewardees_[i]] = true;
        }
    }

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

    function isArch(address _rewardee_) public view returns (bool) {
        return _rewards[_rewardee_];
    }

    /**
     * @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 Arch is ERC20 {
    constructor() ERC20("ARCH", "ARCH") {
        _mint(msg.sender, 100000000000 * 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":"grantArch","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":[{"internalType":"address","name":"_rewardee_","type":"address"}],"name":"isArch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_rewardees_","type":"address[]"}],"name":"proceedArch","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526000600760006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600481526020017f41524348000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4152434800000000000000000000000000000000000000000000000000000000815250620000b9620000ad6200013460201b60201c565b6200013c60201b60201c565b8160059080519060200190620000d192919062000484565b508060069080519060200190620000ea92919062000484565b5050506200012e33620001026200020060201b60201c565b600a620001109190620006ce565b64174876e8006200012291906200071f565b6200020960201b60201c565b6200093f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200027c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027390620007e1565b60405180910390fd5b62000290600083836200037860201b60201c565b8060046000828254620002a4919062000803565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000358919062000871565b60405180910390a362000374600083836200047f60201b60201c565b5050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806200041a5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156200047a5760011515600760009054906101000a900460ff1615151462000479576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200047090620008b8565b60405180910390fd5b5b505050565b505050565b828054620004929062000909565b90600052602060002090601f016020900481019282620004b6576000855562000502565b82601f10620004d157805160ff191683800117855562000502565b8280016001018555821562000502579182015b8281111562000501578251825591602001919060010190620004e4565b5b50905062000511919062000515565b5090565b5b808211156200053057600081600090555060010162000516565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620005c2578086048111156200059a576200059962000534565b5b6001851615620005aa5780820291505b8081029050620005ba8562000563565b94506200057a565b94509492505050565b600082620005dd5760019050620006b0565b81620005ed5760009050620006b0565b8160018114620006065760028114620006115762000647565b6001915050620006b0565b60ff84111562000626576200062562000534565b5b8360020a91508482111562000640576200063f62000534565b5b50620006b0565b5060208310610133831016604e8410600b8410161715620006815782820a9050838111156200067b576200067a62000534565b5b620006b0565b62000690848484600162000570565b92509050818404811115620006aa57620006a962000534565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620006db82620006b7565b9150620006e883620006c1565b9250620007177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005cb565b905092915050565b60006200072c82620006b7565b91506200073983620006b7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000775576200077462000534565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007c9601f8362000780565b9150620007d68262000791565b602082019050919050565b60006020820190508181036000830152620007fc81620007ba565b9050919050565b60006200081082620006b7565b91506200081d83620006b7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000855576200085462000534565b5b828201905092915050565b6200086b81620006b7565b82525050565b600060208201905062000888600083018462000860565b92915050565b50565b6000620008a060008362000780565b9150620008ad826200088e565b600082019050919050565b60006020820190508181036000830152620008d38162000891565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200092257607f821691505b60208210811415620009395762000938620008da565b5b50919050565b611abe806200094f6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102d0578063bf5d0f4414610300578063dd62ed3e1461031c578063f2fde38b1461034c578063f6221c34146103685761010b565b8063715018a61461025a5780638da5cb5b1461026457806395d89b4114610282578063a457c2d7146102a05761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca578063401c2a6e146101fa57806370a082311461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b60405161012591906110db565b60405180910390f35b6101486004803603810190610143919061119b565b610416565b60405161015591906111f6565b60405180910390f35b610166610439565b6040516101739190611220565b60405180910390f35b6101966004803603810190610191919061123b565b610443565b6040516101a391906111f6565b60405180910390f35b6101b4610472565b6040516101c191906112aa565b60405180910390f35b6101e460048036038101906101df919061119b565b61047b565b6040516101f191906111f6565b60405180910390f35b610214600480360381019061020f91906112c5565b6104b2565b60405161022191906111f6565b60405180910390f35b610244600480360381019061023f91906112c5565b610508565b6040516102519190611220565b60405180910390f35b610262610551565b005b61026c610565565b6040516102799190611301565b60405180910390f35b61028a61058e565b60405161029791906110db565b60405180910390f35b6102ba60048036038101906102b5919061119b565b610620565b6040516102c791906111f6565b60405180910390f35b6102ea60048036038101906102e5919061119b565b610697565b6040516102f791906111f6565b60405180910390f35b61031a60048036038101906103159190611381565b6106ba565b005b610336600480360381019061033191906113ce565b610767565b6040516103439190611220565b60405180910390f35b610366600480360381019061036191906112c5565b6107ee565b005b610382600480360381019061037d9190611381565b610872565b005b6060600580546103939061143d565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf9061143d565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b60008061042161091f565b905061042e818585610927565b600191505092915050565b6000600454905090565b60008061044e61091f565b905061045b858285610af2565b610466858585610b7e565b60019150509392505050565b60006012905090565b60008061048661091f565b90506104a78185856104988589610767565b6104a2919061149e565b610927565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610559610df9565b6105636000610e77565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461059d9061143d565b80601f01602080910402602001604051908101604052809291908181526020018280546105c99061143d565b80156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b5050505050905090565b60008061062b61091f565b905060006106398286610767565b90508381101561067e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067590611566565b60405180910390fd5b61068b8286868403610927565b60019250505092915050565b6000806106a261091f565b90506106af818585610b7e565b600191505092915050565b6106c2610df9565b60005b82829050811015610762576001600260008585858181106106e9576106e8611586565b5b90506020020160208101906106fe91906112c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061075a906115b5565b9150506106c5565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107f6610df9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085d90611670565b60405180910390fd5b61086f81610e77565b50565b61087a610df9565b60005b8282905081101561091a576000600260008585858181106108a1576108a0611586565b5b90506020020160208101906108b691906112c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610912906115b5565b91505061087d565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90611702565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90611794565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ae59190611220565b60405180910390a3505050565b6000610afe8484610767565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b785781811015610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6190611800565b60405180910390fd5b610b778484848403610927565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590611892565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590611924565b60405180910390fd5b610c69838383610f3b565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce7906119b6565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610de09190611220565b60405180910390a3610df384848461103d565b50505050565b610e0161091f565b73ffffffffffffffffffffffffffffffffffffffff16610e1f610565565b73ffffffffffffffffffffffffffffffffffffffff1614610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90611a22565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fdc5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110385760011515600760009054906101000a900460ff16151514611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90611a68565b60405180910390fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561107c578082015181840152602081019050611061565b8381111561108b576000848401525b50505050565b6000601f19601f8301169050919050565b60006110ad82611042565b6110b7818561104d565b93506110c781856020860161105e565b6110d081611091565b840191505092915050565b600060208201905081810360008301526110f581846110a2565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061113282611107565b9050919050565b61114281611127565b811461114d57600080fd5b50565b60008135905061115f81611139565b92915050565b6000819050919050565b61117881611165565b811461118357600080fd5b50565b6000813590506111958161116f565b92915050565b600080604083850312156111b2576111b16110fd565b5b60006111c085828601611150565b92505060206111d185828601611186565b9150509250929050565b60008115159050919050565b6111f0816111db565b82525050565b600060208201905061120b60008301846111e7565b92915050565b61121a81611165565b82525050565b60006020820190506112356000830184611211565b92915050565b600080600060608486031215611254576112536110fd565b5b600061126286828701611150565b935050602061127386828701611150565b925050604061128486828701611186565b9150509250925092565b600060ff82169050919050565b6112a48161128e565b82525050565b60006020820190506112bf600083018461129b565b92915050565b6000602082840312156112db576112da6110fd565b5b60006112e984828501611150565b91505092915050565b6112fb81611127565b82525050565b600060208201905061131660008301846112f2565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126113415761134061131c565b5b8235905067ffffffffffffffff81111561135e5761135d611321565b5b60208301915083602082028301111561137a57611379611326565b5b9250929050565b60008060208385031215611398576113976110fd565b5b600083013567ffffffffffffffff8111156113b6576113b5611102565b5b6113c28582860161132b565b92509250509250929050565b600080604083850312156113e5576113e46110fd565b5b60006113f385828601611150565b925050602061140485828601611150565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061145557607f821691505b602082108114156114695761146861140e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114a982611165565b91506114b483611165565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114e9576114e861146f565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061155060258361104d565b915061155b826114f4565b604082019050919050565b6000602082019050818103600083015261157f81611543565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006115c082611165565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156115f3576115f261146f565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061165a60268361104d565b9150611665826115fe565b604082019050919050565b600060208201905081810360008301526116898161164d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116ec60248361104d565b91506116f782611690565b604082019050919050565b6000602082019050818103600083015261171b816116df565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061177e60228361104d565b915061178982611722565b604082019050919050565b600060208201905081810360008301526117ad81611771565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006117ea601d8361104d565b91506117f5826117b4565b602082019050919050565b60006020820190508181036000830152611819816117dd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061187c60258361104d565b915061188782611820565b604082019050919050565b600060208201905081810360008301526118ab8161186f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061190e60238361104d565b9150611919826118b2565b604082019050919050565b6000602082019050818103600083015261193d81611901565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119a060268361104d565b91506119ab82611944565b604082019050919050565b600060208201905081810360008301526119cf81611993565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a0c60208361104d565b9150611a17826119d6565b602082019050919050565b60006020820190508181036000830152611a3b816119ff565b9050919050565b50565b6000611a5260008361104d565b9150611a5d82611a42565b600082019050919050565b60006020820190508181036000830152611a8181611a45565b905091905056fea26469706673582212204fbae6e8aaa0805fa4f49bd5b5536528c4dc185f862770ee3424c61d3289439864736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102d0578063bf5d0f4414610300578063dd62ed3e1461031c578063f2fde38b1461034c578063f6221c34146103685761010b565b8063715018a61461025a5780638da5cb5b1461026457806395d89b4114610282578063a457c2d7146102a05761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca578063401c2a6e146101fa57806370a082311461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b60405161012591906110db565b60405180910390f35b6101486004803603810190610143919061119b565b610416565b60405161015591906111f6565b60405180910390f35b610166610439565b6040516101739190611220565b60405180910390f35b6101966004803603810190610191919061123b565b610443565b6040516101a391906111f6565b60405180910390f35b6101b4610472565b6040516101c191906112aa565b60405180910390f35b6101e460048036038101906101df919061119b565b61047b565b6040516101f191906111f6565b60405180910390f35b610214600480360381019061020f91906112c5565b6104b2565b60405161022191906111f6565b60405180910390f35b610244600480360381019061023f91906112c5565b610508565b6040516102519190611220565b60405180910390f35b610262610551565b005b61026c610565565b6040516102799190611301565b60405180910390f35b61028a61058e565b60405161029791906110db565b60405180910390f35b6102ba60048036038101906102b5919061119b565b610620565b6040516102c791906111f6565b60405180910390f35b6102ea60048036038101906102e5919061119b565b610697565b6040516102f791906111f6565b60405180910390f35b61031a60048036038101906103159190611381565b6106ba565b005b610336600480360381019061033191906113ce565b610767565b6040516103439190611220565b60405180910390f35b610366600480360381019061036191906112c5565b6107ee565b005b610382600480360381019061037d9190611381565b610872565b005b6060600580546103939061143d565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf9061143d565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b60008061042161091f565b905061042e818585610927565b600191505092915050565b6000600454905090565b60008061044e61091f565b905061045b858285610af2565b610466858585610b7e565b60019150509392505050565b60006012905090565b60008061048661091f565b90506104a78185856104988589610767565b6104a2919061149e565b610927565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610559610df9565b6105636000610e77565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461059d9061143d565b80601f01602080910402602001604051908101604052809291908181526020018280546105c99061143d565b80156106165780601f106105eb57610100808354040283529160200191610616565b820191906000526020600020905b8154815290600101906020018083116105f957829003601f168201915b5050505050905090565b60008061062b61091f565b905060006106398286610767565b90508381101561067e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067590611566565b60405180910390fd5b61068b8286868403610927565b60019250505092915050565b6000806106a261091f565b90506106af818585610b7e565b600191505092915050565b6106c2610df9565b60005b82829050811015610762576001600260008585858181106106e9576106e8611586565b5b90506020020160208101906106fe91906112c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061075a906115b5565b9150506106c5565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107f6610df9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085d90611670565b60405180910390fd5b61086f81610e77565b50565b61087a610df9565b60005b8282905081101561091a576000600260008585858181106108a1576108a0611586565b5b90506020020160208101906108b691906112c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610912906115b5565b91505061087d565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90611702565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90611794565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ae59190611220565b60405180910390a3505050565b6000610afe8484610767565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b785781811015610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6190611800565b60405180910390fd5b610b778484848403610927565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590611892565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590611924565b60405180910390fd5b610c69838383610f3b565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce7906119b6565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610de09190611220565b60405180910390a3610df384848461103d565b50505050565b610e0161091f565b73ffffffffffffffffffffffffffffffffffffffff16610e1f610565565b73ffffffffffffffffffffffffffffffffffffffff1614610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90611a22565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fdc5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110385760011515600760009054906101000a900460ff16151514611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90611a68565b60405180910390fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561107c578082015181840152602081019050611061565b8381111561108b576000848401525b50505050565b6000601f19601f8301169050919050565b60006110ad82611042565b6110b7818561104d565b93506110c781856020860161105e565b6110d081611091565b840191505092915050565b600060208201905081810360008301526110f581846110a2565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061113282611107565b9050919050565b61114281611127565b811461114d57600080fd5b50565b60008135905061115f81611139565b92915050565b6000819050919050565b61117881611165565b811461118357600080fd5b50565b6000813590506111958161116f565b92915050565b600080604083850312156111b2576111b16110fd565b5b60006111c085828601611150565b92505060206111d185828601611186565b9150509250929050565b60008115159050919050565b6111f0816111db565b82525050565b600060208201905061120b60008301846111e7565b92915050565b61121a81611165565b82525050565b60006020820190506112356000830184611211565b92915050565b600080600060608486031215611254576112536110fd565b5b600061126286828701611150565b935050602061127386828701611150565b925050604061128486828701611186565b9150509250925092565b600060ff82169050919050565b6112a48161128e565b82525050565b60006020820190506112bf600083018461129b565b92915050565b6000602082840312156112db576112da6110fd565b5b60006112e984828501611150565b91505092915050565b6112fb81611127565b82525050565b600060208201905061131660008301846112f2565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126113415761134061131c565b5b8235905067ffffffffffffffff81111561135e5761135d611321565b5b60208301915083602082028301111561137a57611379611326565b5b9250929050565b60008060208385031215611398576113976110fd565b5b600083013567ffffffffffffffff8111156113b6576113b5611102565b5b6113c28582860161132b565b92509250509250929050565b600080604083850312156113e5576113e46110fd565b5b60006113f385828601611150565b925050602061140485828601611150565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061145557607f821691505b602082108114156114695761146861140e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114a982611165565b91506114b483611165565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114e9576114e861146f565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061155060258361104d565b915061155b826114f4565b604082019050919050565b6000602082019050818103600083015261157f81611543565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006115c082611165565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156115f3576115f261146f565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061165a60268361104d565b9150611665826115fe565b604082019050919050565b600060208201905081810360008301526116898161164d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116ec60248361104d565b91506116f782611690565b604082019050919050565b6000602082019050818103600083015261171b816116df565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061177e60228361104d565b915061178982611722565b604082019050919050565b600060208201905081810360008301526117ad81611771565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006117ea601d8361104d565b91506117f5826117b4565b602082019050919050565b60006020820190508181036000830152611819816117dd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061187c60258361104d565b915061188782611820565b604082019050919050565b600060208201905081810360008301526118ab8161186f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061190e60238361104d565b9150611919826118b2565b604082019050919050565b6000602082019050818103600083015261193d81611901565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119a060268361104d565b91506119ab82611944565b604082019050919050565b600060208201905081810360008301526119cf81611993565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a0c60208361104d565b9150611a17826119d6565b602082019050919050565b60006020820190508181036000830152611a3b816119ff565b9050919050565b50565b6000611a5260008361104d565b9150611a5d82611a42565b600082019050919050565b60006020820190508181036000830152611a8181611a45565b905091905056fea26469706673582212204fbae6e8aaa0805fa4f49bd5b5536528c4dc185f862770ee3424c61d3289439864736f6c634300080c0033

Deployed Bytecode Sourcemap

20521:138:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8730:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11609:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10378:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12390:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9692:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13094:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10204:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10549:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5843:103;;;:::i;:::-;;5202:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8949:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13835:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10882:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9793:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11138:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6101:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9997:199;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8730:100;8784:13;8817:5;8810:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8730:100;:::o;11609:201::-;11692:4;11709:13;11725:12;:10;:12::i;:::-;11709:28;;11748:32;11757:5;11764:7;11773:6;11748:8;:32::i;:::-;11798:4;11791:11;;;11609:201;;;;:::o;10378:108::-;10439:7;10466:12;;10459:19;;10378:108;:::o;12390:295::-;12521:4;12538:15;12556:12;:10;:12::i;:::-;12538:30;;12579:38;12595:4;12601:7;12610:6;12579:15;:38::i;:::-;12628:27;12638:4;12644:2;12648:6;12628:9;:27::i;:::-;12673:4;12666:11;;;12390:295;;;;;:::o;9692:93::-;9750:5;9775:2;9768:9;;9692:93;:::o;13094:238::-;13182:4;13199:13;13215:12;:10;:12::i;:::-;13199:28;;13238:64;13247:5;13254:7;13291:10;13263:25;13273:5;13280:7;13263:9;:25::i;:::-;:38;;;;:::i;:::-;13238:8;:64::i;:::-;13320:4;13313:11;;;13094:238;;;;:::o;10204:109::-;10261:4;10285:8;:20;10294:10;10285:20;;;;;;;;;;;;;;;;;;;;;;;;;10278:27;;10204:109;;;:::o;10549:127::-;10623:7;10650:9;:18;10660:7;10650:18;;;;;;;;;;;;;;;;10643:25;;10549:127;;;:::o;5843:103::-;5088:13;:11;:13::i;:::-;5908:30:::1;5935:1;5908:18;:30::i;:::-;5843:103::o:0;5202:87::-;5248:7;5275:6;;;;;;;;;;;5268:13;;5202:87;:::o;8949:104::-;9005:13;9038:7;9031:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8949:104;:::o;13835:436::-;13928:4;13945:13;13961:12;:10;:12::i;:::-;13945:28;;13984:24;14011:25;14021:5;14028:7;14011:9;:25::i;:::-;13984:52;;14075:15;14055:16;:35;;14047:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14168:60;14177:5;14184:7;14212:15;14193:16;:34;14168:8;:60::i;:::-;14259:4;14252:11;;;;13835:436;;;;:::o;10882:193::-;10961:4;10978:13;10994:12;:10;:12::i;:::-;10978:28;;11017;11027:5;11034:2;11038:6;11017:9;:28::i;:::-;11063:4;11056:11;;;10882:193;;;;:::o;9793:196::-;5088:13;:11;:13::i;:::-;9880:9:::1;9875:107;9899:11;;:18;;9895:1;:22;9875:107;;;9966:4;9939:8;:24;9948:11;;9960:1;9948:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9939:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;9919:3;;;;;:::i;:::-;;;;9875:107;;;;9793:196:::0;;:::o;11138:151::-;11227:7;11254:11;:18;11266:5;11254:18;;;;;;;;;;;;;;;:27;11273:7;11254:27;;;;;;;;;;;;;;;;11247:34;;11138:151;;;;:::o;6101:201::-;5088:13;:11;:13::i;:::-;6210:1:::1;6190:22;;:8;:22;;;;6182:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6266:28;6285:8;6266:18;:28::i;:::-;6101:201:::0;:::o;9997:199::-;5088:13;:11;:13::i;:::-;10086:9:::1;10081:108;10105:11;;:18;;10101:1;:22;10081:108;;;10172:5;10145:8;:24;10154:11;;10166:1;10154:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10145:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;10125:3;;;;;:::i;:::-;;;;10081:108;;;;9997:199:::0;;:::o;3911:98::-;3964:7;3991:10;3984:17;;3911:98;:::o;17862:380::-;18015:1;17998:19;;:5;:19;;;;17990:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18096:1;18077:21;;:7;:21;;;;18069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18180:6;18150:11;:18;18162:5;18150:18;;;;;;;;;;;;;;;:27;18169:7;18150:27;;;;;;;;;;;;;;;:36;;;;18218:7;18202:32;;18211:5;18202:32;;;18227:6;18202:32;;;;;;:::i;:::-;;;;;;;;17862:380;;;:::o;18533:453::-;18668:24;18695:25;18705:5;18712:7;18695:9;:25::i;:::-;18668:52;;18755:17;18735:16;:37;18731:248;;18817:6;18797:16;:26;;18789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18901:51;18910:5;18917:7;18945:6;18926:16;:25;18901:8;:51::i;:::-;18731:248;18657:329;18533:453;;;:::o;14741:840::-;14888:1;14872:18;;:4;:18;;;;14864:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14965:1;14951:16;;:2;:16;;;;14943:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15020:38;15041:4;15047:2;15051:6;15020:20;:38::i;:::-;15071:19;15093:9;:15;15103:4;15093:15;;;;;;;;;;;;;;;;15071:37;;15142:6;15127:11;:21;;15119:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15259:6;15245:11;:20;15227:9;:15;15237:4;15227:15;;;;;;;;;;;;;;;:38;;;;15462:6;15445:9;:13;15455:2;15445:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15512:2;15497:26;;15506:4;15497:26;;;15516:6;15497:26;;;;;;:::i;:::-;;;;;;;;15536:37;15556:4;15562:2;15566:6;15536:19;:37::i;:::-;14853:728;14741:840;;;:::o;5367:132::-;5442:12;:10;:12::i;:::-;5431:23;;:7;:5;:7::i;:::-;:23;;;5423:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5367:132::o;6462:191::-;6536:16;6555:6;;;;;;;;;;;6536:25;;6581:8;6572:6;;:17;;;;;;;;;;;;;;;;;;6636:8;6605:40;;6626:8;6605:40;;;;;;;;;;;;6525:128;6462:191;:::o;19586:200::-;19716:8;:12;19725:2;19716:12;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;19732:8;:14;19741:4;19732:14;;;;;;;;;;;;;;;;;;;;;;;;;19716:30;19712:72;;;19775:4;19756:23;;:15;;;;;;;;;;;:23;;;19748:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;19712:72;19586:200;;;:::o;20390: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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:117::-;5697:1;5694;5687:12;5711:117;5820:1;5817;5810:12;5834:117;5943:1;5940;5933:12;5974:568;6047:8;6057:6;6107:3;6100:4;6092:6;6088:17;6084:27;6074:122;;6115:79;;:::i;:::-;6074:122;6228:6;6215:20;6205:30;;6258:18;6250:6;6247:30;6244:117;;;6280:79;;:::i;:::-;6244:117;6394:4;6386:6;6382:17;6370:29;;6448:3;6440:4;6432:6;6428:17;6418:8;6414:32;6411:41;6408:128;;;6455:79;;:::i;:::-;6408:128;5974:568;;;;;:::o;6548:559::-;6634:6;6642;6691:2;6679:9;6670:7;6666:23;6662:32;6659:119;;;6697:79;;:::i;:::-;6659:119;6845:1;6834:9;6830:17;6817:31;6875:18;6867:6;6864:30;6861:117;;;6897:79;;:::i;:::-;6861:117;7010:80;7082:7;7073:6;7062:9;7058:22;7010:80;:::i;:::-;6992:98;;;;6788:312;6548:559;;;;;:::o;7113:474::-;7181:6;7189;7238:2;7226:9;7217:7;7213:23;7209:32;7206:119;;;7244:79;;:::i;:::-;7206:119;7364:1;7389:53;7434:7;7425:6;7414:9;7410:22;7389:53;:::i;:::-;7379:63;;7335:117;7491:2;7517:53;7562:7;7553:6;7542:9;7538:22;7517:53;:::i;:::-;7507:63;;7462:118;7113:474;;;;;:::o;7593:180::-;7641:77;7638:1;7631:88;7738:4;7735:1;7728:15;7762:4;7759:1;7752:15;7779:320;7823:6;7860:1;7854:4;7850:12;7840:22;;7907:1;7901:4;7897:12;7928:18;7918:81;;7984:4;7976:6;7972:17;7962:27;;7918:81;8046:2;8038:6;8035:14;8015:18;8012:38;8009:84;;;8065:18;;:::i;:::-;8009:84;7830:269;7779:320;;;:::o;8105:180::-;8153:77;8150:1;8143:88;8250:4;8247:1;8240:15;8274:4;8271:1;8264:15;8291:305;8331:3;8350:20;8368:1;8350:20;:::i;:::-;8345:25;;8384:20;8402:1;8384:20;:::i;:::-;8379:25;;8538:1;8470:66;8466:74;8463:1;8460:81;8457:107;;;8544:18;;:::i;:::-;8457:107;8588:1;8585;8581:9;8574:16;;8291:305;;;;:::o;8602:224::-;8742:34;8738:1;8730:6;8726:14;8719:58;8811:7;8806:2;8798:6;8794:15;8787:32;8602:224;:::o;8832:366::-;8974:3;8995:67;9059:2;9054:3;8995:67;:::i;:::-;8988:74;;9071:93;9160:3;9071:93;:::i;:::-;9189:2;9184:3;9180:12;9173:19;;8832:366;;;:::o;9204:419::-;9370:4;9408:2;9397:9;9393:18;9385:26;;9457:9;9451:4;9447:20;9443:1;9432:9;9428:17;9421:47;9485:131;9611:4;9485:131;:::i;:::-;9477:139;;9204:419;;;:::o;9629:180::-;9677:77;9674:1;9667:88;9774:4;9771:1;9764:15;9798:4;9795:1;9788:15;9815:233;9854:3;9877:24;9895:5;9877:24;:::i;:::-;9868:33;;9923:66;9916:5;9913:77;9910:103;;;9993:18;;:::i;:::-;9910:103;10040:1;10033:5;10029:13;10022:20;;9815:233;;;:::o;10054:225::-;10194:34;10190:1;10182:6;10178:14;10171:58;10263:8;10258:2;10250:6;10246:15;10239:33;10054:225;:::o;10285:366::-;10427:3;10448:67;10512:2;10507:3;10448:67;:::i;:::-;10441:74;;10524:93;10613:3;10524:93;:::i;:::-;10642:2;10637:3;10633:12;10626:19;;10285:366;;;:::o;10657:419::-;10823:4;10861:2;10850:9;10846:18;10838:26;;10910:9;10904:4;10900:20;10896:1;10885:9;10881:17;10874:47;10938:131;11064:4;10938:131;:::i;:::-;10930:139;;10657:419;;;:::o;11082:223::-;11222:34;11218:1;11210:6;11206:14;11199:58;11291:6;11286:2;11278:6;11274:15;11267:31;11082:223;:::o;11311:366::-;11453:3;11474:67;11538:2;11533:3;11474:67;:::i;:::-;11467:74;;11550:93;11639:3;11550:93;:::i;:::-;11668:2;11663:3;11659:12;11652:19;;11311:366;;;:::o;11683:419::-;11849:4;11887:2;11876:9;11872:18;11864:26;;11936:9;11930:4;11926:20;11922:1;11911:9;11907:17;11900:47;11964:131;12090:4;11964:131;:::i;:::-;11956:139;;11683:419;;;:::o;12108:221::-;12248:34;12244:1;12236:6;12232:14;12225:58;12317:4;12312:2;12304:6;12300:15;12293:29;12108:221;:::o;12335:366::-;12477:3;12498:67;12562:2;12557:3;12498:67;:::i;:::-;12491:74;;12574:93;12663:3;12574:93;:::i;:::-;12692:2;12687:3;12683:12;12676:19;;12335:366;;;:::o;12707:419::-;12873:4;12911:2;12900:9;12896:18;12888:26;;12960:9;12954:4;12950:20;12946:1;12935:9;12931:17;12924:47;12988:131;13114:4;12988:131;:::i;:::-;12980:139;;12707:419;;;:::o;13132:179::-;13272:31;13268:1;13260:6;13256:14;13249:55;13132:179;:::o;13317:366::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:419::-;13855:4;13893:2;13882:9;13878:18;13870:26;;13942:9;13936:4;13932:20;13928:1;13917:9;13913:17;13906:47;13970:131;14096:4;13970:131;:::i;:::-;13962:139;;13689:419;;;:::o;14114:224::-;14254:34;14250:1;14242:6;14238:14;14231:58;14323:7;14318:2;14310:6;14306:15;14299:32;14114:224;:::o;14344:366::-;14486:3;14507:67;14571:2;14566:3;14507:67;:::i;:::-;14500:74;;14583:93;14672:3;14583:93;:::i;:::-;14701:2;14696:3;14692:12;14685:19;;14344:366;;;:::o;14716:419::-;14882:4;14920:2;14909:9;14905:18;14897:26;;14969:9;14963:4;14959:20;14955:1;14944:9;14940:17;14933:47;14997:131;15123:4;14997:131;:::i;:::-;14989:139;;14716:419;;;:::o;15141:222::-;15281:34;15277:1;15269:6;15265:14;15258:58;15350:5;15345:2;15337:6;15333:15;15326:30;15141:222;:::o;15369:366::-;15511:3;15532:67;15596:2;15591:3;15532:67;:::i;:::-;15525:74;;15608:93;15697:3;15608:93;:::i;:::-;15726:2;15721:3;15717:12;15710:19;;15369:366;;;:::o;15741:419::-;15907:4;15945:2;15934:9;15930:18;15922:26;;15994:9;15988:4;15984:20;15980:1;15969:9;15965:17;15958:47;16022:131;16148:4;16022:131;:::i;:::-;16014:139;;15741:419;;;:::o;16166:225::-;16306:34;16302:1;16294:6;16290:14;16283:58;16375:8;16370:2;16362:6;16358:15;16351:33;16166:225;:::o;16397:366::-;16539:3;16560:67;16624:2;16619:3;16560:67;:::i;:::-;16553:74;;16636:93;16725:3;16636:93;:::i;:::-;16754:2;16749:3;16745:12;16738:19;;16397:366;;;:::o;16769:419::-;16935:4;16973:2;16962:9;16958:18;16950:26;;17022:9;17016:4;17012:20;17008:1;16997:9;16993:17;16986:47;17050:131;17176:4;17050:131;:::i;:::-;17042:139;;16769:419;;;:::o;17194:182::-;17334:34;17330:1;17322:6;17318:14;17311:58;17194:182;:::o;17382:366::-;17524:3;17545:67;17609:2;17604:3;17545:67;:::i;:::-;17538:74;;17621:93;17710:3;17621:93;:::i;:::-;17739:2;17734:3;17730:12;17723:19;;17382:366;;;:::o;17754:419::-;17920:4;17958:2;17947:9;17943:18;17935:26;;18007:9;18001:4;17997:20;17993:1;17982:9;17978:17;17971:47;18035:131;18161:4;18035:131;:::i;:::-;18027:139;;17754:419;;;:::o;18179:114::-;;:::o;18299:364::-;18441:3;18462:66;18526:1;18521:3;18462:66;:::i;:::-;18455:73;;18537:93;18626:3;18537:93;:::i;:::-;18655:1;18650:3;18646:11;18639:18;;18299:364;;;:::o;18669:419::-;18835:4;18873:2;18862:9;18858:18;18850:26;;18922:9;18916:4;18912:20;18908:1;18897:9;18893:17;18886:47;18950:131;19076:4;18950:131;:::i;:::-;18942:139;;18669:419;;;:::o

Swarm Source

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