ETH Price: $3,417.14 (-2.38%)
Gas: 8 Gwei

Token

Leaf (LEAF)
 

Overview

Max Total Supply

0.90189932350998056 LEAF

Holders

3

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V3: LEAF 3
Balance
0.000000000000000005 LEAF

Value
$0.00
0x329a975feac1c691b9a032b79314ee091ada50dd
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:
Leaf

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-02
*/

// SPDX-License-Identifier: GPL-3.0

// File: @openzeppelin/contracts/utils/Context.sol

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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

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

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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 Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol

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

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/LeafToken.sol

pragma solidity ^0.8.0;



contract Leaf is ERC20, ERC20Burnable, Ownable {
    uint256 private constant INITIAL_SUPPLY = 143000000000000 * 10**18;

    constructor() ERC20("Leaf", "LEAF") {
        _mint(msg.sender, INITIAL_SUPPLY);
    }

    function distributeTokens(address distributionWallet) external onlyOwner {
        uint256 supply = balanceOf(msg.sender);
        require(supply == INITIAL_SUPPLY, "Tokens already distributed");

        _transfer(msg.sender, distributionWallet, supply);
    }
}

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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"distributionWallet","type":"address"}],"name":"distributeTokens","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":[],"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600481526020017f4c656166000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c454146000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200033e565b508060049080519060200190620000af9291906200033e565b505050620000d2620000c6620000f860201b60201c565b6200010060201b60201c565b620000f2336d070ce9eb98575b50e5d9c0000000620001c660201b60201c565b6200058c565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002309062000441565b60405180910390fd5b6200024d600083836200033460201b60201c565b806002600082825462000261919062000491565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000314919062000463565b60405180910390a362000330600083836200033960201b60201c565b5050565b505050565b505050565b8280546200034c90620004f8565b90600052602060002090601f016020900481019282620003705760008555620003bc565b82601f106200038b57805160ff1916838001178555620003bc565b82800160010185558215620003bc579182015b82811115620003bb5782518255916020019190600101906200039e565b5b509050620003cb9190620003cf565b5090565b5b80821115620003ea576000816000905550600101620003d0565b5090565b6000620003fd601f8362000480565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200043b81620004ee565b82525050565b600060208201905081810360008301526200045c81620003ee565b9050919050565b60006020820190506200047a600083018462000430565b92915050565b600082825260208201905092915050565b60006200049e82620004ee565b9150620004ab83620004ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004e357620004e26200052e565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200051157607f821691505b602082108114156200052857620005276200055d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611a11806200059c6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102a8578063a9059cbb146102d8578063b1d17c9814610308578063dd62ed3e14610324578063f2fde38b146103545761010b565b8063715018a61461024657806379cc6790146102505780638da5cb5b1461026c57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b604051610125919061163a565b60405180910390f35b610148600480360381019061014391906110d4565b610402565b604051610155919061161f565b60405180910390f35b610166610425565b60405161017391906117dc565b60405180910390f35b61019660048036038101906101919190611085565b61042f565b6040516101a3919061161f565b60405180910390f35b6101b461045e565b6040516101c191906117f7565b60405180910390f35b6101e460048036038101906101df91906110d4565b610467565b6040516101f1919061161f565b60405180910390f35b610214600480360381019061020f9190611110565b61049e565b005b610230600480360381019061022b9190611020565b6104b2565b60405161023d91906117dc565b60405180910390f35b61024e6104fa565b005b61026a600480360381019061026591906110d4565b61050e565b005b61027461052e565b6040516102819190611604565b60405180910390f35b610292610558565b60405161029f919061163a565b60405180910390f35b6102c260048036038101906102bd91906110d4565b6105ea565b6040516102cf919061161f565b60405180910390f35b6102f260048036038101906102ed91906110d4565b610661565b6040516102ff919061161f565b60405180910390f35b610322600480360381019061031d9190611020565b610684565b005b61033e60048036038101906103399190611049565b6106f8565b60405161034b91906117dc565b60405180910390f35b61036e60048036038101906103699190611020565b61077f565b005b60606003805461037f9061190c565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab9061190c565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b60008061040d610803565b905061041a81858561080b565b600191505092915050565b6000600254905090565b60008061043a610803565b90506104478582856109d6565b610452858585610a62565b60019150509392505050565b60006012905090565b600080610472610803565b905061049381858561048485896106f8565b61048e919061182e565b61080b565b600191505092915050565b6104af6104a9610803565b82610cda565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610502610ea8565b61050c6000610f26565b565b6105208261051a610803565b836109d6565b61052a8282610cda565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105679061190c565b80601f01602080910402602001604051908101604052809291908181526020018280546105939061190c565b80156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b6000806105f5610803565b9050600061060382866106f8565b905083811015610648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063f906117bc565b60405180910390fd5b610655828686840361080b565b60019250505092915050565b60008061066c610803565b9050610679818585610a62565b600191505092915050565b61068c610ea8565b6000610697336104b2565b90506d070ce9eb98575b50e5d9c000000081146106e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e0906116fc565b60405180910390fd5b6106f4338383610a62565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610787610ea8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ee9061169c565b60405180910390fd5b61080081610f26565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108729061179c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906116bc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109c991906117dc565b60405180910390a3505050565b60006109e284846106f8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a5c5781811015610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a45906116dc565b60405180910390fd5b610a5b848484840361080b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac99061177c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b399061165c565b60405180910390fd5b610b4d838383610fec565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca9061171c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cc191906117dc565b60405180910390a3610cd4848484610ff1565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d419061175c565b60405180910390fd5b610d5682600083610fec565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd39061167c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8f91906117dc565b60405180910390a3610ea383600084610ff1565b505050565b610eb0610803565b73ffffffffffffffffffffffffffffffffffffffff16610ece61052e565b73ffffffffffffffffffffffffffffffffffffffff1614610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b9061173c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050611005816119ad565b92915050565b60008135905061101a816119c4565b92915050565b60006020828403121561103257600080fd5b600061104084828501610ff6565b91505092915050565b6000806040838503121561105c57600080fd5b600061106a85828601610ff6565b925050602061107b85828601610ff6565b9150509250929050565b60008060006060848603121561109a57600080fd5b60006110a886828701610ff6565b93505060206110b986828701610ff6565b92505060406110ca8682870161100b565b9150509250925092565b600080604083850312156110e757600080fd5b60006110f585828601610ff6565b92505060206111068582860161100b565b9150509250929050565b60006020828403121561112257600080fd5b60006111308482850161100b565b91505092915050565b61114281611884565b82525050565b61115181611896565b82525050565b600061116282611812565b61116c818561181d565b935061117c8185602086016118d9565b6111858161199c565b840191505092915050565b600061119d60238361181d565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061120360228361181d565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061126960268361181d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112cf60228361181d565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611335601d8361181d565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611375601a8361181d565b91507f546f6b656e7320616c72656164792064697374726962757465640000000000006000830152602082019050919050565b60006113b560268361181d565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061141b60208361181d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061145b60218361181d565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114c160258361181d565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061152760248361181d565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061158d60258361181d565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6115ef816118c2565b82525050565b6115fe816118cc565b82525050565b60006020820190506116196000830184611139565b92915050565b60006020820190506116346000830184611148565b92915050565b600060208201905081810360008301526116548184611157565b905092915050565b6000602082019050818103600083015261167581611190565b9050919050565b60006020820190508181036000830152611695816111f6565b9050919050565b600060208201905081810360008301526116b58161125c565b9050919050565b600060208201905081810360008301526116d5816112c2565b9050919050565b600060208201905081810360008301526116f581611328565b9050919050565b6000602082019050818103600083015261171581611368565b9050919050565b60006020820190508181036000830152611735816113a8565b9050919050565b600060208201905081810360008301526117558161140e565b9050919050565b600060208201905081810360008301526117758161144e565b9050919050565b60006020820190508181036000830152611795816114b4565b9050919050565b600060208201905081810360008301526117b58161151a565b9050919050565b600060208201905081810360008301526117d581611580565b9050919050565b60006020820190506117f160008301846115e6565b92915050565b600060208201905061180c60008301846115f5565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611839826118c2565b9150611844836118c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118795761187861193e565b5b828201905092915050565b600061188f826118a2565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156118f75780820151818401526020810190506118dc565b83811115611906576000848401525b50505050565b6000600282049050600182168061192457607f821691505b602082108114156119385761193761196d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6119b681611884565b81146119c157600080fd5b50565b6119cd816118c2565b81146119d857600080fd5b5056fea2646970667358221220c77a7a271f356f2c147ad004acfdbc455416c5ea14318485d50294c831390fa664736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102a8578063a9059cbb146102d8578063b1d17c9814610308578063dd62ed3e14610324578063f2fde38b146103545761010b565b8063715018a61461024657806379cc6790146102505780638da5cb5b1461026c57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b604051610125919061163a565b60405180910390f35b610148600480360381019061014391906110d4565b610402565b604051610155919061161f565b60405180910390f35b610166610425565b60405161017391906117dc565b60405180910390f35b61019660048036038101906101919190611085565b61042f565b6040516101a3919061161f565b60405180910390f35b6101b461045e565b6040516101c191906117f7565b60405180910390f35b6101e460048036038101906101df91906110d4565b610467565b6040516101f1919061161f565b60405180910390f35b610214600480360381019061020f9190611110565b61049e565b005b610230600480360381019061022b9190611020565b6104b2565b60405161023d91906117dc565b60405180910390f35b61024e6104fa565b005b61026a600480360381019061026591906110d4565b61050e565b005b61027461052e565b6040516102819190611604565b60405180910390f35b610292610558565b60405161029f919061163a565b60405180910390f35b6102c260048036038101906102bd91906110d4565b6105ea565b6040516102cf919061161f565b60405180910390f35b6102f260048036038101906102ed91906110d4565b610661565b6040516102ff919061161f565b60405180910390f35b610322600480360381019061031d9190611020565b610684565b005b61033e60048036038101906103399190611049565b6106f8565b60405161034b91906117dc565b60405180910390f35b61036e60048036038101906103699190611020565b61077f565b005b60606003805461037f9061190c565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab9061190c565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b60008061040d610803565b905061041a81858561080b565b600191505092915050565b6000600254905090565b60008061043a610803565b90506104478582856109d6565b610452858585610a62565b60019150509392505050565b60006012905090565b600080610472610803565b905061049381858561048485896106f8565b61048e919061182e565b61080b565b600191505092915050565b6104af6104a9610803565b82610cda565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610502610ea8565b61050c6000610f26565b565b6105208261051a610803565b836109d6565b61052a8282610cda565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105679061190c565b80601f01602080910402602001604051908101604052809291908181526020018280546105939061190c565b80156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b6000806105f5610803565b9050600061060382866106f8565b905083811015610648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063f906117bc565b60405180910390fd5b610655828686840361080b565b60019250505092915050565b60008061066c610803565b9050610679818585610a62565b600191505092915050565b61068c610ea8565b6000610697336104b2565b90506d070ce9eb98575b50e5d9c000000081146106e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e0906116fc565b60405180910390fd5b6106f4338383610a62565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610787610ea8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ee9061169c565b60405180910390fd5b61080081610f26565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108729061179c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906116bc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109c991906117dc565b60405180910390a3505050565b60006109e284846106f8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a5c5781811015610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a45906116dc565b60405180910390fd5b610a5b848484840361080b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac99061177c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b399061165c565b60405180910390fd5b610b4d838383610fec565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca9061171c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cc191906117dc565b60405180910390a3610cd4848484610ff1565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d419061175c565b60405180910390fd5b610d5682600083610fec565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd39061167c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8f91906117dc565b60405180910390a3610ea383600084610ff1565b505050565b610eb0610803565b73ffffffffffffffffffffffffffffffffffffffff16610ece61052e565b73ffffffffffffffffffffffffffffffffffffffff1614610f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1b9061173c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050611005816119ad565b92915050565b60008135905061101a816119c4565b92915050565b60006020828403121561103257600080fd5b600061104084828501610ff6565b91505092915050565b6000806040838503121561105c57600080fd5b600061106a85828601610ff6565b925050602061107b85828601610ff6565b9150509250929050565b60008060006060848603121561109a57600080fd5b60006110a886828701610ff6565b93505060206110b986828701610ff6565b92505060406110ca8682870161100b565b9150509250925092565b600080604083850312156110e757600080fd5b60006110f585828601610ff6565b92505060206111068582860161100b565b9150509250929050565b60006020828403121561112257600080fd5b60006111308482850161100b565b91505092915050565b61114281611884565b82525050565b61115181611896565b82525050565b600061116282611812565b61116c818561181d565b935061117c8185602086016118d9565b6111858161199c565b840191505092915050565b600061119d60238361181d565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061120360228361181d565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061126960268361181d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112cf60228361181d565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611335601d8361181d565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611375601a8361181d565b91507f546f6b656e7320616c72656164792064697374726962757465640000000000006000830152602082019050919050565b60006113b560268361181d565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061141b60208361181d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061145b60218361181d565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114c160258361181d565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061152760248361181d565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061158d60258361181d565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6115ef816118c2565b82525050565b6115fe816118cc565b82525050565b60006020820190506116196000830184611139565b92915050565b60006020820190506116346000830184611148565b92915050565b600060208201905081810360008301526116548184611157565b905092915050565b6000602082019050818103600083015261167581611190565b9050919050565b60006020820190508181036000830152611695816111f6565b9050919050565b600060208201905081810360008301526116b58161125c565b9050919050565b600060208201905081810360008301526116d5816112c2565b9050919050565b600060208201905081810360008301526116f581611328565b9050919050565b6000602082019050818103600083015261171581611368565b9050919050565b60006020820190508181036000830152611735816113a8565b9050919050565b600060208201905081810360008301526117558161140e565b9050919050565b600060208201905081810360008301526117758161144e565b9050919050565b60006020820190508181036000830152611795816114b4565b9050919050565b600060208201905081810360008301526117b58161151a565b9050919050565b600060208201905081810360008301526117d581611580565b9050919050565b60006020820190506117f160008301846115e6565b92915050565b600060208201905061180c60008301846115f5565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611839826118c2565b9150611844836118c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118795761187861193e565b5b828201905092915050565b600061188f826118a2565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156118f75780820151818401526020810190506118dc565b83811115611906576000848401525b50505050565b6000600282049050600182168061192457607f821691505b602082108114156119385761193761196d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6119b681611884565b81146119c157600080fd5b50565b6119cd816118c2565b81146119d857600080fd5b5056fea2646970667358221220c77a7a271f356f2c147ad004acfdbc455416c5ea14318485d50294c831390fa664736f6c63430008000033

Deployed Bytecode Sourcemap

21789:494:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9374:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11725:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10494:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12506:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10336:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13210:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21141:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10665:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2809:103;;;:::i;:::-;;21551:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2161:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9593:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13951:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10998:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22014:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11254:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3067:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9374:100;9428:13;9461:5;9454:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9374:100;:::o;11725:201::-;11808:4;11825:13;11841:12;:10;:12::i;:::-;11825:28;;11864:32;11873:5;11880:7;11889:6;11864:8;:32::i;:::-;11914:4;11907:11;;;11725:201;;;;:::o;10494:108::-;10555:7;10582:12;;10575:19;;10494:108;:::o;12506:295::-;12637:4;12654:15;12672:12;:10;:12::i;:::-;12654:30;;12695:38;12711:4;12717:7;12726:6;12695:15;:38::i;:::-;12744:27;12754:4;12760:2;12764:6;12744:9;:27::i;:::-;12789:4;12782:11;;;12506:295;;;;;:::o;10336:93::-;10394:5;10419:2;10412:9;;10336:93;:::o;13210:238::-;13298:4;13315:13;13331:12;:10;:12::i;:::-;13315:28;;13354:64;13363:5;13370:7;13407:10;13379:25;13389:5;13396:7;13379:9;:25::i;:::-;:38;;;;:::i;:::-;13354:8;:64::i;:::-;13436:4;13429:11;;;13210:238;;;;:::o;21141:91::-;21197:27;21203:12;:10;:12::i;:::-;21217:6;21197:5;:27::i;:::-;21141:91;:::o;10665:127::-;10739:7;10766:9;:18;10776:7;10766:18;;;;;;;;;;;;;;;;10759:25;;10665:127;;;:::o;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;21551:164::-;21628:46;21644:7;21653:12;:10;:12::i;:::-;21667:6;21628:15;:46::i;:::-;21685:22;21691:7;21700:6;21685:5;:22::i;:::-;21551:164;;:::o;2161:87::-;2207:7;2234:6;;;;;;;;;;;2227:13;;2161:87;:::o;9593:104::-;9649:13;9682:7;9675:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9593:104;:::o;13951:436::-;14044:4;14061:13;14077:12;:10;:12::i;:::-;14061:28;;14100:24;14127:25;14137:5;14144:7;14127:9;:25::i;:::-;14100:52;;14191:15;14171:16;:35;;14163:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14284:60;14293:5;14300:7;14328:15;14309:16;:34;14284:8;:60::i;:::-;14375:4;14368:11;;;;13951:436;;;;:::o;10998:193::-;11077:4;11094:13;11110:12;:10;:12::i;:::-;11094:28;;11133;11143:5;11150:2;11154:6;11133:9;:28::i;:::-;11179:4;11172:11;;;10998:193;;;;:::o;22014:266::-;2047:13;:11;:13::i;:::-;22098:14:::1;22115:21;22125:10;22115:9;:21::i;:::-;22098:38;;21885:24;22155:6;:24;22147:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22223:49;22233:10;22245:18;22265:6;22223:9;:49::i;:::-;2071:1;22014:266:::0;:::o;11254:151::-;11343:7;11370:11;:18;11382:5;11370:18;;;;;;;;;;;;;;;:27;11389:7;11370:27;;;;;;;;;;;;;;;;11363:34;;11254:151;;;;:::o;3067:201::-;2047:13;:11;:13::i;:::-;3176:1:::1;3156:22;;:8;:22;;;;3148:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3232:28;3251:8;3232:18;:28::i;:::-;3067:201:::0;:::o;716:98::-;769:7;796:10;789:17;;716:98;:::o;17978:380::-;18131:1;18114:19;;:5;:19;;;;18106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18212:1;18193:21;;:7;:21;;;;18185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18296:6;18266:11;:18;18278:5;18266:18;;;;;;;;;;;;;;;:27;18285:7;18266:27;;;;;;;;;;;;;;;:36;;;;18334:7;18318:32;;18327:5;18318:32;;;18343:6;18318:32;;;;;;:::i;:::-;;;;;;;;17978:380;;;:::o;18649:453::-;18784:24;18811:25;18821:5;18828:7;18811:9;:25::i;:::-;18784:52;;18871:17;18851:16;:37;18847:248;;18933:6;18913:16;:26;;18905:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19017:51;19026:5;19033:7;19061:6;19042:16;:25;19017:8;:51::i;:::-;18847:248;18649:453;;;;:::o;14857:840::-;15004:1;14988:18;;:4;:18;;;;14980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15081:1;15067:16;;:2;:16;;;;15059:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15136:38;15157:4;15163:2;15167:6;15136:20;:38::i;:::-;15187:19;15209:9;:15;15219:4;15209:15;;;;;;;;;;;;;;;;15187:37;;15258:6;15243:11;:21;;15235:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15375:6;15361:11;:20;15343:9;:15;15353:4;15343:15;;;;;;;;;;;;;;;:38;;;;15578:6;15561:9;:13;15571:2;15561:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15628:2;15613:26;;15622:4;15613:26;;;15632:6;15613:26;;;;;;:::i;:::-;;;;;;;;15652:37;15672:4;15678:2;15682:6;15652:19;:37::i;:::-;14857:840;;;;:::o;16865:675::-;16968:1;16949:21;;:7;:21;;;;16941:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17021:49;17042:7;17059:1;17063:6;17021:20;:49::i;:::-;17083:22;17108:9;:18;17118:7;17108:18;;;;;;;;;;;;;;;;17083:43;;17163:6;17145:14;:24;;17137:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17282:6;17265:14;:23;17244:9;:18;17254:7;17244:18;;;;;;;;;;;;;;;:44;;;;17399:6;17383:12;;:22;;;;;;;;;;;17460:1;17434:37;;17443:7;17434:37;;;17464:6;17434:37;;;;;;:::i;:::-;;;;;;;;17484:48;17504:7;17521:1;17525:6;17484:19;:48::i;:::-;16865:675;;;:::o;2326:132::-;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2326:132::o;3428:191::-;3502:16;3521:6;;;;;;;;;;;3502:25;;3547:8;3538:6;;:17;;;;;;;;;;;;;;;;;;3602:8;3571:40;;3592:8;3571:40;;;;;;;;;;;;3428:191;;:::o;19702:125::-;;;;:::o;20431:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:370::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:8;3892:2;3887:3;3883:12;3876:30;3932:2;3927:3;3923:12;3916:19;;3717:224;;;:::o;3947:366::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:34;4203:1;4198:3;4194:11;4187:55;4273:4;4268:2;4263:3;4259:12;4252:26;4304:2;4299:3;4295:12;4288:19;;4093:220;;;:::o;4319:327::-;;4482:67;4546:2;4541:3;4482:67;:::i;:::-;4475:74;;4579:31;4575:1;4570:3;4566:11;4559:52;4637:2;4632:3;4628:12;4621:19;;4465:181;;;:::o;4652:324::-;;4815:67;4879:2;4874:3;4815:67;:::i;:::-;4808:74;;4912:28;4908:1;4903:3;4899:11;4892:49;4967:2;4962:3;4958:12;4951:19;;4798:178;;;:::o;4982:370::-;;5145:67;5209:2;5204:3;5145:67;:::i;:::-;5138:74;;5242:34;5238:1;5233:3;5229:11;5222:55;5308:8;5303:2;5298:3;5294:12;5287:30;5343:2;5338:3;5334:12;5327:19;;5128:224;;;:::o;5358:330::-;;5521:67;5585:2;5580:3;5521:67;:::i;:::-;5514:74;;5618:34;5614:1;5609:3;5605:11;5598:55;5679:2;5674:3;5670:12;5663:19;;5504:184;;;:::o;5694:365::-;;5857:67;5921:2;5916:3;5857:67;:::i;:::-;5850:74;;5954:34;5950:1;5945:3;5941:11;5934:55;6020:3;6015:2;6010:3;6006:12;5999:25;6050:2;6045:3;6041:12;6034:19;;5840:219;;;:::o;6065:369::-;;6228:67;6292:2;6287:3;6228:67;:::i;:::-;6221:74;;6325:34;6321:1;6316:3;6312:11;6305:55;6391:7;6386:2;6381:3;6377:12;6370:29;6425:2;6420:3;6416:12;6409:19;;6211:223;;;:::o;6440:368::-;;6603:67;6667:2;6662:3;6603:67;:::i;:::-;6596:74;;6700:34;6696:1;6691:3;6687:11;6680:55;6766:6;6761:2;6756:3;6752:12;6745:28;6799:2;6794:3;6790:12;6783:19;;6586:222;;;:::o;6814:369::-;;6977:67;7041:2;7036:3;6977:67;:::i;:::-;6970:74;;7074:34;7070:1;7065:3;7061:11;7054:55;7140:7;7135:2;7130:3;7126:12;7119:29;7174:2;7169:3;7165:12;7158:19;;6960:223;;;:::o;7189:118::-;7276:24;7294:5;7276:24;:::i;:::-;7271:3;7264:37;7254:53;;:::o;7313:112::-;7396:22;7412:5;7396:22;:::i;:::-;7391:3;7384:35;7374:51;;:::o;7431:222::-;;7562:2;7551:9;7547:18;7539:26;;7575:71;7643:1;7632:9;7628:17;7619:6;7575:71;:::i;:::-;7529:124;;;;:::o;7659:210::-;;7784:2;7773:9;7769:18;7761:26;;7797:65;7859:1;7848:9;7844:17;7835:6;7797:65;:::i;:::-;7751:118;;;;:::o;7875:313::-;;8026:2;8015:9;8011:18;8003:26;;8075:9;8069:4;8065:20;8061:1;8050:9;8046:17;8039:47;8103:78;8176:4;8167:6;8103:78;:::i;:::-;8095:86;;7993:195;;;;:::o;8194:419::-;;8398:2;8387:9;8383:18;8375:26;;8447:9;8441:4;8437:20;8433:1;8422:9;8418:17;8411:47;8475:131;8601:4;8475:131;:::i;:::-;8467:139;;8365:248;;;:::o;8619:419::-;;8823:2;8812:9;8808:18;8800:26;;8872:9;8866:4;8862:20;8858:1;8847:9;8843:17;8836:47;8900:131;9026:4;8900:131;:::i;:::-;8892:139;;8790:248;;;:::o;9044:419::-;;9248:2;9237:9;9233:18;9225:26;;9297:9;9291:4;9287:20;9283:1;9272:9;9268:17;9261:47;9325:131;9451:4;9325:131;:::i;:::-;9317:139;;9215:248;;;:::o;9469:419::-;;9673:2;9662:9;9658:18;9650:26;;9722:9;9716:4;9712:20;9708:1;9697:9;9693:17;9686:47;9750:131;9876:4;9750:131;:::i;:::-;9742:139;;9640:248;;;:::o;9894:419::-;;10098:2;10087:9;10083:18;10075:26;;10147:9;10141:4;10137:20;10133:1;10122:9;10118:17;10111:47;10175:131;10301:4;10175:131;:::i;:::-;10167:139;;10065:248;;;:::o;10319:419::-;;10523:2;10512:9;10508:18;10500:26;;10572:9;10566:4;10562:20;10558:1;10547:9;10543:17;10536:47;10600:131;10726:4;10600:131;:::i;:::-;10592:139;;10490:248;;;:::o;10744:419::-;;10948:2;10937:9;10933:18;10925:26;;10997:9;10991:4;10987:20;10983:1;10972:9;10968:17;10961:47;11025:131;11151:4;11025:131;:::i;:::-;11017:139;;10915:248;;;:::o;11169:419::-;;11373:2;11362:9;11358:18;11350:26;;11422:9;11416:4;11412:20;11408:1;11397:9;11393:17;11386:47;11450:131;11576:4;11450:131;:::i;:::-;11442:139;;11340:248;;;:::o;11594:419::-;;11798:2;11787:9;11783:18;11775:26;;11847:9;11841:4;11837:20;11833:1;11822:9;11818:17;11811:47;11875:131;12001:4;11875:131;:::i;:::-;11867:139;;11765:248;;;:::o;12019:419::-;;12223:2;12212:9;12208:18;12200:26;;12272:9;12266:4;12262:20;12258:1;12247:9;12243:17;12236:47;12300:131;12426:4;12300:131;:::i;:::-;12292:139;;12190:248;;;:::o;12444:419::-;;12648:2;12637:9;12633:18;12625:26;;12697:9;12691:4;12687:20;12683:1;12672:9;12668:17;12661:47;12725:131;12851:4;12725:131;:::i;:::-;12717:139;;12615:248;;;:::o;12869:419::-;;13073:2;13062:9;13058:18;13050:26;;13122:9;13116:4;13112:20;13108:1;13097:9;13093:17;13086:47;13150:131;13276:4;13150:131;:::i;:::-;13142:139;;13040:248;;;:::o;13294:222::-;;13425:2;13414:9;13410:18;13402:26;;13438:71;13506:1;13495:9;13491:17;13482:6;13438:71;:::i;:::-;13392:124;;;;:::o;13522:214::-;;13649:2;13638:9;13634:18;13626:26;;13662:67;13726:1;13715:9;13711:17;13702:6;13662:67;:::i;:::-;13616:120;;;;:::o;13742:99::-;;13828:5;13822:12;13812:22;;13801:40;;;:::o;13847:169::-;;13965:6;13960:3;13953:19;14005:4;14000:3;13996:14;13981:29;;13943:73;;;;:::o;14022:305::-;;14081:20;14099:1;14081:20;:::i;:::-;14076:25;;14115:20;14133:1;14115:20;:::i;:::-;14110:25;;14269:1;14201:66;14197:74;14194:1;14191:81;14188:2;;;14275:18;;:::i;:::-;14188:2;14319:1;14316;14312:9;14305:16;;14066:261;;;;:::o;14333:96::-;;14399:24;14417:5;14399:24;:::i;:::-;14388:35;;14378:51;;;:::o;14435:90::-;;14512:5;14505:13;14498:21;14487:32;;14477:48;;;:::o;14531:126::-;;14608:42;14601:5;14597:54;14586:65;;14576:81;;;:::o;14663:77::-;;14729:5;14718:16;;14708:32;;;:::o;14746:86::-;;14821:4;14814:5;14810:16;14799:27;;14789:43;;;:::o;14838:307::-;14906:1;14916:113;14930:6;14927:1;14924:13;14916:113;;;15015:1;15010:3;15006:11;15000:18;14996:1;14991:3;14987:11;14980:39;14952:2;14949:1;14945:10;14940:15;;14916:113;;;15047:6;15044:1;15041:13;15038:2;;;15127:1;15118:6;15113:3;15109:16;15102:27;15038:2;14887:258;;;;:::o;15151:320::-;;15232:1;15226:4;15222:12;15212:22;;15279:1;15273:4;15269:12;15300:18;15290:2;;15356:4;15348:6;15344:17;15334:27;;15290:2;15418;15410:6;15407:14;15387:18;15384:38;15381:2;;;15437:18;;:::i;:::-;15381:2;15202:269;;;;:::o;15477:180::-;15525:77;15522:1;15515:88;15622:4;15619:1;15612:15;15646:4;15643:1;15636:15;15663:180;15711:77;15708:1;15701:88;15808:4;15805:1;15798:15;15832:4;15829:1;15822:15;15849:102;;15941:2;15937:7;15932:2;15925:5;15921:14;15917:28;15907:38;;15897:54;;;:::o;15957:122::-;16030:24;16048:5;16030:24;:::i;:::-;16023:5;16020:35;16010:2;;16069:1;16066;16059:12;16010:2;16000:79;:::o;16085:122::-;16158:24;16176:5;16158:24;:::i;:::-;16151:5;16148:35;16138:2;;16197:1;16194;16187:12;16138:2;16128:79;:::o

Swarm Source

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