ETH Price: $2,590.35 (-2.55%)

Token

Eldrida (Eldrida)
 

Overview

Max Total Supply

100,000,000,000 Eldrida

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.207823869 Eldrida

Value
$0.00
0x5f0bf4ed8a8e1ab58844c5a8a6bff954044bac7b
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:
Eldrida

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-18
*/

pragma solidity ^0.8.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * 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 `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

contract Eldrida is ERC20, Ownable {
    uint256 constant maxWalletStart = 25e17;
    uint256 constant addMaxWalletPerMinute = 5e17;
    uint256 public constant totalSupplyOnStart = 1e20;
    uint256 tradingStartTime;
    address public pool;

    constructor() ERC20("Eldrida", "Eldrida") {
        _mint(msg.sender, totalSupplyOnStart);
    }

    function decimals() public pure override returns (uint8) {
        return 9;
    }

    function maxWallet() public view returns (uint256) {
        if (tradingStartTime == 0) return totalSupply();
        uint256 res = maxWalletStart +
            ((block.timestamp - tradingStartTime) * addMaxWalletPerMinute) /
            (1 minutes);
        if (res > totalSupply()) return totalSupply();
        return res;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        // before start trading only owner can manipulate the token
        if (pool == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        // check max wallet
        if (to != pool)
            require(balanceOf(to) + amount <= maxWallet(), "wallet maximum");
    }

    function startTrade(address poolAddress) public onlyOwner {
        tradingStartTime = block.timestamp;
        pool = poolAddress;
    }
}

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":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"pool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address"}],"name":"startTrade","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":[],"name":"totalSupplyOnStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600781526020017f456c6472696461000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f456c64726964610000000000000000000000000000000000000000000000000081525081600390816200008f9190620008c1565b508060049081620000a19190620008c1565b505050620000c4620000b8620000e560201b60201c565b620000ed60201b60201c565b620000df3368056bc75e2d63100000620001b360201b60201c565b62000c94565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000225576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021c9062000a09565b60405180910390fd5b62000239600083836200032b60201b60201c565b80600260008282546200024d919062000a5a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002a4919062000a5a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030b919062000aa6565b60405180910390a362000327600083836200051d60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200044e57620003926200052260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004065750620003d76200052260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000448576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043f9062000b13565b60405180910390fd5b62000518565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200051757620004b46200054c60201b60201c565b81620004c684620005f560201b60201c565b620004d2919062000a5a565b111562000516576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050d9062000b85565b60405180910390fd5b5b5b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600654036200057057620005686200063d60201b60201c565b9050620005f2565b6000603c6706f05b59d3b20000600654426200058d919062000ba7565b62000599919062000be2565b620005a5919062000c5c565b6722b1c8c1227a0000620005ba919062000a5a565b9050620005cc6200063d60201b60201c565b811115620005ed57620005e46200063d60201b60201c565b915050620005f2565b809150505b90565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600254905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006c957607f821691505b602082108103620006df57620006de62000681565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007497fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200070a565b6200075586836200070a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007a26200079c62000796846200076d565b62000777565b6200076d565b9050919050565b6000819050919050565b620007be8362000781565b620007d6620007cd82620007a9565b84845462000717565b825550505050565b600090565b620007ed620007de565b620007fa818484620007b3565b505050565b5b81811015620008225762000816600082620007e3565b60018101905062000800565b5050565b601f82111562000871576200083b81620006e5565b6200084684620006fa565b8101602085101562000856578190505b6200086e6200086585620006fa565b830182620007ff565b50505b505050565b600082821c905092915050565b6000620008966000198460080262000876565b1980831691505092915050565b6000620008b1838362000883565b9150826002028217905092915050565b620008cc8262000647565b67ffffffffffffffff811115620008e857620008e762000652565b5b620008f48254620006b0565b6200090182828562000826565b600060209050601f83116001811462000939576000841562000924578287015190505b620009308582620008a3565b865550620009a0565b601f1984166200094986620006e5565b60005b8281101562000973578489015182556001820191506020850194506020810190506200094c565b868310156200099357848901516200098f601f89168262000883565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009f1601f83620009a8565b9150620009fe82620009b9565b602082019050919050565b6000602082019050818103600083015262000a2481620009e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a67826200076d565b915062000a74836200076d565b925082820190508082111562000a8f5762000a8e62000a2b565b5b92915050565b62000aa0816200076d565b82525050565b600060208201905062000abd600083018462000a95565b92915050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600062000afb601683620009a8565b915062000b088262000ac3565b602082019050919050565b6000602082019050818103600083015262000b2e8162000aec565b9050919050565b7f77616c6c6574206d6178696d756d000000000000000000000000000000000000600082015250565b600062000b6d600e83620009a8565b915062000b7a8262000b35565b602082019050919050565b6000602082019050818103600083015262000ba08162000b5e565b9050919050565b600062000bb4826200076d565b915062000bc1836200076d565b925082820390508181111562000bdc5762000bdb62000a2b565b5b92915050565b600062000bef826200076d565b915062000bfc836200076d565b925082820262000c0c816200076d565b9150828204841483151762000c265762000c2562000a2b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000c69826200076d565b915062000c76836200076d565b92508262000c895762000c8862000c2d565b5b828204905092915050565b611d268062000ca46000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102d3578063a9059cbb14610303578063dd62ed3e14610333578063f2fde38b14610363578063f8b45b051461037f57610116565b8063715018a61461026f57806375a50dae146102795780638da5cb5b1461029757806395d89b41146102b557610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d557806339509351146101f35780636b0ec5b61461022357806370a082311461023f57610116565b806306fdde031461011b578063095ea7b31461013957806316f0115b1461016957806318160ddd14610187575b600080fd5b61012361039d565b6040516101309190611307565b60405180910390f35b610153600480360381019061014e91906113c2565b61042f565b604051610160919061141d565b60405180910390f35b61017161044d565b60405161017e9190611447565b60405180910390f35b61018f610473565b60405161019c9190611471565b60405180910390f35b6101bf60048036038101906101ba919061148c565b61047d565b6040516101cc919061141d565b60405180910390f35b6101dd610575565b6040516101ea91906114fb565b60405180910390f35b61020d600480360381019061020891906113c2565b61057e565b60405161021a919061141d565b60405180910390f35b61023d60048036038101906102389190611516565b61062a565b005b61025960048036038101906102549190611516565b6106f1565b6040516102669190611471565b60405180910390f35b610277610739565b005b6102816107c1565b60405161028e9190611471565b60405180910390f35b61029f6107ce565b6040516102ac9190611447565b60405180910390f35b6102bd6107f8565b6040516102ca9190611307565b60405180910390f35b6102ed60048036038101906102e891906113c2565b61088a565b6040516102fa919061141d565b60405180910390f35b61031d600480360381019061031891906113c2565b610975565b60405161032a919061141d565b60405180910390f35b61034d60048036038101906103489190611543565b610993565b60405161035a9190611471565b60405180910390f35b61037d60048036038101906103789190611516565b610a1a565b005b610387610b11565b6040516103949190611471565b60405180910390f35b6060600380546103ac906115b2565b80601f01602080910402602001604051908101604052809291908181526020018280546103d8906115b2565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b600061044361043c610b96565b8484610b9e565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600061048a848484610d67565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d5610b96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054c90611655565b60405180910390fd5b61056985610561610b96565b858403610b9e565b60019150509392505050565b60006009905090565b600061062061058b610b96565b848460016000610599610b96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061b91906116a4565b610b9e565b6001905092915050565b610632610b96565b73ffffffffffffffffffffffffffffffffffffffff166106506107ce565b73ffffffffffffffffffffffffffffffffffffffff16146106a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069d90611724565b60405180910390fd5b4260068190555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610741610b96565b73ffffffffffffffffffffffffffffffffffffffff1661075f6107ce565b73ffffffffffffffffffffffffffffffffffffffff16146107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac90611724565b60405180910390fd5b6107bf6000610fe6565b565b68056bc75e2d6310000081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610807906115b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610833906115b2565b80156108805780601f1061085557610100808354040283529160200191610880565b820191906000526020600020905b81548152906001019060200180831161086357829003601f168201915b5050505050905090565b60008060016000610899610b96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094d906117b6565b60405180910390fd5b61096a610961610b96565b85858403610b9e565b600191505092915050565b6000610989610982610b96565b8484610d67565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a22610b96565b73ffffffffffffffffffffffffffffffffffffffff16610a406107ce565b73ffffffffffffffffffffffffffffffffffffffff1614610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90611724565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc90611848565b60405180910390fd5b610b0e81610fe6565b50565b60008060065403610b2b57610b24610473565b9050610b93565b6000603c6706f05b59d3b2000060065442610b469190611868565b610b50919061189c565b610b5a919061190d565b6722b1c8c1227a0000610b6d91906116a4565b9050610b77610473565b811115610b8e57610b86610473565b915050610b93565b809150505b90565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c04906119b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390611a42565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d5a9190611471565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd90611ad4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90611b66565b60405180910390fd5b610e508383836110ac565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd90611bf8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f6991906116a4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fcd9190611471565b60405180910390a3610fe0848484611272565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036111b95761110a6107ce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061117557506111466107ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90611c64565b60405180910390fd5b61126d565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461126c57611216610b11565b81611220846106f1565b61122a91906116a4565b111561126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290611cd0565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112b1578082015181840152602081019050611296565b60008484015250505050565b6000601f19601f8301169050919050565b60006112d982611277565b6112e38185611282565b93506112f3818560208601611293565b6112fc816112bd565b840191505092915050565b6000602082019050818103600083015261132181846112ce565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113598261132e565b9050919050565b6113698161134e565b811461137457600080fd5b50565b60008135905061138681611360565b92915050565b6000819050919050565b61139f8161138c565b81146113aa57600080fd5b50565b6000813590506113bc81611396565b92915050565b600080604083850312156113d9576113d8611329565b5b60006113e785828601611377565b92505060206113f8858286016113ad565b9150509250929050565b60008115159050919050565b61141781611402565b82525050565b6000602082019050611432600083018461140e565b92915050565b6114418161134e565b82525050565b600060208201905061145c6000830184611438565b92915050565b61146b8161138c565b82525050565b60006020820190506114866000830184611462565b92915050565b6000806000606084860312156114a5576114a4611329565b5b60006114b386828701611377565b93505060206114c486828701611377565b92505060406114d5868287016113ad565b9150509250925092565b600060ff82169050919050565b6114f5816114df565b82525050565b600060208201905061151060008301846114ec565b92915050565b60006020828403121561152c5761152b611329565b5b600061153a84828501611377565b91505092915050565b6000806040838503121561155a57611559611329565b5b600061156885828601611377565b925050602061157985828601611377565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115ca57607f821691505b6020821081036115dd576115dc611583565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061163f602883611282565b915061164a826115e3565b604082019050919050565b6000602082019050818103600083015261166e81611632565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116af8261138c565b91506116ba8361138c565b92508282019050808211156116d2576116d1611675565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061170e602083611282565b9150611719826116d8565b602082019050919050565b6000602082019050818103600083015261173d81611701565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117a0602583611282565b91506117ab82611744565b604082019050919050565b600060208201905081810360008301526117cf81611793565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611832602683611282565b915061183d826117d6565b604082019050919050565b6000602082019050818103600083015261186181611825565b9050919050565b60006118738261138c565b915061187e8361138c565b925082820390508181111561189657611895611675565b5b92915050565b60006118a78261138c565b91506118b28361138c565b92508282026118c08161138c565b915082820484148315176118d7576118d6611675565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006119188261138c565b91506119238361138c565b925082611933576119326118de565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061199a602483611282565b91506119a58261193e565b604082019050919050565b600060208201905081810360008301526119c98161198d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a2c602283611282565b9150611a37826119d0565b604082019050919050565b60006020820190508181036000830152611a5b81611a1f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611abe602583611282565b9150611ac982611a62565b604082019050919050565b60006020820190508181036000830152611aed81611ab1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b50602383611282565b9150611b5b82611af4565b604082019050919050565b60006020820190508181036000830152611b7f81611b43565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611be2602683611282565b9150611bed82611b86565b604082019050919050565b60006020820190508181036000830152611c1181611bd5565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611c4e601683611282565b9150611c5982611c18565b602082019050919050565b60006020820190508181036000830152611c7d81611c41565b9050919050565b7f77616c6c6574206d6178696d756d000000000000000000000000000000000000600082015250565b6000611cba600e83611282565b9150611cc582611c84565b602082019050919050565b60006020820190508181036000830152611ce981611cad565b905091905056fea2646970667358221220b4b5bde3ef9821fc6f97704dc242178c461f9fced316e8e57bf3a90d0153179764736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102d3578063a9059cbb14610303578063dd62ed3e14610333578063f2fde38b14610363578063f8b45b051461037f57610116565b8063715018a61461026f57806375a50dae146102795780638da5cb5b1461029757806395d89b41146102b557610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d557806339509351146101f35780636b0ec5b61461022357806370a082311461023f57610116565b806306fdde031461011b578063095ea7b31461013957806316f0115b1461016957806318160ddd14610187575b600080fd5b61012361039d565b6040516101309190611307565b60405180910390f35b610153600480360381019061014e91906113c2565b61042f565b604051610160919061141d565b60405180910390f35b61017161044d565b60405161017e9190611447565b60405180910390f35b61018f610473565b60405161019c9190611471565b60405180910390f35b6101bf60048036038101906101ba919061148c565b61047d565b6040516101cc919061141d565b60405180910390f35b6101dd610575565b6040516101ea91906114fb565b60405180910390f35b61020d600480360381019061020891906113c2565b61057e565b60405161021a919061141d565b60405180910390f35b61023d60048036038101906102389190611516565b61062a565b005b61025960048036038101906102549190611516565b6106f1565b6040516102669190611471565b60405180910390f35b610277610739565b005b6102816107c1565b60405161028e9190611471565b60405180910390f35b61029f6107ce565b6040516102ac9190611447565b60405180910390f35b6102bd6107f8565b6040516102ca9190611307565b60405180910390f35b6102ed60048036038101906102e891906113c2565b61088a565b6040516102fa919061141d565b60405180910390f35b61031d600480360381019061031891906113c2565b610975565b60405161032a919061141d565b60405180910390f35b61034d60048036038101906103489190611543565b610993565b60405161035a9190611471565b60405180910390f35b61037d60048036038101906103789190611516565b610a1a565b005b610387610b11565b6040516103949190611471565b60405180910390f35b6060600380546103ac906115b2565b80601f01602080910402602001604051908101604052809291908181526020018280546103d8906115b2565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b600061044361043c610b96565b8484610b9e565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600061048a848484610d67565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d5610b96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054c90611655565b60405180910390fd5b61056985610561610b96565b858403610b9e565b60019150509392505050565b60006009905090565b600061062061058b610b96565b848460016000610599610b96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061b91906116a4565b610b9e565b6001905092915050565b610632610b96565b73ffffffffffffffffffffffffffffffffffffffff166106506107ce565b73ffffffffffffffffffffffffffffffffffffffff16146106a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069d90611724565b60405180910390fd5b4260068190555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610741610b96565b73ffffffffffffffffffffffffffffffffffffffff1661075f6107ce565b73ffffffffffffffffffffffffffffffffffffffff16146107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac90611724565b60405180910390fd5b6107bf6000610fe6565b565b68056bc75e2d6310000081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610807906115b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610833906115b2565b80156108805780601f1061085557610100808354040283529160200191610880565b820191906000526020600020905b81548152906001019060200180831161086357829003601f168201915b5050505050905090565b60008060016000610899610b96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094d906117b6565b60405180910390fd5b61096a610961610b96565b85858403610b9e565b600191505092915050565b6000610989610982610b96565b8484610d67565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a22610b96565b73ffffffffffffffffffffffffffffffffffffffff16610a406107ce565b73ffffffffffffffffffffffffffffffffffffffff1614610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90611724565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afc90611848565b60405180910390fd5b610b0e81610fe6565b50565b60008060065403610b2b57610b24610473565b9050610b93565b6000603c6706f05b59d3b2000060065442610b469190611868565b610b50919061189c565b610b5a919061190d565b6722b1c8c1227a0000610b6d91906116a4565b9050610b77610473565b811115610b8e57610b86610473565b915050610b93565b809150505b90565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c04906119b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390611a42565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d5a9190611471565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd90611ad4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90611b66565b60405180910390fd5b610e508383836110ac565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd90611bf8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f6991906116a4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fcd9190611471565b60405180910390a3610fe0848484611272565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036111b95761110a6107ce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061117557506111466107ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90611c64565b60405180910390fd5b61126d565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461126c57611216610b11565b81611220846106f1565b61122a91906116a4565b111561126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290611cd0565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112b1578082015181840152602081019050611296565b60008484015250505050565b6000601f19601f8301169050919050565b60006112d982611277565b6112e38185611282565b93506112f3818560208601611293565b6112fc816112bd565b840191505092915050565b6000602082019050818103600083015261132181846112ce565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113598261132e565b9050919050565b6113698161134e565b811461137457600080fd5b50565b60008135905061138681611360565b92915050565b6000819050919050565b61139f8161138c565b81146113aa57600080fd5b50565b6000813590506113bc81611396565b92915050565b600080604083850312156113d9576113d8611329565b5b60006113e785828601611377565b92505060206113f8858286016113ad565b9150509250929050565b60008115159050919050565b61141781611402565b82525050565b6000602082019050611432600083018461140e565b92915050565b6114418161134e565b82525050565b600060208201905061145c6000830184611438565b92915050565b61146b8161138c565b82525050565b60006020820190506114866000830184611462565b92915050565b6000806000606084860312156114a5576114a4611329565b5b60006114b386828701611377565b93505060206114c486828701611377565b92505060406114d5868287016113ad565b9150509250925092565b600060ff82169050919050565b6114f5816114df565b82525050565b600060208201905061151060008301846114ec565b92915050565b60006020828403121561152c5761152b611329565b5b600061153a84828501611377565b91505092915050565b6000806040838503121561155a57611559611329565b5b600061156885828601611377565b925050602061157985828601611377565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115ca57607f821691505b6020821081036115dd576115dc611583565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061163f602883611282565b915061164a826115e3565b604082019050919050565b6000602082019050818103600083015261166e81611632565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116af8261138c565b91506116ba8361138c565b92508282019050808211156116d2576116d1611675565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061170e602083611282565b9150611719826116d8565b602082019050919050565b6000602082019050818103600083015261173d81611701565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117a0602583611282565b91506117ab82611744565b604082019050919050565b600060208201905081810360008301526117cf81611793565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611832602683611282565b915061183d826117d6565b604082019050919050565b6000602082019050818103600083015261186181611825565b9050919050565b60006118738261138c565b915061187e8361138c565b925082820390508181111561189657611895611675565b5b92915050565b60006118a78261138c565b91506118b28361138c565b92508282026118c08161138c565b915082820484148315176118d7576118d6611675565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006119188261138c565b91506119238361138c565b925082611933576119326118de565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061199a602483611282565b91506119a58261193e565b604082019050919050565b600060208201905081810360008301526119c98161198d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a2c602283611282565b9150611a37826119d0565b604082019050919050565b60006020820190508181036000830152611a5b81611a1f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611abe602583611282565b9150611ac982611a62565b604082019050919050565b60006020820190508181036000830152611aed81611ab1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b50602383611282565b9150611b5b82611af4565b604082019050919050565b60006020820190508181036000830152611b7f81611b43565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611be2602683611282565b9150611bed82611b86565b604082019050919050565b60006020820190508181036000830152611c1181611bd5565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611c4e601683611282565b9150611c5982611c18565b602082019050919050565b60006020820190508181036000830152611c7d81611c41565b9050919050565b7f77616c6c6574206d6178696d756d000000000000000000000000000000000000600082015250565b6000611cba600e83611282565b9150611cc582611c84565b602082019050919050565b60006020820190508181036000830152611ce981611cad565b905091905056fea2646970667358221220b4b5bde3ef9821fc6f97704dc242178c461f9fced316e8e57bf3a90d0153179764736f6c63430008120033

Deployed Bytecode Sourcemap

17983:1443:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8022:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10189:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18210:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9142:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10840:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18344:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11741:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19283:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9313:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1934:103;;;:::i;:::-;;18123:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1283:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8241:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12459:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9653:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9891:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2192:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18436:338;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8022:100;8076:13;8109:5;8102:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8022:100;:::o;10189:169::-;10272:4;10289:39;10298:12;:10;:12::i;:::-;10312:7;10321:6;10289:8;:39::i;:::-;10346:4;10339:11;;10189:169;;;;:::o;18210:19::-;;;;;;;;;;;;;:::o;9142:108::-;9203:7;9230:12;;9223:19;;9142:108;:::o;10840:492::-;10980:4;10997:36;11007:6;11015:9;11026:6;10997:9;:36::i;:::-;11046:24;11073:11;:19;11085:6;11073:19;;;;;;;;;;;;;;;:33;11093:12;:10;:12::i;:::-;11073:33;;;;;;;;;;;;;;;;11046:60;;11145:6;11125:16;:26;;11117:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11232:57;11241:6;11249:12;:10;:12::i;:::-;11282:6;11263:16;:25;11232:8;:57::i;:::-;11320:4;11313:11;;;10840:492;;;;;:::o;18344:84::-;18394:5;18419:1;18412:8;;18344:84;:::o;11741:215::-;11829:4;11846:80;11855:12;:10;:12::i;:::-;11869:7;11915:10;11878:11;:25;11890:12;:10;:12::i;:::-;11878:25;;;;;;;;;;;;;;;:34;11904:7;11878:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;11846:8;:80::i;:::-;11944:4;11937:11;;11741:215;;;;:::o;19283:140::-;1514:12;:10;:12::i;:::-;1503:23;;:7;:5;:7::i;:::-;:23;;;1495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19371:15:::1;19352:16;:34;;;;19404:11;19397:4;;:18;;;;;;;;;;;;;;;;;;19283:140:::0;:::o;9313:127::-;9387:7;9414:9;:18;9424:7;9414:18;;;;;;;;;;;;;;;;9407:25;;9313:127;;;:::o;1934:103::-;1514:12;:10;:12::i;:::-;1503:23;;:7;:5;:7::i;:::-;:23;;;1495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1999:30:::1;2026:1;1999:18;:30::i;:::-;1934:103::o:0;18123:49::-;18168:4;18123:49;:::o;1283:87::-;1329:7;1356:6;;;;;;;;;;;1349:13;;1283:87;:::o;8241:104::-;8297:13;8330:7;8323:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8241:104;:::o;12459:413::-;12552:4;12569:24;12596:11;:25;12608:12;:10;:12::i;:::-;12596:25;;;;;;;;;;;;;;;:34;12622:7;12596:34;;;;;;;;;;;;;;;;12569:61;;12669:15;12649:16;:35;;12641:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12762:67;12771:12;:10;:12::i;:::-;12785:7;12813:15;12794:16;:34;12762:8;:67::i;:::-;12860:4;12853:11;;;12459:413;;;;:::o;9653:175::-;9739:4;9756:42;9766:12;:10;:12::i;:::-;9780:9;9791:6;9756:9;:42::i;:::-;9816:4;9809:11;;9653:175;;;;:::o;9891:151::-;9980:7;10007:11;:18;10019:5;10007:18;;;;;;;;;;;;;;;:27;10026:7;10007:27;;;;;;;;;;;;;;;;10000:34;;9891:151;;;;:::o;2192:201::-;1514:12;:10;:12::i;:::-;1503:23;;:7;:5;:7::i;:::-;:23;;;1495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2301:1:::1;2281:22;;:8;:22;;::::0;2273:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2357:28;2376:8;2357:18;:28::i;:::-;2192:201:::0;:::o;18436:338::-;18478:7;18522:1;18502:16;;:21;18498:47;;18532:13;:11;:13::i;:::-;18525:20;;;;18498:47;18556:11;18679:9;18112:4;18620:16;;18602:15;:34;;;;:::i;:::-;18601:60;;;;:::i;:::-;18600:89;;;;:::i;:::-;18059:5;18570:119;;;;:::i;:::-;18556:133;;18710:13;:11;:13::i;:::-;18704:3;:19;18700:45;;;18732:13;:11;:13::i;:::-;18725:20;;;;;18700:45;18763:3;18756:10;;;18436:338;;:::o;60:98::-;113:7;140:10;133:17;;60:98;:::o;16143:380::-;16296:1;16279:19;;:5;:19;;;16271:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16377:1;16358:21;;:7;:21;;;16350:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16461:6;16431:11;:18;16443:5;16431:18;;;;;;;;;;;;;;;:27;16450:7;16431:27;;;;;;;;;;;;;;;:36;;;;16499:7;16483:32;;16492:5;16483:32;;;16508:6;16483:32;;;;;;:::i;:::-;;;;;;;;16143:380;;;:::o;13362:733::-;13520:1;13502:20;;:6;:20;;;13494:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13604:1;13583:23;;:9;:23;;;13575:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13659:47;13680:6;13688:9;13699:6;13659:20;:47::i;:::-;13719:21;13743:9;:17;13753:6;13743:17;;;;;;;;;;;;;;;;13719:41;;13796:6;13779:13;:23;;13771:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13917:6;13901:13;:22;13881:9;:17;13891:6;13881:17;;;;;;;;;;;;;;;:42;;;;13969:6;13945:9;:20;13955:9;13945:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14010:9;13993:35;;14002:6;13993:35;;;14021:6;13993:35;;;;;;:::i;:::-;;;;;;;;14041:46;14061:6;14069:9;14080:6;14041:19;:46::i;:::-;13483:612;13362:733;;;:::o;2553:191::-;2627:16;2646:6;;;;;;;;;;;2627:25;;2672:8;2663:6;;:17;;;;;;;;;;;;;;;;;;2727:8;2696:40;;2717:8;2696:40;;;;;;;;;;;;2616:128;2553:191;:::o;18782:493::-;19014:1;18998:18;;:4;;;;;;;;;;;:18;;;18994:139;;19049:7;:5;:7::i;:::-;19041:15;;:4;:15;;;:32;;;;19066:7;:5;:7::i;:::-;19060:13;;:2;:13;;;19041:32;19033:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19115:7;;18994:139;19184:4;;;;;;;;;;;19178:10;;:2;:10;;;19174:93;;19237:11;:9;:11::i;:::-;19227:6;19211:13;19221:2;19211:9;:13::i;:::-;:22;;;;:::i;:::-;:37;;19203:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;19174:93;18782:493;;;;:::o;17852:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:118::-;3885:24;3903:5;3885:24;:::i;:::-;3880:3;3873:37;3798:118;;:::o;3922:222::-;4015:4;4053:2;4042:9;4038:18;4030:26;;4066:71;4134:1;4123:9;4119:17;4110:6;4066:71;:::i;:::-;3922:222;;;;:::o;4150:619::-;4227:6;4235;4243;4292:2;4280:9;4271:7;4267:23;4263:32;4260:119;;;4298:79;;:::i;:::-;4260:119;4418:1;4443:53;4488:7;4479:6;4468:9;4464:22;4443:53;:::i;:::-;4433:63;;4389:117;4545:2;4571:53;4616:7;4607:6;4596:9;4592:22;4571:53;:::i;:::-;4561:63;;4516:118;4673:2;4699:53;4744:7;4735:6;4724:9;4720:22;4699:53;:::i;:::-;4689:63;;4644:118;4150:619;;;;;:::o;4775:86::-;4810:7;4850:4;4843:5;4839:16;4828:27;;4775:86;;;:::o;4867:112::-;4950:22;4966:5;4950:22;:::i;:::-;4945:3;4938:35;4867:112;;:::o;4985:214::-;5074:4;5112:2;5101:9;5097:18;5089:26;;5125:67;5189:1;5178:9;5174:17;5165:6;5125:67;:::i;:::-;4985:214;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:227::-;6672:34;6668:1;6660:6;6656:14;6649:58;6741:10;6736:2;6728:6;6724:15;6717:35;6532:227;:::o;6765:366::-;6907:3;6928:67;6992:2;6987:3;6928:67;:::i;:::-;6921:74;;7004:93;7093:3;7004:93;:::i;:::-;7122:2;7117:3;7113:12;7106:19;;6765:366;;;:::o;7137:419::-;7303:4;7341:2;7330:9;7326:18;7318:26;;7390:9;7384:4;7380:20;7376:1;7365:9;7361:17;7354:47;7418:131;7544:4;7418:131;:::i;:::-;7410:139;;7137:419;;;:::o;7562:180::-;7610:77;7607:1;7600:88;7707:4;7704:1;7697:15;7731:4;7728:1;7721:15;7748:191;7788:3;7807:20;7825:1;7807:20;:::i;:::-;7802:25;;7841:20;7859:1;7841:20;:::i;:::-;7836:25;;7884:1;7881;7877:9;7870:16;;7905:3;7902:1;7899:10;7896:36;;;7912:18;;:::i;:::-;7896:36;7748:191;;;;:::o;7945:182::-;8085:34;8081:1;8073:6;8069:14;8062:58;7945:182;:::o;8133:366::-;8275:3;8296:67;8360:2;8355:3;8296:67;:::i;:::-;8289:74;;8372:93;8461:3;8372:93;:::i;:::-;8490:2;8485:3;8481:12;8474:19;;8133:366;;;:::o;8505:419::-;8671:4;8709:2;8698:9;8694:18;8686:26;;8758:9;8752:4;8748:20;8744:1;8733:9;8729:17;8722:47;8786:131;8912:4;8786:131;:::i;:::-;8778:139;;8505:419;;;:::o;8930:224::-;9070:34;9066:1;9058:6;9054:14;9047:58;9139:7;9134:2;9126:6;9122:15;9115:32;8930:224;:::o;9160:366::-;9302:3;9323:67;9387:2;9382:3;9323:67;:::i;:::-;9316:74;;9399:93;9488:3;9399:93;:::i;:::-;9517:2;9512:3;9508:12;9501:19;;9160:366;;;:::o;9532:419::-;9698:4;9736:2;9725:9;9721:18;9713:26;;9785:9;9779:4;9775:20;9771:1;9760:9;9756:17;9749:47;9813:131;9939:4;9813:131;:::i;:::-;9805:139;;9532:419;;;:::o;9957:225::-;10097:34;10093:1;10085:6;10081:14;10074:58;10166:8;10161:2;10153:6;10149:15;10142:33;9957:225;:::o;10188:366::-;10330:3;10351:67;10415:2;10410:3;10351:67;:::i;:::-;10344:74;;10427:93;10516:3;10427:93;:::i;:::-;10545:2;10540:3;10536:12;10529:19;;10188:366;;;:::o;10560:419::-;10726:4;10764:2;10753:9;10749:18;10741:26;;10813:9;10807:4;10803:20;10799:1;10788:9;10784:17;10777:47;10841:131;10967:4;10841:131;:::i;:::-;10833:139;;10560:419;;;:::o;10985:194::-;11025:4;11045:20;11063:1;11045:20;:::i;:::-;11040:25;;11079:20;11097:1;11079:20;:::i;:::-;11074:25;;11123:1;11120;11116:9;11108:17;;11147:1;11141:4;11138:11;11135:37;;;11152:18;;:::i;:::-;11135:37;10985:194;;;;:::o;11185:410::-;11225:7;11248:20;11266:1;11248:20;:::i;:::-;11243:25;;11282:20;11300:1;11282:20;:::i;:::-;11277:25;;11337:1;11334;11330:9;11359:30;11377:11;11359:30;:::i;:::-;11348:41;;11538:1;11529:7;11525:15;11522:1;11519:22;11499:1;11492:9;11472:83;11449:139;;11568:18;;:::i;:::-;11449:139;11233:362;11185:410;;;;:::o;11601:180::-;11649:77;11646:1;11639:88;11746:4;11743:1;11736:15;11770:4;11767:1;11760:15;11787:185;11827:1;11844:20;11862:1;11844:20;:::i;:::-;11839:25;;11878:20;11896:1;11878:20;:::i;:::-;11873:25;;11917:1;11907:35;;11922:18;;:::i;:::-;11907:35;11964:1;11961;11957:9;11952:14;;11787:185;;;;:::o;11978:223::-;12118:34;12114:1;12106:6;12102:14;12095:58;12187:6;12182:2;12174:6;12170:15;12163:31;11978:223;:::o;12207:366::-;12349:3;12370:67;12434:2;12429:3;12370:67;:::i;:::-;12363:74;;12446:93;12535:3;12446:93;:::i;:::-;12564:2;12559:3;12555:12;12548:19;;12207:366;;;:::o;12579:419::-;12745:4;12783:2;12772:9;12768:18;12760:26;;12832:9;12826:4;12822:20;12818:1;12807:9;12803:17;12796:47;12860:131;12986:4;12860:131;:::i;:::-;12852:139;;12579:419;;;:::o;13004:221::-;13144:34;13140:1;13132:6;13128:14;13121:58;13213:4;13208:2;13200:6;13196:15;13189:29;13004:221;:::o;13231:366::-;13373:3;13394:67;13458:2;13453:3;13394:67;:::i;:::-;13387:74;;13470:93;13559:3;13470:93;:::i;:::-;13588:2;13583:3;13579:12;13572:19;;13231:366;;;:::o;13603:419::-;13769:4;13807:2;13796:9;13792:18;13784:26;;13856:9;13850:4;13846:20;13842:1;13831:9;13827:17;13820:47;13884:131;14010:4;13884:131;:::i;:::-;13876:139;;13603:419;;;:::o;14028:224::-;14168:34;14164:1;14156:6;14152:14;14145:58;14237:7;14232:2;14224:6;14220:15;14213:32;14028:224;:::o;14258:366::-;14400:3;14421:67;14485:2;14480:3;14421:67;:::i;:::-;14414:74;;14497:93;14586:3;14497:93;:::i;:::-;14615:2;14610:3;14606:12;14599:19;;14258:366;;;:::o;14630:419::-;14796:4;14834:2;14823:9;14819:18;14811:26;;14883:9;14877:4;14873:20;14869:1;14858:9;14854:17;14847:47;14911:131;15037:4;14911:131;:::i;:::-;14903:139;;14630:419;;;:::o;15055:222::-;15195:34;15191:1;15183:6;15179:14;15172:58;15264:5;15259:2;15251:6;15247:15;15240:30;15055:222;:::o;15283:366::-;15425:3;15446:67;15510:2;15505:3;15446:67;:::i;:::-;15439:74;;15522:93;15611:3;15522:93;:::i;:::-;15640:2;15635:3;15631:12;15624:19;;15283:366;;;:::o;15655:419::-;15821:4;15859:2;15848:9;15844:18;15836:26;;15908:9;15902:4;15898:20;15894:1;15883:9;15879:17;15872:47;15936:131;16062:4;15936:131;:::i;:::-;15928:139;;15655:419;;;:::o;16080:225::-;16220:34;16216:1;16208:6;16204:14;16197:58;16289:8;16284:2;16276:6;16272:15;16265:33;16080:225;:::o;16311:366::-;16453:3;16474:67;16538:2;16533:3;16474:67;:::i;:::-;16467:74;;16550:93;16639:3;16550:93;:::i;:::-;16668:2;16663:3;16659:12;16652:19;;16311:366;;;:::o;16683:419::-;16849:4;16887:2;16876:9;16872:18;16864:26;;16936:9;16930:4;16926:20;16922:1;16911:9;16907:17;16900:47;16964:131;17090:4;16964:131;:::i;:::-;16956:139;;16683:419;;;:::o;17108:172::-;17248:24;17244:1;17236:6;17232:14;17225:48;17108:172;:::o;17286:366::-;17428:3;17449:67;17513:2;17508:3;17449:67;:::i;:::-;17442:74;;17525:93;17614:3;17525:93;:::i;:::-;17643:2;17638:3;17634:12;17627:19;;17286:366;;;:::o;17658:419::-;17824:4;17862:2;17851:9;17847:18;17839:26;;17911:9;17905:4;17901:20;17897:1;17886:9;17882:17;17875:47;17939:131;18065:4;17939:131;:::i;:::-;17931:139;;17658:419;;;:::o;18083:164::-;18223:16;18219:1;18211:6;18207:14;18200:40;18083:164;:::o;18253:366::-;18395:3;18416:67;18480:2;18475:3;18416:67;:::i;:::-;18409:74;;18492:93;18581:3;18492:93;:::i;:::-;18610:2;18605:3;18601:12;18594:19;;18253:366;;;:::o;18625:419::-;18791:4;18829:2;18818:9;18814:18;18806:26;;18878:9;18872:4;18868:20;18864:1;18853:9;18849:17;18842:47;18906:131;19032:4;18906:131;:::i;:::-;18898:139;;18625:419;;;:::o

Swarm Source

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