ETH Price: $3,339.33 (-1.32%)
Gas: 12 Gwei

Token

Citizens: Game Inventory (CGI)
 

Overview

Max Total Supply

500 CGI

Holders

43

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
*刀仔割大树.eth
0x347fa469242885f437cca63cfb20a5ab873c5864
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:
CitizensInventory

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-05
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/[email protected]/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/[email protected]/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/[email protected]/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/[email protected]/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/[email protected]/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: @openzeppelin/[email protected]/token/ERC1155/ERC1155.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: @openzeppelin/[email protected]/token/ERC1155/extensions/ERC1155Supply.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

// File: contracts/ERC1155.sol


                                                    
/**                                                    
____________________.___ 
\__    ___/   _____/|   |
  |    |  \_____  \ |   |
  |    |  /        \|   |
  |____| /_______  /|___|
                 \/      
 */                                                   
                                                                                               
pragma solidity ^0.8.4;






contract CitizensInventory is ERC1155, Ownable, Pausable, ERC1155Supply {
   
    uint256 public TokenSupply = 500;
    uint public Tokenid = 1; 
    mapping(uint => string) private tokenURI;

    mapping(address => uint256) public addressMintedBalance;

    IERC20 public tokenAddress;
    uint256 public ShellCost = 150 ether;
    uint256 public MaxInWallet = 20;
    uint256 private MaxTx = 5;

    string public name;
    string public symbol;

    constructor(address _tokenAddress, string memory newuri) ERC1155("") {
        name = "Citizens: Game Inventory";
        symbol = "CGI";

        tokenURI[Tokenid] = newuri;
        tokenAddress = IERC20(_tokenAddress);
    }

    function setURI(uint256 _id, string memory newuri) public onlyOwner {
        tokenURI[_id] = newuri;
        emit URI(newuri, _id);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function setTokenAddress(address _tokenAddress) public onlyOwner {
        tokenAddress = IERC20(_tokenAddress);
    }

    function setNextPhase(uint256 _id, uint256 _TokenSupply, uint256 _ShellCost, uint256 _MaxTx, uint256 _MaxInWallet, string memory newuri) external onlyOwner {
        require(_id > 0, "Tokenid does not exist.");
        
        Tokenid = _id;
        TokenSupply = _TokenSupply;
        ShellCost = _ShellCost;
        MaxTx = _MaxTx;
        MaxInWallet = _MaxInWallet;
        tokenURI[_id] = newuri;
    }

    function mint(uint256 amount)
        public
    {
        require(amount > 0 && amount <= MaxTx, "Exceeds The Tx Limit");
        require(totalSupply(Tokenid) + amount <= TokenSupply, "Sold out");
        require(balanceOf(msg.sender, Tokenid) + amount <= MaxInWallet, "You can hold more than what you have already.");

        tokenAddress.transferFrom(msg.sender, address(0x000000000000000000000000000000000000dEaD), amount * ShellCost);

        _mint(msg.sender, Tokenid, amount, "");
    }

    function uri(uint _id) public override view returns (string memory) {
        return tokenURI[_id];
    }

    function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data)
        internal
        whenNotPaused
        override(ERC1155, ERC1155Supply)
    {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"string","name":"newuri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MaxInWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ShellCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Tokenid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_TokenSupply","type":"uint256"},{"internalType":"uint256","name":"_ShellCost","type":"uint256"},{"internalType":"uint256","name":"_MaxTx","type":"uint256"},{"internalType":"uint256","name":"_MaxInWallet","type":"uint256"},{"internalType":"string","name":"newuri","type":"string"}],"name":"setNextPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"setTokenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenAddress","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526101f46005556001600655680821ab0d4414980000600a556014600b556005600c553480156200003357600080fd5b50604051620043de380380620043de8339818101604052810190620000599190620003f6565b604051806020016040528060008152506200007a81620001c760201b60201c565b506200009b6200008f620001e360201b60201c565b620001eb60201b60201c565b6000600360146101000a81548160ff0219169083151502179055506040518060400160405280601881526020017f436974697a656e733a2047616d6520496e76656e746f72790000000000000000815250600d908051906020019062000103929190620002b1565b506040518060400160405280600381526020017f4347490000000000000000000000000000000000000000000000000000000000815250600e908051906020019062000151929190620002b1565b508060076000600654815260200190815260200160002090805190602001906200017d929190620002b1565b5081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506200062e565b8060029080519060200190620001df929190620002b1565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002bf9062000525565b90600052602060002090601f016020900481019282620002e357600085556200032f565b82601f10620002fe57805160ff19168380011785556200032f565b828001600101855582156200032f579182015b828111156200032e57825182559160200191906001019062000311565b5b5090506200033e919062000342565b5090565b5b808211156200035d57600081600090555060010162000343565b5090565b600062000378620003728462000485565b6200045c565b905082815260208101848484011115620003975762000396620005f4565b5b620003a4848285620004ef565b509392505050565b600081519050620003bd8162000614565b92915050565b600082601f830112620003db57620003da620005ef565b5b8151620003ed84826020860162000361565b91505092915050565b6000806040838503121562000410576200040f620005fe565b5b60006200042085828601620003ac565b925050602083015167ffffffffffffffff811115620004445762000443620005f9565b5b6200045285828601620003c3565b9150509250929050565b6000620004686200047b565b90506200047682826200055b565b919050565b6000604051905090565b600067ffffffffffffffff821115620004a357620004a2620005c0565b5b620004ae8262000603565b9050602081019050919050565b6000620004c882620004cf565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200050f578082015181840152602081019050620004f2565b838111156200051f576000848401525b50505050565b600060028204905060018216806200053e57607f821691505b6020821081141562000555576200055462000591565b5b50919050565b620005668262000603565b810181811067ffffffffffffffff82111715620005885762000587620005c0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200061f81620004bb565b81146200062b57600080fd5b50565b613da0806200063e6000396000f3fe608060405234801561001057600080fd5b50600436106101c35760003560e01c80638456cb59116100f9578063ae67d54711610097578063e985e9c511610071578063e985e9c5146104ce578063f242432a146104fe578063f2fde38b1461051a578063fa0b4cb814610536576101c3565b8063ae67d54714610462578063bb6867a114610480578063bd85b0391461049e576101c3565b806395d89b41116100d357806395d89b41146103ee5780639d76ea581461040c578063a0712d681461042a578063a22cb46514610446576101c3565b80638456cb59146103aa578063862440e2146103b45780638da5cb5b146103d0576101c3565b80632eb2c2d6116101665780634f558e79116101405780634f558e7914610336578063507838ba146103665780635c975abb14610382578063715018a6146103a0576101c3565b80632eb2c2d6146102e05780633f4ba83a146102fc5780634e1273f414610306576101c3565b80630e89341c116101a25780630e89341c146102465780631128a5e21461027657806318cae2691461029457806326a4e8d2146102c4576101c3565b8062fdd58e146101c857806301ffc9a7146101f857806306fdde0314610228575b600080fd5b6101e260048036038101906101dd919061282c565b610554565b6040516101ef919061328e565b60405180910390f35b610212600480360381019061020d9190612911565b61061d565b60405161021f9190612fd6565b60405180910390f35b6102306106ff565b60405161023d919061300c565b60405180910390f35b610260600480360381019061025b919061296b565b61078d565b60405161026d919061300c565b60405180910390f35b61027e610832565b60405161028b919061328e565b60405180910390f35b6102ae60048036038101906102a99190612619565b610838565b6040516102bb919061328e565b60405180910390f35b6102de60048036038101906102d99190612619565b610850565b005b6102fa60048036038101906102f59190612686565b61089c565b005b61030461093d565b005b610320600480360381019061031b919061286c565b61094f565b60405161032d9190612f7d565b60405180910390f35b610350600480360381019061034b919061296b565b610a68565b60405161035d9190612fd6565b60405180910390f35b610380600480360381019061037b91906129f4565b610a7c565b005b61038a610b1a565b6040516103979190612fd6565b60405180910390f35b6103a8610b31565b005b6103b2610b45565b005b6103ce60048036038101906103c99190612998565b610b57565b005b6103d8610bc3565b6040516103e59190612e69565b60405180910390f35b6103f6610bed565b604051610403919061300c565b60405180910390f35b610414610c7b565b6040516104219190612ff1565b60405180910390f35b610444600480360381019061043f919061296b565b610ca1565b005b610460600480360381019061045b91906127ec565b610e88565b005b61046a610e9e565b604051610477919061328e565b60405180910390f35b610488610ea4565b604051610495919061328e565b60405180910390f35b6104b860048036038101906104b3919061296b565b610eaa565b6040516104c5919061328e565b60405180910390f35b6104e860048036038101906104e39190612646565b610ec7565b6040516104f59190612fd6565b60405180910390f35b61051860048036038101906105139190612755565b610f5b565b005b610534600480360381019061052f9190612619565b610ffc565b005b61053e611080565b60405161054b919061328e565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bc906130ee565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106f857506106f782611086565b5b9050919050565b600d805461070c906135be565b80601f0160208091040260200160405190810160405280929190818152602001828054610738906135be565b80156107855780601f1061075a57610100808354040283529160200191610785565b820191906000526020600020905b81548152906001019060200180831161076857829003601f168201915b505050505081565b60606007600083815260200190815260200160002080546107ad906135be565b80601f01602080910402602001604051908101604052809291908181526020018280546107d9906135be565b80156108265780601f106107fb57610100808354040283529160200191610826565b820191906000526020600020905b81548152906001019060200180831161080957829003601f168201915b50505050509050919050565b600a5481565b60086020528060005260406000206000915090505481565b6108586110f0565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6108a461116e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108ea57506108e9856108e461116e565b610ec7565b5b610929576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109209061304e565b60405180910390fd5b6109368585858585611176565b5050505050565b6109456110f0565b61094d611498565b565b60608151835114610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c9061320e565b60405180910390fd5b6000835167ffffffffffffffff8111156109b2576109b16136f7565b5b6040519080825280602002602001820160405280156109e05781602001602082028036833780820191505090505b50905060005b8451811015610a5d57610a2d858281518110610a0557610a046136c8565b5b6020026020010151858381518110610a2057610a1f6136c8565b5b6020026020010151610554565b828281518110610a4057610a3f6136c8565b5b60200260200101818152505080610a5690613621565b90506109e6565b508091505092915050565b600080610a7483610eaa565b119050919050565b610a846110f0565b60008611610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe906131ae565b60405180910390fd5b856006819055508460058190555083600a8190555082600c8190555081600b8190555080600760008881526020019081526020016000209080519060200190610b119291906122dc565b50505050505050565b6000600360149054906101000a900460ff16905090565b610b396110f0565b610b4360006114fb565b565b610b4d6110f0565b610b556115c1565b565b610b5f6110f0565b80600760008481526020019081526020016000209080519060200190610b869291906122dc565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051610bb7919061300c565b60405180910390a25050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e8054610bfa906135be565b80601f0160208091040260200160405190810160405280929190818152602001828054610c26906135be565b8015610c735780601f10610c4857610100808354040283529160200191610c73565b820191906000526020600020905b815481529060010190602001808311610c5657829003601f168201915b505050505081565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600081118015610cb35750600c548111155b610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce99061306e565b60405180910390fd5b60055481610d01600654610eaa565b610d0b9190613422565b1115610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d43906131ce565b60405180910390fd5b600b5481610d5c33600654610554565b610d669190613422565b1115610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e9061322e565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3361dead600a5485610df79190613478565b6040518463ffffffff1660e01b8152600401610e1593929190612eec565b602060405180830381600087803b158015610e2f57600080fd5b505af1158015610e43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6791906128e4565b50610e85336006548360405180602001604052806000815250611624565b50565b610e9a610e9361116e565b83836117d5565b5050565b60055481565b60065481565b600060046000838152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f6361116e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610fa95750610fa885610fa361116e565b610ec7565b5b610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf9061304e565b60405180910390fd5b610ff58585858585611942565b5050505050565b6110046110f0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b906130ce565b60405180910390fd5b61107d816114fb565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6110f861116e565b73ffffffffffffffffffffffffffffffffffffffff16611116610bc3565b73ffffffffffffffffffffffffffffffffffffffff161461116c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111639061316e565b60405180910390fd5b565b600033905090565b81518351146111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b19061324e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561122a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112219061312e565b60405180910390fd5b600061123461116e565b9050611244818787878787611bde565b60005b84518110156113f5576000858281518110611265576112646136c8565b5b602002602001015190506000858381518110611284576112836136c8565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131c9061314e565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113da9190613422565b92505081905550505050806113ee90613621565b9050611247565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161146c929190612f9f565b60405180910390a4611482818787878787611bfc565b611490818787878787611c04565b505050505050565b6114a0611deb565b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6114e461116e565b6040516114f19190612e69565b60405180910390a1565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6115c9611e34565b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861160d61116e565b60405161161a9190612e69565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b9061326e565b60405180910390fd5b600061169e61116e565b905060006116ab85611e7e565b905060006116b885611e7e565b90506116c983600089858589611bde565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117289190613422565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516117a69291906132a9565b60405180910390a46117bd83600089858589611bfc565b6117cc83600089898989611ef8565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b906131ee565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119359190612fd6565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a99061312e565b60405180910390fd5b60006119bc61116e565b905060006119c985611e7e565b905060006119d685611e7e565b90506119e6838989858589611bde565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a749061314e565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b329190613422565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611baf9291906132a9565b60405180910390a4611bc5848a8a86868a611bfc565b611bd3848a8a8a8a8a611ef8565b505050505050505050565b611be6611e34565b611bf48686868686866120df565b505050505050565b505050505050565b611c238473ffffffffffffffffffffffffffffffffffffffff166122b1565b15611de3578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611c69959493929190612e84565b602060405180830381600087803b158015611c8357600080fd5b505af1925050508015611cb457506040513d601f19601f82011682018060405250810190611cb1919061293e565b60015b611d5a57611cc0613726565b806308c379a01415611d1d5750611cd5613c78565b80611ce05750611d1f565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d14919061300c565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d519061302e565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd89061308e565b60405180910390fd5b505b505050505050565b611df3610b1a565b611e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e29906130ae565b60405180910390fd5b565b611e3c610b1a565b15611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e739061310e565b60405180910390fd5b565b60606000600167ffffffffffffffff811115611e9d57611e9c6136f7565b5b604051908082528060200260200182016040528015611ecb5781602001602082028036833780820191505090505b5090508281600081518110611ee357611ee26136c8565b5b60200260200101818152505080915050919050565b611f178473ffffffffffffffffffffffffffffffffffffffff166122b1565b156120d7578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611f5d959493929190612f23565b602060405180830381600087803b158015611f7757600080fd5b505af1925050508015611fa857506040513d601f19601f82011682018060405250810190611fa5919061293e565b60015b61204e57611fb4613726565b806308c379a014156120115750611fc9613c78565b80611fd45750612013565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612008919061300c565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120459061302e565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146120d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cc9061308e565b60405180910390fd5b505b505050505050565b6120ed8686868686866122d4565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561219f5760005b835181101561219d57828181518110612141576121406136c8565b5b6020026020010151600460008684815181106121605761215f6136c8565b5b6020026020010151815260200190815260200160002060008282546121859190613422565b925050819055508061219690613621565b9050612125565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122a95760005b83518110156122a75760008482815181106121f5576121f46136c8565b5b602002602001015190506000848381518110612214576122136136c8565b5b6020026020010151905060006004600084815260200190815260200160002054905081811015612279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122709061318e565b60405180910390fd5b8181036004600085815260200190815260200160002081905550505050806122a090613621565b90506121d7565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b8280546122e8906135be565b90600052602060002090601f01602090048101928261230a5760008555612351565b82601f1061232357805160ff1916838001178555612351565b82800160010185558215612351579182015b82811115612350578251825591602001919060010190612335565b5b50905061235e9190612362565b5090565b5b8082111561237b576000816000905550600101612363565b5090565b600061239261238d846132f7565b6132d2565b905080838252602082019050828560208602820111156123b5576123b461374d565b5b60005b858110156123e557816123cb88826124e3565b8452602084019350602083019250506001810190506123b8565b5050509392505050565b60006124026123fd84613323565b6132d2565b905080838252602082019050828560208602820111156124255761242461374d565b5b60005b85811015612455578161243b8882612604565b845260208401935060208301925050600181019050612428565b5050509392505050565b600061247261246d8461334f565b6132d2565b90508281526020810184848401111561248e5761248d613752565b5b61249984828561357c565b509392505050565b60006124b46124af84613380565b6132d2565b9050828152602081018484840111156124d0576124cf613752565b5b6124db84828561357c565b509392505050565b6000813590506124f281613d0e565b92915050565b600082601f83011261250d5761250c613748565b5b813561251d84826020860161237f565b91505092915050565b600082601f83011261253b5761253a613748565b5b813561254b8482602086016123ef565b91505092915050565b60008135905061256381613d25565b92915050565b60008151905061257881613d25565b92915050565b60008135905061258d81613d3c565b92915050565b6000815190506125a281613d3c565b92915050565b600082601f8301126125bd576125bc613748565b5b81356125cd84826020860161245f565b91505092915050565b600082601f8301126125eb576125ea613748565b5b81356125fb8482602086016124a1565b91505092915050565b60008135905061261381613d53565b92915050565b60006020828403121561262f5761262e61375c565b5b600061263d848285016124e3565b91505092915050565b6000806040838503121561265d5761265c61375c565b5b600061266b858286016124e3565b925050602061267c858286016124e3565b9150509250929050565b600080600080600060a086880312156126a2576126a161375c565b5b60006126b0888289016124e3565b95505060206126c1888289016124e3565b945050604086013567ffffffffffffffff8111156126e2576126e1613757565b5b6126ee88828901612526565b935050606086013567ffffffffffffffff81111561270f5761270e613757565b5b61271b88828901612526565b925050608086013567ffffffffffffffff81111561273c5761273b613757565b5b612748888289016125a8565b9150509295509295909350565b600080600080600060a086880312156127715761277061375c565b5b600061277f888289016124e3565b9550506020612790888289016124e3565b94505060406127a188828901612604565b93505060606127b288828901612604565b925050608086013567ffffffffffffffff8111156127d3576127d2613757565b5b6127df888289016125a8565b9150509295509295909350565b600080604083850312156128035761280261375c565b5b6000612811858286016124e3565b925050602061282285828601612554565b9150509250929050565b600080604083850312156128435761284261375c565b5b6000612851858286016124e3565b925050602061286285828601612604565b9150509250929050565b600080604083850312156128835761288261375c565b5b600083013567ffffffffffffffff8111156128a1576128a0613757565b5b6128ad858286016124f8565b925050602083013567ffffffffffffffff8111156128ce576128cd613757565b5b6128da85828601612526565b9150509250929050565b6000602082840312156128fa576128f961375c565b5b600061290884828501612569565b91505092915050565b6000602082840312156129275761292661375c565b5b60006129358482850161257e565b91505092915050565b6000602082840312156129545761295361375c565b5b600061296284828501612593565b91505092915050565b6000602082840312156129815761298061375c565b5b600061298f84828501612604565b91505092915050565b600080604083850312156129af576129ae61375c565b5b60006129bd85828601612604565b925050602083013567ffffffffffffffff8111156129de576129dd613757565b5b6129ea858286016125d6565b9150509250929050565b60008060008060008060c08789031215612a1157612a1061375c565b5b6000612a1f89828a01612604565b9650506020612a3089828a01612604565b9550506040612a4189828a01612604565b9450506060612a5289828a01612604565b9350506080612a6389828a01612604565b92505060a087013567ffffffffffffffff811115612a8457612a83613757565b5b612a9089828a016125d6565b9150509295509295509295565b6000612aa98383612e4b565b60208301905092915050565b612abe816134d2565b82525050565b6000612acf826133c1565b612ad981856133ef565b9350612ae4836133b1565b8060005b83811015612b15578151612afc8882612a9d565b9750612b07836133e2565b925050600181019050612ae8565b5085935050505092915050565b612b2b816134e4565b82525050565b6000612b3c826133cc565b612b468185613400565b9350612b5681856020860161358b565b612b5f81613761565b840191505092915050565b612b7381613546565b82525050565b6000612b84826133d7565b612b8e8185613411565b9350612b9e81856020860161358b565b612ba781613761565b840191505092915050565b6000612bbf603483613411565b9150612bca8261377f565b604082019050919050565b6000612be2602f83613411565b9150612bed826137ce565b604082019050919050565b6000612c05601483613411565b9150612c108261381d565b602082019050919050565b6000612c28602883613411565b9150612c3382613846565b604082019050919050565b6000612c4b601483613411565b9150612c5682613895565b602082019050919050565b6000612c6e602683613411565b9150612c79826138be565b604082019050919050565b6000612c91602a83613411565b9150612c9c8261390d565b604082019050919050565b6000612cb4601083613411565b9150612cbf8261395c565b602082019050919050565b6000612cd7602583613411565b9150612ce282613985565b604082019050919050565b6000612cfa602a83613411565b9150612d05826139d4565b604082019050919050565b6000612d1d602083613411565b9150612d2882613a23565b602082019050919050565b6000612d40602883613411565b9150612d4b82613a4c565b604082019050919050565b6000612d63601783613411565b9150612d6e82613a9b565b602082019050919050565b6000612d86600883613411565b9150612d9182613ac4565b602082019050919050565b6000612da9602983613411565b9150612db482613aed565b604082019050919050565b6000612dcc602983613411565b9150612dd782613b3c565b604082019050919050565b6000612def602d83613411565b9150612dfa82613b8b565b604082019050919050565b6000612e12602883613411565b9150612e1d82613bda565b604082019050919050565b6000612e35602183613411565b9150612e4082613c29565b604082019050919050565b612e548161353c565b82525050565b612e638161353c565b82525050565b6000602082019050612e7e6000830184612ab5565b92915050565b600060a082019050612e996000830188612ab5565b612ea66020830187612ab5565b8181036040830152612eb88186612ac4565b90508181036060830152612ecc8185612ac4565b90508181036080830152612ee08184612b31565b90509695505050505050565b6000606082019050612f016000830186612ab5565b612f0e6020830185612ab5565b612f1b6040830184612e5a565b949350505050565b600060a082019050612f386000830188612ab5565b612f456020830187612ab5565b612f526040830186612e5a565b612f5f6060830185612e5a565b8181036080830152612f718184612b31565b90509695505050505050565b60006020820190508181036000830152612f978184612ac4565b905092915050565b60006040820190508181036000830152612fb98185612ac4565b90508181036020830152612fcd8184612ac4565b90509392505050565b6000602082019050612feb6000830184612b22565b92915050565b60006020820190506130066000830184612b6a565b92915050565b600060208201905081810360008301526130268184612b79565b905092915050565b6000602082019050818103600083015261304781612bb2565b9050919050565b6000602082019050818103600083015261306781612bd5565b9050919050565b6000602082019050818103600083015261308781612bf8565b9050919050565b600060208201905081810360008301526130a781612c1b565b9050919050565b600060208201905081810360008301526130c781612c3e565b9050919050565b600060208201905081810360008301526130e781612c61565b9050919050565b6000602082019050818103600083015261310781612c84565b9050919050565b6000602082019050818103600083015261312781612ca7565b9050919050565b6000602082019050818103600083015261314781612cca565b9050919050565b6000602082019050818103600083015261316781612ced565b9050919050565b6000602082019050818103600083015261318781612d10565b9050919050565b600060208201905081810360008301526131a781612d33565b9050919050565b600060208201905081810360008301526131c781612d56565b9050919050565b600060208201905081810360008301526131e781612d79565b9050919050565b6000602082019050818103600083015261320781612d9c565b9050919050565b6000602082019050818103600083015261322781612dbf565b9050919050565b6000602082019050818103600083015261324781612de2565b9050919050565b6000602082019050818103600083015261326781612e05565b9050919050565b6000602082019050818103600083015261328781612e28565b9050919050565b60006020820190506132a36000830184612e5a565b92915050565b60006040820190506132be6000830185612e5a565b6132cb6020830184612e5a565b9392505050565b60006132dc6132ed565b90506132e882826135f0565b919050565b6000604051905090565b600067ffffffffffffffff821115613312576133116136f7565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561333e5761333d6136f7565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561336a576133696136f7565b5b61337382613761565b9050602081019050919050565b600067ffffffffffffffff82111561339b5761339a6136f7565b5b6133a482613761565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061342d8261353c565b91506134388361353c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561346d5761346c61366a565b5b828201905092915050565b60006134838261353c565b915061348e8361353c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134c7576134c661366a565b5b828202905092915050565b60006134dd8261351c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061355182613558565b9050919050565b60006135638261356a565b9050919050565b60006135758261351c565b9050919050565b82818337600083830152505050565b60005b838110156135a957808201518184015260208101905061358e565b838111156135b8576000848401525b50505050565b600060028204905060018216806135d657607f821691505b602082108114156135ea576135e9613699565b5b50919050565b6135f982613761565b810181811067ffffffffffffffff82111715613618576136176136f7565b5b80604052505050565b600061362c8261353c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561365f5761365e61366a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156137455760046000803e613742600051613772565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f4578636565647320546865205478204c696d6974000000000000000000000000600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e696420646f6573206e6f742065786973742e000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f596f752063616e20686f6c64206d6f7265207468616e207768617420796f752060008201527f6861766520616c72656164792e00000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613c8857613d0b565b613c906132ed565b60043d036004823e80513d602482011167ffffffffffffffff82111715613cb8575050613d0b565b808201805167ffffffffffffffff811115613cd65750505050613d0b565b80602083010160043d038501811115613cf3575050505050613d0b565b613d02826020018501866135f0565b82955050505050505b90565b613d17816134d2565b8114613d2257600080fd5b50565b613d2e816134e4565b8114613d3957600080fd5b50565b613d45816134f0565b8114613d5057600080fd5b50565b613d5c8161353c565b8114613d6757600080fd5b5056fea26469706673582212207f1d0fde246c1f5bced7c3e1ba234f7163b8166df46ea07d667b83409975865364736f6c63430008070033000000000000000000000000adf0ac3059400edfb6131b9fe65feea6ca83ad7600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000043697066733a2f2f516d61517a4857556145634573727142323546584537365572516d6a4c70564b735650346877753955696b6e594b2f6d657461646174612e6a736f6e0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c35760003560e01c80638456cb59116100f9578063ae67d54711610097578063e985e9c511610071578063e985e9c5146104ce578063f242432a146104fe578063f2fde38b1461051a578063fa0b4cb814610536576101c3565b8063ae67d54714610462578063bb6867a114610480578063bd85b0391461049e576101c3565b806395d89b41116100d357806395d89b41146103ee5780639d76ea581461040c578063a0712d681461042a578063a22cb46514610446576101c3565b80638456cb59146103aa578063862440e2146103b45780638da5cb5b146103d0576101c3565b80632eb2c2d6116101665780634f558e79116101405780634f558e7914610336578063507838ba146103665780635c975abb14610382578063715018a6146103a0576101c3565b80632eb2c2d6146102e05780633f4ba83a146102fc5780634e1273f414610306576101c3565b80630e89341c116101a25780630e89341c146102465780631128a5e21461027657806318cae2691461029457806326a4e8d2146102c4576101c3565b8062fdd58e146101c857806301ffc9a7146101f857806306fdde0314610228575b600080fd5b6101e260048036038101906101dd919061282c565b610554565b6040516101ef919061328e565b60405180910390f35b610212600480360381019061020d9190612911565b61061d565b60405161021f9190612fd6565b60405180910390f35b6102306106ff565b60405161023d919061300c565b60405180910390f35b610260600480360381019061025b919061296b565b61078d565b60405161026d919061300c565b60405180910390f35b61027e610832565b60405161028b919061328e565b60405180910390f35b6102ae60048036038101906102a99190612619565b610838565b6040516102bb919061328e565b60405180910390f35b6102de60048036038101906102d99190612619565b610850565b005b6102fa60048036038101906102f59190612686565b61089c565b005b61030461093d565b005b610320600480360381019061031b919061286c565b61094f565b60405161032d9190612f7d565b60405180910390f35b610350600480360381019061034b919061296b565b610a68565b60405161035d9190612fd6565b60405180910390f35b610380600480360381019061037b91906129f4565b610a7c565b005b61038a610b1a565b6040516103979190612fd6565b60405180910390f35b6103a8610b31565b005b6103b2610b45565b005b6103ce60048036038101906103c99190612998565b610b57565b005b6103d8610bc3565b6040516103e59190612e69565b60405180910390f35b6103f6610bed565b604051610403919061300c565b60405180910390f35b610414610c7b565b6040516104219190612ff1565b60405180910390f35b610444600480360381019061043f919061296b565b610ca1565b005b610460600480360381019061045b91906127ec565b610e88565b005b61046a610e9e565b604051610477919061328e565b60405180910390f35b610488610ea4565b604051610495919061328e565b60405180910390f35b6104b860048036038101906104b3919061296b565b610eaa565b6040516104c5919061328e565b60405180910390f35b6104e860048036038101906104e39190612646565b610ec7565b6040516104f59190612fd6565b60405180910390f35b61051860048036038101906105139190612755565b610f5b565b005b610534600480360381019061052f9190612619565b610ffc565b005b61053e611080565b60405161054b919061328e565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bc906130ee565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106f857506106f782611086565b5b9050919050565b600d805461070c906135be565b80601f0160208091040260200160405190810160405280929190818152602001828054610738906135be565b80156107855780601f1061075a57610100808354040283529160200191610785565b820191906000526020600020905b81548152906001019060200180831161076857829003601f168201915b505050505081565b60606007600083815260200190815260200160002080546107ad906135be565b80601f01602080910402602001604051908101604052809291908181526020018280546107d9906135be565b80156108265780601f106107fb57610100808354040283529160200191610826565b820191906000526020600020905b81548152906001019060200180831161080957829003601f168201915b50505050509050919050565b600a5481565b60086020528060005260406000206000915090505481565b6108586110f0565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6108a461116e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108ea57506108e9856108e461116e565b610ec7565b5b610929576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109209061304e565b60405180910390fd5b6109368585858585611176565b5050505050565b6109456110f0565b61094d611498565b565b60608151835114610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c9061320e565b60405180910390fd5b6000835167ffffffffffffffff8111156109b2576109b16136f7565b5b6040519080825280602002602001820160405280156109e05781602001602082028036833780820191505090505b50905060005b8451811015610a5d57610a2d858281518110610a0557610a046136c8565b5b6020026020010151858381518110610a2057610a1f6136c8565b5b6020026020010151610554565b828281518110610a4057610a3f6136c8565b5b60200260200101818152505080610a5690613621565b90506109e6565b508091505092915050565b600080610a7483610eaa565b119050919050565b610a846110f0565b60008611610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe906131ae565b60405180910390fd5b856006819055508460058190555083600a8190555082600c8190555081600b8190555080600760008881526020019081526020016000209080519060200190610b119291906122dc565b50505050505050565b6000600360149054906101000a900460ff16905090565b610b396110f0565b610b4360006114fb565b565b610b4d6110f0565b610b556115c1565b565b610b5f6110f0565b80600760008481526020019081526020016000209080519060200190610b869291906122dc565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051610bb7919061300c565b60405180910390a25050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e8054610bfa906135be565b80601f0160208091040260200160405190810160405280929190818152602001828054610c26906135be565b8015610c735780601f10610c4857610100808354040283529160200191610c73565b820191906000526020600020905b815481529060010190602001808311610c5657829003601f168201915b505050505081565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600081118015610cb35750600c548111155b610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce99061306e565b60405180910390fd5b60055481610d01600654610eaa565b610d0b9190613422565b1115610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d43906131ce565b60405180910390fd5b600b5481610d5c33600654610554565b610d669190613422565b1115610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e9061322e565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3361dead600a5485610df79190613478565b6040518463ffffffff1660e01b8152600401610e1593929190612eec565b602060405180830381600087803b158015610e2f57600080fd5b505af1158015610e43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6791906128e4565b50610e85336006548360405180602001604052806000815250611624565b50565b610e9a610e9361116e565b83836117d5565b5050565b60055481565b60065481565b600060046000838152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f6361116e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610fa95750610fa885610fa361116e565b610ec7565b5b610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf9061304e565b60405180910390fd5b610ff58585858585611942565b5050505050565b6110046110f0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b906130ce565b60405180910390fd5b61107d816114fb565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6110f861116e565b73ffffffffffffffffffffffffffffffffffffffff16611116610bc3565b73ffffffffffffffffffffffffffffffffffffffff161461116c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111639061316e565b60405180910390fd5b565b600033905090565b81518351146111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b19061324e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561122a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112219061312e565b60405180910390fd5b600061123461116e565b9050611244818787878787611bde565b60005b84518110156113f5576000858281518110611265576112646136c8565b5b602002602001015190506000858381518110611284576112836136c8565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131c9061314e565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113da9190613422565b92505081905550505050806113ee90613621565b9050611247565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161146c929190612f9f565b60405180910390a4611482818787878787611bfc565b611490818787878787611c04565b505050505050565b6114a0611deb565b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6114e461116e565b6040516114f19190612e69565b60405180910390a1565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6115c9611e34565b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861160d61116e565b60405161161a9190612e69565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b9061326e565b60405180910390fd5b600061169e61116e565b905060006116ab85611e7e565b905060006116b885611e7e565b90506116c983600089858589611bde565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117289190613422565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516117a69291906132a9565b60405180910390a46117bd83600089858589611bfc565b6117cc83600089898989611ef8565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b906131ee565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119359190612fd6565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a99061312e565b60405180910390fd5b60006119bc61116e565b905060006119c985611e7e565b905060006119d685611e7e565b90506119e6838989858589611bde565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a749061314e565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b329190613422565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051611baf9291906132a9565b60405180910390a4611bc5848a8a86868a611bfc565b611bd3848a8a8a8a8a611ef8565b505050505050505050565b611be6611e34565b611bf48686868686866120df565b505050505050565b505050505050565b611c238473ffffffffffffffffffffffffffffffffffffffff166122b1565b15611de3578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611c69959493929190612e84565b602060405180830381600087803b158015611c8357600080fd5b505af1925050508015611cb457506040513d601f19601f82011682018060405250810190611cb1919061293e565b60015b611d5a57611cc0613726565b806308c379a01415611d1d5750611cd5613c78565b80611ce05750611d1f565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d14919061300c565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d519061302e565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd89061308e565b60405180910390fd5b505b505050505050565b611df3610b1a565b611e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e29906130ae565b60405180910390fd5b565b611e3c610b1a565b15611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e739061310e565b60405180910390fd5b565b60606000600167ffffffffffffffff811115611e9d57611e9c6136f7565b5b604051908082528060200260200182016040528015611ecb5781602001602082028036833780820191505090505b5090508281600081518110611ee357611ee26136c8565b5b60200260200101818152505080915050919050565b611f178473ffffffffffffffffffffffffffffffffffffffff166122b1565b156120d7578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611f5d959493929190612f23565b602060405180830381600087803b158015611f7757600080fd5b505af1925050508015611fa857506040513d601f19601f82011682018060405250810190611fa5919061293e565b60015b61204e57611fb4613726565b806308c379a014156120115750611fc9613c78565b80611fd45750612013565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612008919061300c565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120459061302e565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146120d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cc9061308e565b60405180910390fd5b505b505050505050565b6120ed8686868686866122d4565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561219f5760005b835181101561219d57828181518110612141576121406136c8565b5b6020026020010151600460008684815181106121605761215f6136c8565b5b6020026020010151815260200190815260200160002060008282546121859190613422565b925050819055508061219690613621565b9050612125565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122a95760005b83518110156122a75760008482815181106121f5576121f46136c8565b5b602002602001015190506000848381518110612214576122136136c8565b5b6020026020010151905060006004600084815260200190815260200160002054905081811015612279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122709061318e565b60405180910390fd5b8181036004600085815260200190815260200160002081905550505050806122a090613621565b90506121d7565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b8280546122e8906135be565b90600052602060002090601f01602090048101928261230a5760008555612351565b82601f1061232357805160ff1916838001178555612351565b82800160010185558215612351579182015b82811115612350578251825591602001919060010190612335565b5b50905061235e9190612362565b5090565b5b8082111561237b576000816000905550600101612363565b5090565b600061239261238d846132f7565b6132d2565b905080838252602082019050828560208602820111156123b5576123b461374d565b5b60005b858110156123e557816123cb88826124e3565b8452602084019350602083019250506001810190506123b8565b5050509392505050565b60006124026123fd84613323565b6132d2565b905080838252602082019050828560208602820111156124255761242461374d565b5b60005b85811015612455578161243b8882612604565b845260208401935060208301925050600181019050612428565b5050509392505050565b600061247261246d8461334f565b6132d2565b90508281526020810184848401111561248e5761248d613752565b5b61249984828561357c565b509392505050565b60006124b46124af84613380565b6132d2565b9050828152602081018484840111156124d0576124cf613752565b5b6124db84828561357c565b509392505050565b6000813590506124f281613d0e565b92915050565b600082601f83011261250d5761250c613748565b5b813561251d84826020860161237f565b91505092915050565b600082601f83011261253b5761253a613748565b5b813561254b8482602086016123ef565b91505092915050565b60008135905061256381613d25565b92915050565b60008151905061257881613d25565b92915050565b60008135905061258d81613d3c565b92915050565b6000815190506125a281613d3c565b92915050565b600082601f8301126125bd576125bc613748565b5b81356125cd84826020860161245f565b91505092915050565b600082601f8301126125eb576125ea613748565b5b81356125fb8482602086016124a1565b91505092915050565b60008135905061261381613d53565b92915050565b60006020828403121561262f5761262e61375c565b5b600061263d848285016124e3565b91505092915050565b6000806040838503121561265d5761265c61375c565b5b600061266b858286016124e3565b925050602061267c858286016124e3565b9150509250929050565b600080600080600060a086880312156126a2576126a161375c565b5b60006126b0888289016124e3565b95505060206126c1888289016124e3565b945050604086013567ffffffffffffffff8111156126e2576126e1613757565b5b6126ee88828901612526565b935050606086013567ffffffffffffffff81111561270f5761270e613757565b5b61271b88828901612526565b925050608086013567ffffffffffffffff81111561273c5761273b613757565b5b612748888289016125a8565b9150509295509295909350565b600080600080600060a086880312156127715761277061375c565b5b600061277f888289016124e3565b9550506020612790888289016124e3565b94505060406127a188828901612604565b93505060606127b288828901612604565b925050608086013567ffffffffffffffff8111156127d3576127d2613757565b5b6127df888289016125a8565b9150509295509295909350565b600080604083850312156128035761280261375c565b5b6000612811858286016124e3565b925050602061282285828601612554565b9150509250929050565b600080604083850312156128435761284261375c565b5b6000612851858286016124e3565b925050602061286285828601612604565b9150509250929050565b600080604083850312156128835761288261375c565b5b600083013567ffffffffffffffff8111156128a1576128a0613757565b5b6128ad858286016124f8565b925050602083013567ffffffffffffffff8111156128ce576128cd613757565b5b6128da85828601612526565b9150509250929050565b6000602082840312156128fa576128f961375c565b5b600061290884828501612569565b91505092915050565b6000602082840312156129275761292661375c565b5b60006129358482850161257e565b91505092915050565b6000602082840312156129545761295361375c565b5b600061296284828501612593565b91505092915050565b6000602082840312156129815761298061375c565b5b600061298f84828501612604565b91505092915050565b600080604083850312156129af576129ae61375c565b5b60006129bd85828601612604565b925050602083013567ffffffffffffffff8111156129de576129dd613757565b5b6129ea858286016125d6565b9150509250929050565b60008060008060008060c08789031215612a1157612a1061375c565b5b6000612a1f89828a01612604565b9650506020612a3089828a01612604565b9550506040612a4189828a01612604565b9450506060612a5289828a01612604565b9350506080612a6389828a01612604565b92505060a087013567ffffffffffffffff811115612a8457612a83613757565b5b612a9089828a016125d6565b9150509295509295509295565b6000612aa98383612e4b565b60208301905092915050565b612abe816134d2565b82525050565b6000612acf826133c1565b612ad981856133ef565b9350612ae4836133b1565b8060005b83811015612b15578151612afc8882612a9d565b9750612b07836133e2565b925050600181019050612ae8565b5085935050505092915050565b612b2b816134e4565b82525050565b6000612b3c826133cc565b612b468185613400565b9350612b5681856020860161358b565b612b5f81613761565b840191505092915050565b612b7381613546565b82525050565b6000612b84826133d7565b612b8e8185613411565b9350612b9e81856020860161358b565b612ba781613761565b840191505092915050565b6000612bbf603483613411565b9150612bca8261377f565b604082019050919050565b6000612be2602f83613411565b9150612bed826137ce565b604082019050919050565b6000612c05601483613411565b9150612c108261381d565b602082019050919050565b6000612c28602883613411565b9150612c3382613846565b604082019050919050565b6000612c4b601483613411565b9150612c5682613895565b602082019050919050565b6000612c6e602683613411565b9150612c79826138be565b604082019050919050565b6000612c91602a83613411565b9150612c9c8261390d565b604082019050919050565b6000612cb4601083613411565b9150612cbf8261395c565b602082019050919050565b6000612cd7602583613411565b9150612ce282613985565b604082019050919050565b6000612cfa602a83613411565b9150612d05826139d4565b604082019050919050565b6000612d1d602083613411565b9150612d2882613a23565b602082019050919050565b6000612d40602883613411565b9150612d4b82613a4c565b604082019050919050565b6000612d63601783613411565b9150612d6e82613a9b565b602082019050919050565b6000612d86600883613411565b9150612d9182613ac4565b602082019050919050565b6000612da9602983613411565b9150612db482613aed565b604082019050919050565b6000612dcc602983613411565b9150612dd782613b3c565b604082019050919050565b6000612def602d83613411565b9150612dfa82613b8b565b604082019050919050565b6000612e12602883613411565b9150612e1d82613bda565b604082019050919050565b6000612e35602183613411565b9150612e4082613c29565b604082019050919050565b612e548161353c565b82525050565b612e638161353c565b82525050565b6000602082019050612e7e6000830184612ab5565b92915050565b600060a082019050612e996000830188612ab5565b612ea66020830187612ab5565b8181036040830152612eb88186612ac4565b90508181036060830152612ecc8185612ac4565b90508181036080830152612ee08184612b31565b90509695505050505050565b6000606082019050612f016000830186612ab5565b612f0e6020830185612ab5565b612f1b6040830184612e5a565b949350505050565b600060a082019050612f386000830188612ab5565b612f456020830187612ab5565b612f526040830186612e5a565b612f5f6060830185612e5a565b8181036080830152612f718184612b31565b90509695505050505050565b60006020820190508181036000830152612f978184612ac4565b905092915050565b60006040820190508181036000830152612fb98185612ac4565b90508181036020830152612fcd8184612ac4565b90509392505050565b6000602082019050612feb6000830184612b22565b92915050565b60006020820190506130066000830184612b6a565b92915050565b600060208201905081810360008301526130268184612b79565b905092915050565b6000602082019050818103600083015261304781612bb2565b9050919050565b6000602082019050818103600083015261306781612bd5565b9050919050565b6000602082019050818103600083015261308781612bf8565b9050919050565b600060208201905081810360008301526130a781612c1b565b9050919050565b600060208201905081810360008301526130c781612c3e565b9050919050565b600060208201905081810360008301526130e781612c61565b9050919050565b6000602082019050818103600083015261310781612c84565b9050919050565b6000602082019050818103600083015261312781612ca7565b9050919050565b6000602082019050818103600083015261314781612cca565b9050919050565b6000602082019050818103600083015261316781612ced565b9050919050565b6000602082019050818103600083015261318781612d10565b9050919050565b600060208201905081810360008301526131a781612d33565b9050919050565b600060208201905081810360008301526131c781612d56565b9050919050565b600060208201905081810360008301526131e781612d79565b9050919050565b6000602082019050818103600083015261320781612d9c565b9050919050565b6000602082019050818103600083015261322781612dbf565b9050919050565b6000602082019050818103600083015261324781612de2565b9050919050565b6000602082019050818103600083015261326781612e05565b9050919050565b6000602082019050818103600083015261328781612e28565b9050919050565b60006020820190506132a36000830184612e5a565b92915050565b60006040820190506132be6000830185612e5a565b6132cb6020830184612e5a565b9392505050565b60006132dc6132ed565b90506132e882826135f0565b919050565b6000604051905090565b600067ffffffffffffffff821115613312576133116136f7565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561333e5761333d6136f7565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561336a576133696136f7565b5b61337382613761565b9050602081019050919050565b600067ffffffffffffffff82111561339b5761339a6136f7565b5b6133a482613761565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061342d8261353c565b91506134388361353c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561346d5761346c61366a565b5b828201905092915050565b60006134838261353c565b915061348e8361353c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134c7576134c661366a565b5b828202905092915050565b60006134dd8261351c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061355182613558565b9050919050565b60006135638261356a565b9050919050565b60006135758261351c565b9050919050565b82818337600083830152505050565b60005b838110156135a957808201518184015260208101905061358e565b838111156135b8576000848401525b50505050565b600060028204905060018216806135d657607f821691505b602082108114156135ea576135e9613699565b5b50919050565b6135f982613761565b810181811067ffffffffffffffff82111715613618576136176136f7565b5b80604052505050565b600061362c8261353c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561365f5761365e61366a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156137455760046000803e613742600051613772565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f4578636565647320546865205478204c696d6974000000000000000000000000600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e696420646f6573206e6f742065786973742e000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f596f752063616e20686f6c64206d6f7265207468616e207768617420796f752060008201527f6861766520616c72656164792e00000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613c8857613d0b565b613c906132ed565b60043d036004823e80513d602482011167ffffffffffffffff82111715613cb8575050613d0b565b808201805167ffffffffffffffff811115613cd65750505050613d0b565b80602083010160043d038501811115613cf3575050505050613d0b565b613d02826020018501866135f0565b82955050505050505b90565b613d17816134d2565b8114613d2257600080fd5b50565b613d2e816134e4565b8114613d3957600080fd5b50565b613d45816134f0565b8114613d5057600080fd5b50565b613d5c8161353c565b8114613d6757600080fd5b5056fea26469706673582212207f1d0fde246c1f5bced7c3e1ba234f7163b8166df46ea07d667b83409975865364736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000adf0ac3059400edfb6131b9fe65feea6ca83ad7600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000043697066733a2f2f516d61517a4857556145634573727142323546584537365572516d6a4c70564b735650346877753955696b6e594b2f6d657461646174612e6a736f6e0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenAddress (address): 0xADf0Ac3059400edFB6131b9fe65FeEa6cA83ad76
Arg [1] : newuri (string): ipfs://QmaQzHWUaEcEsrqB25FXE76UrQmjLpVKsVP4hwu9UiknYK/metadata.json

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000adf0ac3059400edfb6131b9fe65feea6ca83ad76
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [3] : 697066733a2f2f516d61517a4857556145634573727142323546584537365572
Arg [4] : 516d6a4c70564b735650346877753955696b6e594b2f6d657461646174612e6a
Arg [5] : 736f6e0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47369:2498:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29251:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28274:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47784:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49435:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47669:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47572:55;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48369:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31195:439;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48296:65;;;:::i;:::-;;29647:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45735:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48497:417;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5490:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8361:103;;;:::i;:::-;;48227:61;;;:::i;:::-;;48078:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7713:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47809:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47636:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48922:505;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30244:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47453:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47492:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45524:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30471:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30711:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8619:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47712:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29251:230;29337:7;29384:1;29365:21;;:7;:21;;;;29357:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;29451:9;:13;29461:2;29451:13;;;;;;;;;;;:22;29465:7;29451:22;;;;;;;;;;;;;;;;29444:29;;29251:230;;;;:::o;28274:310::-;28376:4;28428:26;28413:41;;;:11;:41;;;;:110;;;;28486:37;28471:52;;;:11;:52;;;;28413:110;:163;;;;28540:36;28564:11;28540:23;:36::i;:::-;28413:163;28393:183;;28274:310;;;:::o;47784:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49435:107::-;49488:13;49521:8;:13;49530:3;49521:13;;;;;;;;;;;49514:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49435:107;;;:::o;47669:36::-;;;;:::o;47572:55::-;;;;;;;;;;;;;;;;;:::o;48369:120::-;7599:13;:11;:13::i;:::-;48467::::1;48445:12;;:36;;;;;;;;;;;;;;;;;;48369:120:::0;:::o;31195:439::-;31436:12;:10;:12::i;:::-;31428:20;;:4;:20;;;:60;;;;31452:36;31469:4;31475:12;:10;:12::i;:::-;31452:16;:36::i;:::-;31428:60;31406:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;31574:52;31597:4;31603:2;31607:3;31612:7;31621:4;31574:22;:52::i;:::-;31195:439;;;;;:::o;48296:65::-;7599:13;:11;:13::i;:::-;48343:10:::1;:8;:10::i;:::-;48296:65::o:0;29647:524::-;29803:16;29864:3;:10;29845:8;:15;:29;29837:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;29933:30;29980:8;:15;29966:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29933:63;;30014:9;30009:122;30033:8;:15;30029:1;:19;30009:122;;;30089:30;30099:8;30108:1;30099:11;;;;;;;;:::i;:::-;;;;;;;;30112:3;30116:1;30112:6;;;;;;;;:::i;:::-;;;;;;;;30089:9;:30::i;:::-;30070:13;30084:1;30070:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;30050:3;;;;:::i;:::-;;;30009:122;;;;30150:13;30143:20;;;29647:524;;;;:::o;45735:122::-;45792:4;45848:1;45816:29;45842:2;45816:25;:29::i;:::-;:33;45809:40;;45735:122;;;:::o;48497:417::-;7599:13;:11;:13::i;:::-;48678:1:::1;48672:3;:7;48664:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;48738:3;48728:7;:13;;;;48766:12;48752:11;:26;;;;48801:10;48789:9;:22;;;;48830:6;48822:5;:14;;;;48861:12;48847:11;:26;;;;48900:6;48884:8;:13;48893:3;48884:13;;;;;;;;;;;:22;;;;;;;;;;;;:::i;:::-;;48497:417:::0;;;;;;:::o;5490:86::-;5537:4;5561:7;;;;;;;;;;;5554:14;;5490:86;:::o;8361:103::-;7599:13;:11;:13::i;:::-;8426:30:::1;8453:1;8426:18;:30::i;:::-;8361:103::o:0;48227:61::-;7599:13;:11;:13::i;:::-;48272:8:::1;:6;:8::i;:::-;48227:61::o:0;48078:141::-;7599:13;:11;:13::i;:::-;48173:6:::1;48157:8;:13;48166:3;48157:13;;;;;;;;;;;:22;;;;;;;;;;;;:::i;:::-;;48207:3;48195:16;48199:6;48195:16;;;;;;:::i;:::-;;;;;;;;48078:141:::0;;:::o;7713:87::-;7759:7;7786:6;;;;;;;;;;;7779:13;;7713:87;:::o;47809:20::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47636:26::-;;;;;;;;;;;;;:::o;48922:505::-;49001:1;48992:6;:10;:29;;;;;49016:5;;49006:6;:15;;48992:29;48984:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49098:11;;49088:6;49065:20;49077:7;;49065:11;:20::i;:::-;:29;;;;:::i;:::-;:44;;49057:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49184:11;;49174:6;49141:30;49151:10;49163:7;;49141:9;:30::i;:::-;:39;;;;:::i;:::-;:54;;49133:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;49258:12;;;;;;;;;;;:25;;;49284:10;49304:42;49358:9;;49349:6;:18;;;;:::i;:::-;49258:110;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49381:38;49387:10;49399:7;;49408:6;49381:38;;;;;;;;;;;;:5;:38::i;:::-;48922:505;:::o;30244:155::-;30339:52;30358:12;:10;:12::i;:::-;30372:8;30382;30339:18;:52::i;:::-;30244:155;;:::o;47453:32::-;;;;:::o;47492:23::-;;;;:::o;45524:113::-;45586:7;45613:12;:16;45626:2;45613:16;;;;;;;;;;;;45606:23;;45524:113;;;:::o;30471:168::-;30570:4;30594:18;:27;30613:7;30594:27;;;;;;;;;;;;;;;:37;30622:8;30594:37;;;;;;;;;;;;;;;;;;;;;;;;;30587:44;;30471:168;;;;:::o;30711:407::-;30927:12;:10;:12::i;:::-;30919:20;;:4;:20;;;:60;;;;30943:36;30960:4;30966:12;:10;:12::i;:::-;30943:16;:36::i;:::-;30919:60;30897:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;31065:45;31083:4;31089:2;31093;31097:6;31105:4;31065:17;:45::i;:::-;30711:407;;;;;:::o;8619:201::-;7599:13;:11;:13::i;:::-;8728:1:::1;8708:22;;:8;:22;;;;8700:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8784:28;8803:8;8784:18;:28::i;:::-;8619:201:::0;:::o;47712:31::-;;;;:::o;19531:157::-;19616:4;19655:25;19640:40;;;:11;:40;;;;19633:47;;19531:157;;;:::o;7878:132::-;7953:12;:10;:12::i;:::-;7942:23;;:7;:5;:7::i;:::-;:23;;;7934:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7878:132::o;3597:98::-;3650:7;3677:10;3670:17;;3597:98;:::o;33430:1146::-;33657:7;:14;33643:3;:10;:28;33635:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;33749:1;33735:16;;:2;:16;;;;33727:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;33806:16;33825:12;:10;:12::i;:::-;33806:31;;33850:60;33871:8;33881:4;33887:2;33891:3;33896:7;33905:4;33850:20;:60::i;:::-;33928:9;33923:421;33947:3;:10;33943:1;:14;33923:421;;;33979:10;33992:3;33996:1;33992:6;;;;;;;;:::i;:::-;;;;;;;;33979:19;;34013:14;34030:7;34038:1;34030:10;;;;;;;;:::i;:::-;;;;;;;;34013:27;;34057:19;34079:9;:13;34089:2;34079:13;;;;;;;;;;;:19;34093:4;34079:19;;;;;;;;;;;;;;;;34057:41;;34136:6;34121:11;:21;;34113:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;34269:6;34255:11;:20;34233:9;:13;34243:2;34233:13;;;;;;;;;;;:19;34247:4;34233:19;;;;;;;;;;;;;;;:42;;;;34326:6;34305:9;:13;34315:2;34305:13;;;;;;;;;;;:17;34319:2;34305:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;33964:380;;;33959:3;;;;:::i;:::-;;;33923:421;;;;34391:2;34361:47;;34385:4;34361:47;;34375:8;34361:47;;;34395:3;34400:7;34361:47;;;;;;;:::i;:::-;;;;;;;;34421:59;34441:8;34451:4;34457:2;34461:3;34466:7;34475:4;34421:19;:59::i;:::-;34493:75;34529:8;34539:4;34545:2;34549:3;34554:7;34563:4;34493:35;:75::i;:::-;33624:952;33430:1146;;;;;:::o;6345:120::-;5354:16;:14;:16::i;:::-;6414:5:::1;6404:7;;:15;;;;;;;;;;;;;;;;;;6435:22;6444:12;:10;:12::i;:::-;6435:22;;;;;;:::i;:::-;;;;;;;;6345:120::o:0;8980:191::-;9054:16;9073:6;;;;;;;;;;;9054:25;;9099:8;9090:6;;:17;;;;;;;;;;;;;;;;;;9154:8;9123:40;;9144:8;9123:40;;;;;;;;;;;;9043:128;8980:191;:::o;6086:118::-;5095:19;:17;:19::i;:::-;6156:4:::1;6146:7;;:14;;;;;;;;;;;;;;;;;;6176:20;6183:12;:10;:12::i;:::-;6176:20;;;;;;:::i;:::-;;;;;;;;6086:118::o:0;35894:729::-;36061:1;36047:16;;:2;:16;;;;36039:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36114:16;36133:12;:10;:12::i;:::-;36114:31;;36156:20;36179:21;36197:2;36179:17;:21::i;:::-;36156:44;;36211:24;36238:25;36256:6;36238:17;:25::i;:::-;36211:52;;36276:66;36297:8;36315:1;36319:2;36323:3;36328:7;36337:4;36276:20;:66::i;:::-;36376:6;36355:9;:13;36365:2;36355:13;;;;;;;;;;;:17;36369:2;36355:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;36435:2;36398:52;;36431:1;36398:52;;36413:8;36398:52;;;36439:2;36443:6;36398:52;;;;;;;:::i;:::-;;;;;;;;36463:65;36483:8;36501:1;36505:2;36509:3;36514:7;36523:4;36463:19;:65::i;:::-;36541:74;36572:8;36590:1;36594:2;36598;36602:6;36610:4;36541:30;:74::i;:::-;36028:595;;;35894:729;;;;:::o;40307:331::-;40462:8;40453:17;;:5;:17;;;;40445:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;40565:8;40527:18;:25;40546:5;40527:25;;;;;;;;;;;;;;;:35;40553:8;40527:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;40611:8;40589:41;;40604:5;40589:41;;;40621:8;40589:41;;;;;;:::i;:::-;;;;;;;;40307:331;;;:::o;32098:974::-;32300:1;32286:16;;:2;:16;;;;32278:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32357:16;32376:12;:10;:12::i;:::-;32357:31;;32399:20;32422:21;32440:2;32422:17;:21::i;:::-;32399:44;;32454:24;32481:25;32499:6;32481:17;:25::i;:::-;32454:52;;32519:60;32540:8;32550:4;32556:2;32560:3;32565:7;32574:4;32519:20;:60::i;:::-;32592:19;32614:9;:13;32624:2;32614:13;;;;;;;;;;;:19;32628:4;32614:19;;;;;;;;;;;;;;;;32592:41;;32667:6;32652:11;:21;;32644:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;32792:6;32778:11;:20;32756:9;:13;32766:2;32756:13;;;;;;;;;;;:19;32770:4;32756:19;;;;;;;;;;;;;;;:42;;;;32841:6;32820:9;:13;32830:2;32820:13;;;;;;;;;;;:17;32834:2;32820:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;32896:2;32865:46;;32890:4;32865:46;;32880:8;32865:46;;;32900:2;32904:6;32865:46;;;;;;;:::i;:::-;;;;;;;;32924:59;32944:8;32954:4;32960:2;32964:3;32969:7;32978:4;32924:19;:59::i;:::-;32996:68;33027:8;33037:4;33043:2;33047;33051:6;33059:4;32996:30;:68::i;:::-;32267:805;;;;32098:974;;;;;:::o;49550:314::-;5095:19;:17;:19::i;:::-;49790:66:::1;49817:8;49827:4;49833:2;49837:3;49842:7;49851:4;49790:26;:66::i;:::-;49550:314:::0;;;;;;:::o;42772:220::-;;;;;;;:::o;43752:813::-;43992:15;:2;:13;;;:15::i;:::-;43988:570;;;44045:2;44028:43;;;44072:8;44082:4;44088:3;44093:7;44102:4;44028:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44024:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;44420:6;44413:14;;;;;;;;;;;:::i;:::-;;;;;;;;44024:523;;;44469:62;;;;;;;;;;:::i;:::-;;;;;;;;44024:523;44201:48;;;44189:60;;;:8;:60;;;;44185:159;;44274:50;;;;;;;;;;:::i;:::-;;;;;;;;44185:159;44108:251;43988:570;43752:813;;;;;;:::o;5834:108::-;5901:8;:6;:8::i;:::-;5893:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5834:108::o;5649:::-;5720:8;:6;:8::i;:::-;5719:9;5711:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;5649:108::o;44573:198::-;44639:16;44668:22;44707:1;44693:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44668:41;;44731:7;44720:5;44726:1;44720:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;44758:5;44751:12;;;44573:198;;;:::o;43000:744::-;43215:15;:2;:13;;;:15::i;:::-;43211:526;;;43268:2;43251:38;;;43290:8;43300:4;43306:2;43310:6;43318:4;43251:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43247:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;43599:6;43592:14;;;;;;;;;;;:::i;:::-;;;;;;;;43247:479;;;43648:62;;;;;;;;;;:::i;:::-;;;;;;;;43247:479;43385:43;;;43373:55;;;:8;:55;;;;43369:154;;43453:50;;;;;;;;;;:::i;:::-;;;;;;;;43369:154;43324:214;43211:526;43000:744;;;;;;:::o;45932:931::-;46171:66;46198:8;46208:4;46214:2;46218:3;46223:7;46232:4;46171:26;:66::i;:::-;46270:1;46254:18;;:4;:18;;;46250:160;;;46294:9;46289:110;46313:3;:10;46309:1;:14;46289:110;;;46373:7;46381:1;46373:10;;;;;;;;:::i;:::-;;;;;;;;46349:12;:20;46362:3;46366:1;46362:6;;;;;;;;:::i;:::-;;;;;;;;46349:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;46325:3;;;;:::i;:::-;;;46289:110;;;;46250:160;46440:1;46426:16;;:2;:16;;;46422:434;;;46464:9;46459:386;46483:3;:10;46479:1;:14;46459:386;;;46519:10;46532:3;46536:1;46532:6;;;;;;;;:::i;:::-;;;;;;;;46519:19;;46557:14;46574:7;46582:1;46574:10;;;;;;;;:::i;:::-;;;;;;;;46557:27;;46603:14;46620:12;:16;46633:2;46620:16;;;;;;;;;;;;46603:33;;46673:6;46663;:16;;46655:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;46804:6;46795;:15;46776:12;:16;46789:2;46776:16;;;;;;;;;;;:34;;;;46500:345;;;46495:3;;;;:::i;:::-;;;46459:386;;;;46422:434;45932:931;;;;;;:::o;10417:326::-;10477:4;10734:1;10712:7;:19;;;:23;10705:30;;10417:326;;;:::o;41596:221::-;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:137::-;3455:5;3486:6;3480:13;3471:22;;3502:30;3526:5;3502:30;:::i;:::-;3401:137;;;;:::o;3544:::-;3589:5;3627:6;3614:20;3605:29;;3643:32;3669:5;3643:32;:::i;:::-;3544:137;;;;:::o;3687:141::-;3743:5;3774:6;3768:13;3759:22;;3790:32;3816:5;3790:32;:::i;:::-;3687:141;;;;:::o;3847:338::-;3902:5;3951:3;3944:4;3936:6;3932:17;3928:27;3918:122;;3959:79;;:::i;:::-;3918:122;4076:6;4063:20;4101:78;4175:3;4167:6;4160:4;4152:6;4148:17;4101:78;:::i;:::-;4092:87;;3908:277;3847:338;;;;:::o;4205:340::-;4261:5;4310:3;4303:4;4295:6;4291:17;4287:27;4277:122;;4318:79;;:::i;:::-;4277:122;4435:6;4422:20;4460:79;4535:3;4527:6;4520:4;4512:6;4508:17;4460:79;:::i;:::-;4451:88;;4267:278;4205:340;;;;:::o;4551:139::-;4597:5;4635:6;4622:20;4613:29;;4651:33;4678:5;4651:33;:::i;:::-;4551:139;;;;:::o;4696:329::-;4755:6;4804:2;4792:9;4783:7;4779:23;4775:32;4772:119;;;4810:79;;:::i;:::-;4772:119;4930:1;4955:53;5000:7;4991:6;4980:9;4976:22;4955:53;:::i;:::-;4945:63;;4901:117;4696:329;;;;:::o;5031:474::-;5099:6;5107;5156:2;5144:9;5135:7;5131:23;5127:32;5124:119;;;5162:79;;:::i;:::-;5124:119;5282:1;5307:53;5352:7;5343:6;5332:9;5328:22;5307:53;:::i;:::-;5297:63;;5253:117;5409:2;5435:53;5480:7;5471:6;5460:9;5456:22;5435:53;:::i;:::-;5425:63;;5380:118;5031:474;;;;;:::o;5511:1509::-;5665:6;5673;5681;5689;5697;5746:3;5734:9;5725:7;5721:23;5717:33;5714:120;;;5753:79;;:::i;:::-;5714:120;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;6000:2;6026:53;6071:7;6062:6;6051:9;6047:22;6026:53;:::i;:::-;6016:63;;5971:118;6156:2;6145:9;6141:18;6128:32;6187:18;6179:6;6176:30;6173:117;;;6209:79;;:::i;:::-;6173:117;6314:78;6384:7;6375:6;6364:9;6360:22;6314:78;:::i;:::-;6304:88;;6099:303;6469:2;6458:9;6454:18;6441:32;6500:18;6492:6;6489:30;6486:117;;;6522:79;;:::i;:::-;6486:117;6627:78;6697:7;6688:6;6677:9;6673:22;6627:78;:::i;:::-;6617:88;;6412:303;6782:3;6771:9;6767:19;6754:33;6814:18;6806:6;6803:30;6800:117;;;6836:79;;:::i;:::-;6800:117;6941:62;6995:7;6986:6;6975:9;6971:22;6941:62;:::i;:::-;6931:72;;6725:288;5511:1509;;;;;;;;:::o;7026:1089::-;7130:6;7138;7146;7154;7162;7211:3;7199:9;7190:7;7186:23;7182:33;7179:120;;;7218:79;;:::i;:::-;7179:120;7338:1;7363:53;7408:7;7399:6;7388:9;7384:22;7363:53;:::i;:::-;7353:63;;7309:117;7465:2;7491:53;7536:7;7527:6;7516:9;7512:22;7491:53;:::i;:::-;7481:63;;7436:118;7593:2;7619:53;7664:7;7655:6;7644:9;7640:22;7619:53;:::i;:::-;7609:63;;7564:118;7721:2;7747:53;7792:7;7783:6;7772:9;7768:22;7747:53;:::i;:::-;7737:63;;7692:118;7877:3;7866:9;7862:19;7849:33;7909:18;7901:6;7898:30;7895:117;;;7931:79;;:::i;:::-;7895:117;8036:62;8090:7;8081:6;8070:9;8066:22;8036:62;:::i;:::-;8026:72;;7820:288;7026:1089;;;;;;;;:::o;8121:468::-;8186:6;8194;8243:2;8231:9;8222:7;8218:23;8214:32;8211:119;;;8249:79;;:::i;:::-;8211:119;8369:1;8394:53;8439:7;8430:6;8419:9;8415:22;8394:53;:::i;:::-;8384:63;;8340:117;8496:2;8522:50;8564:7;8555:6;8544:9;8540:22;8522:50;:::i;:::-;8512:60;;8467:115;8121:468;;;;;:::o;8595:474::-;8663:6;8671;8720:2;8708:9;8699:7;8695:23;8691:32;8688:119;;;8726:79;;:::i;:::-;8688:119;8846:1;8871:53;8916:7;8907:6;8896:9;8892:22;8871:53;:::i;:::-;8861:63;;8817:117;8973:2;8999:53;9044:7;9035:6;9024:9;9020:22;8999:53;:::i;:::-;8989:63;;8944:118;8595:474;;;;;:::o;9075:894::-;9193:6;9201;9250:2;9238:9;9229:7;9225:23;9221:32;9218:119;;;9256:79;;:::i;:::-;9218:119;9404:1;9393:9;9389:17;9376:31;9434:18;9426:6;9423:30;9420:117;;;9456:79;;:::i;:::-;9420:117;9561:78;9631:7;9622:6;9611:9;9607:22;9561:78;:::i;:::-;9551:88;;9347:302;9716:2;9705:9;9701:18;9688:32;9747:18;9739:6;9736:30;9733:117;;;9769:79;;:::i;:::-;9733:117;9874:78;9944:7;9935:6;9924:9;9920:22;9874:78;:::i;:::-;9864:88;;9659:303;9075:894;;;;;:::o;9975:345::-;10042:6;10091:2;10079:9;10070:7;10066:23;10062:32;10059:119;;;10097:79;;:::i;:::-;10059:119;10217:1;10242:61;10295:7;10286:6;10275:9;10271:22;10242:61;:::i;:::-;10232:71;;10188:125;9975:345;;;;:::o;10326:327::-;10384:6;10433:2;10421:9;10412:7;10408:23;10404:32;10401:119;;;10439:79;;:::i;:::-;10401:119;10559:1;10584:52;10628:7;10619:6;10608:9;10604:22;10584:52;:::i;:::-;10574:62;;10530:116;10326:327;;;;:::o;10659:349::-;10728:6;10777:2;10765:9;10756:7;10752:23;10748:32;10745:119;;;10783:79;;:::i;:::-;10745:119;10903:1;10928:63;10983:7;10974:6;10963:9;10959:22;10928:63;:::i;:::-;10918:73;;10874:127;10659:349;;;;:::o;11014:329::-;11073:6;11122:2;11110:9;11101:7;11097:23;11093:32;11090:119;;;11128:79;;:::i;:::-;11090:119;11248:1;11273:53;11318:7;11309:6;11298:9;11294:22;11273:53;:::i;:::-;11263:63;;11219:117;11014:329;;;;:::o;11349:654::-;11427:6;11435;11484:2;11472:9;11463:7;11459:23;11455:32;11452:119;;;11490:79;;:::i;:::-;11452:119;11610:1;11635:53;11680:7;11671:6;11660:9;11656:22;11635:53;:::i;:::-;11625:63;;11581:117;11765:2;11754:9;11750:18;11737:32;11796:18;11788:6;11785:30;11782:117;;;11818:79;;:::i;:::-;11782:117;11923:63;11978:7;11969:6;11958:9;11954:22;11923:63;:::i;:::-;11913:73;;11708:288;11349:654;;;;;:::o;12009:1237::-;12123:6;12131;12139;12147;12155;12163;12212:3;12200:9;12191:7;12187:23;12183:33;12180:120;;;12219:79;;:::i;:::-;12180:120;12339:1;12364:53;12409:7;12400:6;12389:9;12385:22;12364:53;:::i;:::-;12354:63;;12310:117;12466:2;12492:53;12537:7;12528:6;12517:9;12513:22;12492:53;:::i;:::-;12482:63;;12437:118;12594:2;12620:53;12665:7;12656:6;12645:9;12641:22;12620:53;:::i;:::-;12610:63;;12565:118;12722:2;12748:53;12793:7;12784:6;12773:9;12769:22;12748:53;:::i;:::-;12738:63;;12693:118;12850:3;12877:53;12922:7;12913:6;12902:9;12898:22;12877:53;:::i;:::-;12867:63;;12821:119;13007:3;12996:9;12992:19;12979:33;13039:18;13031:6;13028:30;13025:117;;;13061:79;;:::i;:::-;13025:117;13166:63;13221:7;13212:6;13201:9;13197:22;13166:63;:::i;:::-;13156:73;;12950:289;12009:1237;;;;;;;;:::o;13252:179::-;13321:10;13342:46;13384:3;13376:6;13342:46;:::i;:::-;13420:4;13415:3;13411:14;13397:28;;13252:179;;;;:::o;13437:118::-;13524:24;13542:5;13524:24;:::i;:::-;13519:3;13512:37;13437:118;;:::o;13591:732::-;13710:3;13739:54;13787:5;13739:54;:::i;:::-;13809:86;13888:6;13883:3;13809:86;:::i;:::-;13802:93;;13919:56;13969:5;13919:56;:::i;:::-;13998:7;14029:1;14014:284;14039:6;14036:1;14033:13;14014:284;;;14115:6;14109:13;14142:63;14201:3;14186:13;14142:63;:::i;:::-;14135:70;;14228:60;14281:6;14228:60;:::i;:::-;14218:70;;14074:224;14061:1;14058;14054:9;14049:14;;14014:284;;;14018:14;14314:3;14307:10;;13715:608;;;13591:732;;;;:::o;14329:109::-;14410:21;14425:5;14410:21;:::i;:::-;14405:3;14398:34;14329:109;;:::o;14444:360::-;14530:3;14558:38;14590:5;14558:38;:::i;:::-;14612:70;14675:6;14670:3;14612:70;:::i;:::-;14605:77;;14691:52;14736:6;14731:3;14724:4;14717:5;14713:16;14691:52;:::i;:::-;14768:29;14790:6;14768:29;:::i;:::-;14763:3;14759:39;14752:46;;14534:270;14444:360;;;;:::o;14810:157::-;14910:50;14954:5;14910:50;:::i;:::-;14905:3;14898:63;14810:157;;:::o;14973:364::-;15061:3;15089:39;15122:5;15089:39;:::i;:::-;15144:71;15208:6;15203:3;15144:71;:::i;:::-;15137:78;;15224:52;15269:6;15264:3;15257:4;15250:5;15246:16;15224:52;:::i;:::-;15301:29;15323:6;15301:29;:::i;:::-;15296:3;15292:39;15285:46;;15065:272;14973:364;;;;:::o;15343:366::-;15485:3;15506:67;15570:2;15565:3;15506:67;:::i;:::-;15499:74;;15582:93;15671:3;15582:93;:::i;:::-;15700:2;15695:3;15691:12;15684:19;;15343:366;;;:::o;15715:::-;15857:3;15878:67;15942:2;15937:3;15878:67;:::i;:::-;15871:74;;15954:93;16043:3;15954:93;:::i;:::-;16072:2;16067:3;16063:12;16056:19;;15715:366;;;:::o;16087:::-;16229:3;16250:67;16314:2;16309:3;16250:67;:::i;:::-;16243:74;;16326:93;16415:3;16326:93;:::i;:::-;16444:2;16439:3;16435:12;16428:19;;16087:366;;;:::o;16459:::-;16601:3;16622:67;16686:2;16681:3;16622:67;:::i;:::-;16615:74;;16698:93;16787:3;16698:93;:::i;:::-;16816:2;16811:3;16807:12;16800:19;;16459:366;;;:::o;16831:::-;16973:3;16994:67;17058:2;17053:3;16994:67;:::i;:::-;16987:74;;17070:93;17159:3;17070:93;:::i;:::-;17188:2;17183:3;17179:12;17172:19;;16831:366;;;:::o;17203:::-;17345:3;17366:67;17430:2;17425:3;17366:67;:::i;:::-;17359:74;;17442:93;17531:3;17442:93;:::i;:::-;17560:2;17555:3;17551:12;17544:19;;17203:366;;;:::o;17575:::-;17717:3;17738:67;17802:2;17797:3;17738:67;:::i;:::-;17731:74;;17814:93;17903:3;17814:93;:::i;:::-;17932:2;17927:3;17923:12;17916:19;;17575:366;;;:::o;17947:::-;18089:3;18110:67;18174:2;18169:3;18110:67;:::i;:::-;18103:74;;18186:93;18275:3;18186:93;:::i;:::-;18304:2;18299:3;18295:12;18288:19;;17947:366;;;:::o;18319:::-;18461:3;18482:67;18546:2;18541:3;18482:67;:::i;:::-;18475:74;;18558:93;18647:3;18558:93;:::i;:::-;18676:2;18671:3;18667:12;18660:19;;18319:366;;;:::o;18691:::-;18833:3;18854:67;18918:2;18913:3;18854:67;:::i;:::-;18847:74;;18930:93;19019:3;18930:93;:::i;:::-;19048:2;19043:3;19039:12;19032:19;;18691:366;;;:::o;19063:::-;19205:3;19226:67;19290:2;19285:3;19226:67;:::i;:::-;19219:74;;19302:93;19391:3;19302:93;:::i;:::-;19420:2;19415:3;19411:12;19404:19;;19063:366;;;:::o;19435:::-;19577:3;19598:67;19662:2;19657:3;19598:67;:::i;:::-;19591:74;;19674:93;19763:3;19674:93;:::i;:::-;19792:2;19787:3;19783:12;19776:19;;19435:366;;;:::o;19807:::-;19949:3;19970:67;20034:2;20029:3;19970:67;:::i;:::-;19963:74;;20046:93;20135:3;20046:93;:::i;:::-;20164:2;20159:3;20155:12;20148:19;;19807:366;;;:::o;20179:365::-;20321:3;20342:66;20406:1;20401:3;20342:66;:::i;:::-;20335:73;;20417:93;20506:3;20417:93;:::i;:::-;20535:2;20530:3;20526:12;20519:19;;20179:365;;;:::o;20550:366::-;20692:3;20713:67;20777:2;20772:3;20713:67;:::i;:::-;20706:74;;20789:93;20878:3;20789:93;:::i;:::-;20907:2;20902:3;20898:12;20891:19;;20550:366;;;:::o;20922:::-;21064:3;21085:67;21149:2;21144:3;21085:67;:::i;:::-;21078:74;;21161:93;21250:3;21161:93;:::i;:::-;21279:2;21274:3;21270:12;21263:19;;20922:366;;;:::o;21294:::-;21436:3;21457:67;21521:2;21516:3;21457:67;:::i;:::-;21450:74;;21533:93;21622:3;21533:93;:::i;:::-;21651:2;21646:3;21642:12;21635:19;;21294:366;;;:::o;21666:::-;21808:3;21829:67;21893:2;21888:3;21829:67;:::i;:::-;21822:74;;21905:93;21994:3;21905:93;:::i;:::-;22023:2;22018:3;22014:12;22007:19;;21666:366;;;:::o;22038:::-;22180:3;22201:67;22265:2;22260:3;22201:67;:::i;:::-;22194:74;;22277:93;22366:3;22277:93;:::i;:::-;22395:2;22390:3;22386:12;22379:19;;22038:366;;;:::o;22410:108::-;22487:24;22505:5;22487:24;:::i;:::-;22482:3;22475:37;22410:108;;:::o;22524:118::-;22611:24;22629:5;22611:24;:::i;:::-;22606:3;22599:37;22524:118;;:::o;22648:222::-;22741:4;22779:2;22768:9;22764:18;22756:26;;22792:71;22860:1;22849:9;22845:17;22836:6;22792:71;:::i;:::-;22648:222;;;;:::o;22876:1053::-;23199:4;23237:3;23226:9;23222:19;23214:27;;23251:71;23319:1;23308:9;23304:17;23295:6;23251:71;:::i;:::-;23332:72;23400:2;23389:9;23385:18;23376:6;23332:72;:::i;:::-;23451:9;23445:4;23441:20;23436:2;23425:9;23421:18;23414:48;23479:108;23582:4;23573:6;23479:108;:::i;:::-;23471:116;;23634:9;23628:4;23624:20;23619:2;23608:9;23604:18;23597:48;23662:108;23765:4;23756:6;23662:108;:::i;:::-;23654:116;;23818:9;23812:4;23808:20;23802:3;23791:9;23787:19;23780:49;23846:76;23917:4;23908:6;23846:76;:::i;:::-;23838:84;;22876:1053;;;;;;;;:::o;23935:442::-;24084:4;24122:2;24111:9;24107:18;24099:26;;24135:71;24203:1;24192:9;24188:17;24179:6;24135:71;:::i;:::-;24216:72;24284:2;24273:9;24269:18;24260:6;24216:72;:::i;:::-;24298;24366:2;24355:9;24351:18;24342:6;24298:72;:::i;:::-;23935:442;;;;;;:::o;24383:751::-;24606:4;24644:3;24633:9;24629:19;24621:27;;24658:71;24726:1;24715:9;24711:17;24702:6;24658:71;:::i;:::-;24739:72;24807:2;24796:9;24792:18;24783:6;24739:72;:::i;:::-;24821;24889:2;24878:9;24874:18;24865:6;24821:72;:::i;:::-;24903;24971:2;24960:9;24956:18;24947:6;24903:72;:::i;:::-;25023:9;25017:4;25013:20;25007:3;24996:9;24992:19;24985:49;25051:76;25122:4;25113:6;25051:76;:::i;:::-;25043:84;;24383:751;;;;;;;;:::o;25140:373::-;25283:4;25321:2;25310:9;25306:18;25298:26;;25370:9;25364:4;25360:20;25356:1;25345:9;25341:17;25334:47;25398:108;25501:4;25492:6;25398:108;:::i;:::-;25390:116;;25140:373;;;;:::o;25519:634::-;25740:4;25778:2;25767:9;25763:18;25755:26;;25827:9;25821:4;25817:20;25813:1;25802:9;25798:17;25791:47;25855:108;25958:4;25949:6;25855:108;:::i;:::-;25847:116;;26010:9;26004:4;26000:20;25995:2;25984:9;25980:18;25973:48;26038:108;26141:4;26132:6;26038:108;:::i;:::-;26030:116;;25519:634;;;;;:::o;26159:210::-;26246:4;26284:2;26273:9;26269:18;26261:26;;26297:65;26359:1;26348:9;26344:17;26335:6;26297:65;:::i;:::-;26159:210;;;;:::o;26375:248::-;26481:4;26519:2;26508:9;26504:18;26496:26;;26532:84;26613:1;26602:9;26598:17;26589:6;26532:84;:::i;:::-;26375:248;;;;:::o;26629:313::-;26742:4;26780:2;26769:9;26765:18;26757:26;;26829:9;26823:4;26819:20;26815:1;26804:9;26800:17;26793:47;26857:78;26930:4;26921:6;26857:78;:::i;:::-;26849:86;;26629:313;;;;:::o;26948:419::-;27114:4;27152:2;27141:9;27137:18;27129:26;;27201:9;27195:4;27191:20;27187:1;27176:9;27172:17;27165:47;27229:131;27355:4;27229:131;:::i;:::-;27221:139;;26948:419;;;:::o;27373:::-;27539:4;27577:2;27566:9;27562:18;27554:26;;27626:9;27620:4;27616:20;27612:1;27601:9;27597:17;27590:47;27654:131;27780:4;27654:131;:::i;:::-;27646:139;;27373:419;;;:::o;27798:::-;27964:4;28002:2;27991:9;27987:18;27979:26;;28051:9;28045:4;28041:20;28037:1;28026:9;28022:17;28015:47;28079:131;28205:4;28079:131;:::i;:::-;28071:139;;27798:419;;;:::o;28223:::-;28389:4;28427:2;28416:9;28412:18;28404:26;;28476:9;28470:4;28466:20;28462:1;28451:9;28447:17;28440:47;28504:131;28630:4;28504:131;:::i;:::-;28496:139;;28223:419;;;:::o;28648:::-;28814:4;28852:2;28841:9;28837:18;28829:26;;28901:9;28895:4;28891:20;28887:1;28876:9;28872:17;28865:47;28929:131;29055:4;28929:131;:::i;:::-;28921:139;;28648:419;;;:::o;29073:::-;29239:4;29277:2;29266:9;29262:18;29254:26;;29326:9;29320:4;29316:20;29312:1;29301:9;29297:17;29290:47;29354:131;29480:4;29354:131;:::i;:::-;29346:139;;29073:419;;;:::o;29498:::-;29664:4;29702:2;29691:9;29687:18;29679:26;;29751:9;29745:4;29741:20;29737:1;29726:9;29722:17;29715:47;29779:131;29905:4;29779:131;:::i;:::-;29771:139;;29498:419;;;:::o;29923:::-;30089:4;30127:2;30116:9;30112:18;30104:26;;30176:9;30170:4;30166:20;30162:1;30151:9;30147:17;30140:47;30204:131;30330:4;30204:131;:::i;:::-;30196:139;;29923:419;;;:::o;30348:::-;30514:4;30552:2;30541:9;30537:18;30529:26;;30601:9;30595:4;30591:20;30587:1;30576:9;30572:17;30565:47;30629:131;30755:4;30629:131;:::i;:::-;30621:139;;30348:419;;;:::o;30773:::-;30939:4;30977:2;30966:9;30962:18;30954:26;;31026:9;31020:4;31016:20;31012:1;31001:9;30997:17;30990:47;31054:131;31180:4;31054:131;:::i;:::-;31046:139;;30773:419;;;:::o;31198:::-;31364:4;31402:2;31391:9;31387:18;31379:26;;31451:9;31445:4;31441:20;31437:1;31426:9;31422:17;31415:47;31479:131;31605:4;31479:131;:::i;:::-;31471:139;;31198:419;;;:::o;31623:::-;31789:4;31827:2;31816:9;31812:18;31804:26;;31876:9;31870:4;31866:20;31862:1;31851:9;31847:17;31840:47;31904:131;32030:4;31904:131;:::i;:::-;31896:139;;31623:419;;;:::o;32048:::-;32214:4;32252:2;32241:9;32237:18;32229:26;;32301:9;32295:4;32291:20;32287:1;32276:9;32272:17;32265:47;32329:131;32455:4;32329:131;:::i;:::-;32321:139;;32048:419;;;:::o;32473:::-;32639:4;32677:2;32666:9;32662:18;32654:26;;32726:9;32720:4;32716:20;32712:1;32701:9;32697:17;32690:47;32754:131;32880:4;32754:131;:::i;:::-;32746:139;;32473:419;;;:::o;32898:::-;33064:4;33102:2;33091:9;33087:18;33079:26;;33151:9;33145:4;33141:20;33137:1;33126:9;33122:17;33115:47;33179:131;33305:4;33179:131;:::i;:::-;33171:139;;32898:419;;;:::o;33323:::-;33489:4;33527:2;33516:9;33512:18;33504:26;;33576:9;33570:4;33566:20;33562:1;33551:9;33547:17;33540:47;33604:131;33730:4;33604:131;:::i;:::-;33596:139;;33323:419;;;:::o;33748:::-;33914:4;33952:2;33941:9;33937:18;33929:26;;34001:9;33995:4;33991:20;33987:1;33976:9;33972:17;33965:47;34029:131;34155:4;34029:131;:::i;:::-;34021:139;;33748:419;;;:::o;34173:::-;34339:4;34377:2;34366:9;34362:18;34354:26;;34426:9;34420:4;34416:20;34412:1;34401:9;34397:17;34390:47;34454:131;34580:4;34454:131;:::i;:::-;34446:139;;34173:419;;;:::o;34598:::-;34764:4;34802:2;34791:9;34787:18;34779:26;;34851:9;34845:4;34841:20;34837:1;34826:9;34822:17;34815:47;34879:131;35005:4;34879:131;:::i;:::-;34871:139;;34598:419;;;:::o;35023:222::-;35116:4;35154:2;35143:9;35139:18;35131:26;;35167:71;35235:1;35224:9;35220:17;35211:6;35167:71;:::i;:::-;35023:222;;;;:::o;35251:332::-;35372:4;35410:2;35399:9;35395:18;35387:26;;35423:71;35491:1;35480:9;35476:17;35467:6;35423:71;:::i;:::-;35504:72;35572:2;35561:9;35557:18;35548:6;35504:72;:::i;:::-;35251:332;;;;;:::o;35589:129::-;35623:6;35650:20;;:::i;:::-;35640:30;;35679:33;35707:4;35699:6;35679:33;:::i;:::-;35589:129;;;:::o;35724:75::-;35757:6;35790:2;35784:9;35774:19;;35724:75;:::o;35805:311::-;35882:4;35972:18;35964:6;35961:30;35958:56;;;35994:18;;:::i;:::-;35958:56;36044:4;36036:6;36032:17;36024:25;;36104:4;36098;36094:15;36086:23;;35805:311;;;:::o;36122:::-;36199:4;36289:18;36281:6;36278:30;36275:56;;;36311:18;;:::i;:::-;36275:56;36361:4;36353:6;36349:17;36341:25;;36421:4;36415;36411:15;36403:23;;36122:311;;;:::o;36439:307::-;36500:4;36590:18;36582:6;36579:30;36576:56;;;36612:18;;:::i;:::-;36576:56;36650:29;36672:6;36650:29;:::i;:::-;36642:37;;36734:4;36728;36724:15;36716:23;;36439:307;;;:::o;36752:308::-;36814:4;36904:18;36896:6;36893:30;36890:56;;;36926:18;;:::i;:::-;36890:56;36964:29;36986:6;36964:29;:::i;:::-;36956:37;;37048:4;37042;37038:15;37030:23;;36752:308;;;:::o;37066:132::-;37133:4;37156:3;37148:11;;37186:4;37181:3;37177:14;37169:22;;37066:132;;;:::o;37204:114::-;37271:6;37305:5;37299:12;37289:22;;37204:114;;;:::o;37324:98::-;37375:6;37409:5;37403:12;37393:22;;37324:98;;;:::o;37428:99::-;37480:6;37514:5;37508:12;37498:22;;37428:99;;;:::o;37533:113::-;37603:4;37635;37630:3;37626:14;37618:22;;37533:113;;;:::o;37652:184::-;37751:11;37785:6;37780:3;37773:19;37825:4;37820:3;37816:14;37801:29;;37652:184;;;;:::o;37842:168::-;37925:11;37959:6;37954:3;37947:19;37999:4;37994:3;37990:14;37975:29;;37842:168;;;;:::o;38016:169::-;38100:11;38134:6;38129:3;38122:19;38174:4;38169:3;38165:14;38150:29;;38016:169;;;;:::o;38191:305::-;38231:3;38250:20;38268:1;38250:20;:::i;:::-;38245:25;;38284:20;38302:1;38284:20;:::i;:::-;38279:25;;38438:1;38370:66;38366:74;38363:1;38360:81;38357:107;;;38444:18;;:::i;:::-;38357:107;38488:1;38485;38481:9;38474:16;;38191:305;;;;:::o;38502:348::-;38542:7;38565:20;38583:1;38565:20;:::i;:::-;38560:25;;38599:20;38617:1;38599:20;:::i;:::-;38594:25;;38787:1;38719:66;38715:74;38712:1;38709:81;38704:1;38697:9;38690:17;38686:105;38683:131;;;38794:18;;:::i;:::-;38683:131;38842:1;38839;38835:9;38824:20;;38502:348;;;;:::o;38856:96::-;38893:7;38922:24;38940:5;38922:24;:::i;:::-;38911:35;;38856:96;;;:::o;38958:90::-;38992:7;39035:5;39028:13;39021:21;39010:32;;38958:90;;;:::o;39054:149::-;39090:7;39130:66;39123:5;39119:78;39108:89;;39054:149;;;:::o;39209:126::-;39246:7;39286:42;39279:5;39275:54;39264:65;;39209:126;;;:::o;39341:77::-;39378:7;39407:5;39396:16;;39341:77;;;:::o;39424:139::-;39487:9;39520:37;39551:5;39520:37;:::i;:::-;39507:50;;39424:139;;;:::o;39569:126::-;39619:9;39652:37;39683:5;39652:37;:::i;:::-;39639:50;;39569:126;;;:::o;39701:113::-;39751:9;39784:24;39802:5;39784:24;:::i;:::-;39771:37;;39701:113;;;:::o;39820:154::-;39904:6;39899:3;39894;39881:30;39966:1;39957:6;39952:3;39948:16;39941:27;39820:154;;;:::o;39980:307::-;40048:1;40058:113;40072:6;40069:1;40066:13;40058:113;;;40157:1;40152:3;40148:11;40142:18;40138:1;40133:3;40129:11;40122:39;40094:2;40091:1;40087:10;40082:15;;40058:113;;;40189:6;40186:1;40183:13;40180:101;;;40269:1;40260:6;40255:3;40251:16;40244:27;40180:101;40029:258;39980:307;;;:::o;40293:320::-;40337:6;40374:1;40368:4;40364:12;40354:22;;40421:1;40415:4;40411:12;40442:18;40432:81;;40498:4;40490:6;40486:17;40476:27;;40432:81;40560:2;40552:6;40549:14;40529:18;40526:38;40523:84;;;40579:18;;:::i;:::-;40523:84;40344:269;40293:320;;;:::o;40619:281::-;40702:27;40724:4;40702:27;:::i;:::-;40694:6;40690:40;40832:6;40820:10;40817:22;40796:18;40784:10;40781:34;40778:62;40775:88;;;40843:18;;:::i;:::-;40775:88;40883:10;40879:2;40872:22;40662:238;40619:281;;:::o;40906:233::-;40945:3;40968:24;40986:5;40968:24;:::i;:::-;40959:33;;41014:66;41007:5;41004:77;41001:103;;;41084:18;;:::i;:::-;41001:103;41131:1;41124:5;41120:13;41113:20;;40906:233;;;:::o;41145:180::-;41193:77;41190:1;41183:88;41290:4;41287:1;41280:15;41314:4;41311:1;41304:15;41331:180;41379:77;41376:1;41369:88;41476:4;41473:1;41466:15;41500:4;41497:1;41490:15;41517:180;41565:77;41562:1;41555:88;41662:4;41659:1;41652:15;41686:4;41683:1;41676:15;41703:180;41751:77;41748:1;41741:88;41848:4;41845:1;41838:15;41872:4;41869:1;41862:15;41889:183;41924:3;41962:1;41944:16;41941:23;41938:128;;;42000:1;41997;41994;41979:23;42022:34;42053:1;42047:8;42022:34;:::i;:::-;42015:41;;41938:128;41889:183;:::o;42078:117::-;42187:1;42184;42177:12;42201:117;42310:1;42307;42300:12;42324:117;42433:1;42430;42423:12;42447:117;42556:1;42553;42546:12;42570:117;42679:1;42676;42669:12;42693:102;42734:6;42785:2;42781:7;42776:2;42769:5;42765:14;42761:28;42751:38;;42693:102;;;:::o;42801:106::-;42845:8;42894:5;42889:3;42885:15;42864:36;;42801:106;;;:::o;42913:239::-;43053:34;43049:1;43041:6;43037:14;43030:58;43122:22;43117:2;43109:6;43105:15;43098:47;42913:239;:::o;43158:234::-;43298:34;43294:1;43286:6;43282:14;43275:58;43367:17;43362:2;43354:6;43350:15;43343:42;43158:234;:::o;43398:170::-;43538:22;43534:1;43526:6;43522:14;43515:46;43398:170;:::o;43574:227::-;43714:34;43710:1;43702:6;43698:14;43691:58;43783:10;43778:2;43770:6;43766:15;43759:35;43574:227;:::o;43807:170::-;43947:22;43943:1;43935:6;43931:14;43924:46;43807:170;:::o;43983:225::-;44123:34;44119:1;44111:6;44107:14;44100:58;44192:8;44187:2;44179:6;44175:15;44168:33;43983:225;:::o;44214:229::-;44354:34;44350:1;44342:6;44338:14;44331:58;44423:12;44418:2;44410:6;44406:15;44399:37;44214:229;:::o;44449:166::-;44589:18;44585:1;44577:6;44573:14;44566:42;44449:166;:::o;44621:224::-;44761:34;44757:1;44749:6;44745:14;44738:58;44830:7;44825:2;44817:6;44813:15;44806:32;44621:224;:::o;44851:229::-;44991:34;44987:1;44979:6;44975:14;44968:58;45060:12;45055:2;45047:6;45043:15;45036:37;44851:229;:::o;45086:182::-;45226:34;45222:1;45214:6;45210:14;45203:58;45086:182;:::o;45274:227::-;45414:34;45410:1;45402:6;45398:14;45391:58;45483:10;45478:2;45470:6;45466:15;45459:35;45274:227;:::o;45507:173::-;45647:25;45643:1;45635:6;45631:14;45624:49;45507:173;:::o;45686:158::-;45826:10;45822:1;45814:6;45810:14;45803:34;45686:158;:::o;45850:228::-;45990:34;45986:1;45978:6;45974:14;45967:58;46059:11;46054:2;46046:6;46042:15;46035:36;45850:228;:::o;46084:::-;46224:34;46220:1;46212:6;46208:14;46201:58;46293:11;46288:2;46280:6;46276:15;46269:36;46084:228;:::o;46318:232::-;46458:34;46454:1;46446:6;46442:14;46435:58;46527:15;46522:2;46514:6;46510:15;46503:40;46318:232;:::o;46556:227::-;46696:34;46692:1;46684:6;46680:14;46673:58;46765:10;46760:2;46752:6;46748:15;46741:35;46556:227;:::o;46789:220::-;46929:34;46925:1;46917:6;46913:14;46906:58;46998:3;46993:2;46985:6;46981:15;46974:28;46789:220;:::o;47015:711::-;47054:3;47092:4;47074:16;47071:26;47068:39;;;47100:5;;47068:39;47129:20;;:::i;:::-;47204:1;47186:16;47182:24;47179:1;47173:4;47158:49;47237:4;47231:11;47336:16;47329:4;47321:6;47317:17;47314:39;47281:18;47273:6;47270:30;47254:113;47251:146;;;47382:5;;;;47251:146;47428:6;47422:4;47418:17;47464:3;47458:10;47491:18;47483:6;47480:30;47477:43;;;47513:5;;;;;;47477:43;47561:6;47554:4;47549:3;47545:14;47541:27;47620:1;47602:16;47598:24;47592:4;47588:35;47583:3;47580:44;47577:57;;;47627:5;;;;;;;47577:57;47644;47692:6;47686:4;47682:17;47674:6;47670:30;47664:4;47644:57;:::i;:::-;47717:3;47710:10;;47058:668;;;;;47015:711;;:::o;47732:122::-;47805:24;47823:5;47805:24;:::i;:::-;47798:5;47795:35;47785:63;;47844:1;47841;47834:12;47785:63;47732:122;:::o;47860:116::-;47930:21;47945:5;47930:21;:::i;:::-;47923:5;47920:32;47910:60;;47966:1;47963;47956:12;47910:60;47860:116;:::o;47982:120::-;48054:23;48071:5;48054:23;:::i;:::-;48047:5;48044:34;48034:62;;48092:1;48089;48082:12;48034:62;47982:120;:::o;48108:122::-;48181:24;48199:5;48181:24;:::i;:::-;48174:5;48171:35;48161:63;;48220:1;48217;48210:12;48161:63;48108:122;:::o

Swarm Source

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