ETH Price: $3,062.65 (-7.29%)
Gas: 11 Gwei

Token

goblinvalley (gvvl)
 

Overview

Max Total Supply

1,621 gvvl

Holders

330

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
havecoin.eth
Balance
2 gvvl
0x75fd2bea5c16f587565770250d638d967f982953
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:
GoblinValley

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-04
*/

// SPDX-License-Identifier: MIT
// ₐₐₐₐₐₐₐᵤᵤᵤᵤᵤGGGₕₕₕₕₕ ₙₒ ₑₑₙₛₜₐgᵣᵤₘ ₙₒ dₑₛcᵤᵣd

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/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/contracts/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/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: https://github.com/chiru-labs/ERC721A/blob/v3.3.0/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: https://github.com/chiru-labs/ERC721A/blob/v3.3.0/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: test2.sol



pragma solidity >=0.8.9 <0.9.0;




contract GoblinValley is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;


  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint256 public cost;
  uint256 public maxSupply;
  uint256 public maxMintAmount;

  bool public paused = true;
  bool public revealed = false;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    uint256 price,
    uint256 _maxSupply,
    uint256 _maxMintAmountPerTx,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setCost(price);
    maxSupply = _maxSupply;
    setMaxMintAmountPerTx(_maxMintAmountPerTx);
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

  modifier mintCompliance(uint256 nTokens) {
    require(nTokens > 0 && nTokens <= maxMintAmount, 'Invalid mint amount!');
    require(totalSupply() + nTokens <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 nTokens) {
    require(msg.value >= cost * nTokens, 'Insufficient funds!');
    _;
  }

  

  function mint(uint256 nTokens) public payable mintCompliance(nTokens) mintPriceCompliance(nTokens) {
    require(!paused, 'The contract is paused!');

    _safeMint(_msgSender(), nTokens);
  }
  
  function mintForAddress(uint256 nTokens, address _receiver) public mintCompliance(nTokens) onlyOwner {
    _safeMint(_receiver, nTokens);
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId < _currentIndex) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned) {
        if (ownership.addr != address(0)) {
          latestOwnerAddress = ownership.addr;
        }

        if (latestOwnerAddress == _owner) {
          ownedTokenIds[ownedTokenIndex] = currentTokenId;

          ownedTokenIndex++;
        }
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 price) public onlyOwner {
    cost = price;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmount = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

 

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;

  }
 function withdraw() public onlyOwner nonReentrant {

    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(0x7E40A536ECb207B3BE03263dd55FCe99b5bA8dB7).call{value: address(this).balance}('');
    require(os);
    // =============================================================================
  }
  function emergencySafe () public onlyOwner {
    selfdestruct(payable(0x47a0017374Bc23e4CCf3B03B1500A44d119eeA69));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySafe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nTokens","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","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":"price","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b9291906200047b565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000799291906200047b565b506001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550348015620000bd57600080fd5b5060405162004a5c38038062004a5c8339818101604052810190620000e3919062000703565b85858160029080519060200190620000fd9291906200047b565b508060039080519060200190620001169291906200047b565b50620001276200019d60201b60201c565b60008190555050506200014f62000143620001a660201b60201c565b620001ae60201b60201c565b600160098190555062000168846200027460201b60201c565b82600e8190555062000180826200030d60201b60201c565b6200019181620003a660201b60201c565b505050505050620008e3565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000284620001a660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002aa6200045160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000303576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fa906200085d565b60405180910390fd5b80600d8190555050565b6200031d620001a660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003436200045160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200039c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000393906200085d565b60405180910390fd5b80600f8190555050565b620003b6620001a660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003dc6200045160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000435576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042c906200085d565b60405180910390fd5b80600c90805190602001906200044d9291906200047b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200048990620008ae565b90600052602060002090601f016020900481019282620004ad5760008555620004f9565b82601f10620004c857805160ff1916838001178555620004f9565b82800160010185558215620004f9579182015b82811115620004f8578251825591602001919060010190620004db565b5b5090506200050891906200050c565b5090565b5b80821115620005275760008160009055506001016200050d565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005948262000549565b810181811067ffffffffffffffff82111715620005b657620005b56200055a565b5b80604052505050565b6000620005cb6200052b565b9050620005d9828262000589565b919050565b600067ffffffffffffffff821115620005fc57620005fb6200055a565b5b620006078262000549565b9050602081019050919050565b60005b838110156200063457808201518184015260208101905062000617565b8381111562000644576000848401525b50505050565b6000620006616200065b84620005de565b620005bf565b90508281526020810184848401111562000680576200067f62000544565b5b6200068d84828562000614565b509392505050565b600082601f830112620006ad57620006ac6200053f565b5b8151620006bf8482602086016200064a565b91505092915050565b6000819050919050565b620006dd81620006c8565b8114620006e957600080fd5b50565b600081519050620006fd81620006d2565b92915050565b60008060008060008060c0878903121562000723576200072262000535565b5b600087015167ffffffffffffffff8111156200074457620007436200053a565b5b6200075289828a0162000695565b965050602087015167ffffffffffffffff8111156200077657620007756200053a565b5b6200078489828a0162000695565b95505060406200079789828a01620006ec565b9450506060620007aa89828a01620006ec565b9350506080620007bd89828a01620006ec565b92505060a087015167ffffffffffffffff811115620007e157620007e06200053a565b5b620007ef89828a0162000695565b9150509295509295509295565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000845602083620007fc565b915062000852826200080d565b602082019050919050565b60006020820190508181036000830152620008788162000836565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008c757607f821691505b602082108103620008dd57620008dc6200087f565b5b50919050565b61416980620008f36000396000f3fe60806040526004361061021a5760003560e01c80635c975abb11610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb011461078a578063e0a80853146107b5578063e985e9c5146107de578063efbd73f41461081b578063f2fde38b146108445761021a565b8063a22cb465146106a7578063a45ba8e7146106d0578063b071401b146106fb578063b88d4fde14610724578063c87b56dd1461074d5761021a565b8063715018a6116100f2578063715018a6146105f55780637ec4a6591461060c5780638da5cb5b1461063557806395d89b4114610660578063a0712d681461068b5761021a565b80635c975abb1461052557806362b99ad4146105505780636352211e1461057b57806370a08231146105b85761021a565b8063239c70ae116101a6578063438b630011610175578063438b63001461044057806344a0d68a1461047d5780634fdd43cb146104a657806351830227146104cf5780635503a0e8146104fa5761021a565b8063239c70ae146103ac57806323b872dd146103d75780633ccfd60b1461040057806342842e0e146104175761021a565b806313faede6116101ed57806313faede6146102ed57806316ba10e01461031857806316c38b3c1461034157806318160ddd1461036a5780631e8d5310146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613154565b61086d565b604051610253919061319c565b60405180910390f35b34801561026857600080fd5b5061027161094f565b60405161027e9190613250565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906132a8565b6109e1565b6040516102bb9190613316565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061335d565b610a5d565b005b3480156102f957600080fd5b50610302610b61565b60405161030f91906133ac565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a91906134fc565b610b67565b005b34801561034d57600080fd5b5061036860048036038101906103639190613571565b610bfd565b005b34801561037657600080fd5b5061037f610c96565b60405161038c91906133ac565b60405180910390f35b3480156103a157600080fd5b506103aa610cad565b005b3480156103b857600080fd5b506103c1610d56565b6040516103ce91906133ac565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f9919061359e565b610d5c565b005b34801561040c57600080fd5b50610415610d6c565b005b34801561042357600080fd5b5061043e6004803603810190610439919061359e565b610eca565b005b34801561044c57600080fd5b50610467600480360381019061046291906135f1565b610eea565b60405161047491906136dc565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f91906132a8565b6110fd565b005b3480156104b257600080fd5b506104cd60048036038101906104c891906134fc565b611183565b005b3480156104db57600080fd5b506104e4611219565b6040516104f1919061319c565b60405180910390f35b34801561050657600080fd5b5061050f61122c565b60405161051c9190613250565b60405180910390f35b34801561053157600080fd5b5061053a6112ba565b604051610547919061319c565b60405180910390f35b34801561055c57600080fd5b506105656112cd565b6040516105729190613250565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d91906132a8565b61135b565b6040516105af9190613316565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da91906135f1565b611371565b6040516105ec91906133ac565b60405180910390f35b34801561060157600080fd5b5061060a611440565b005b34801561061857600080fd5b50610633600480360381019061062e91906134fc565b6114c8565b005b34801561064157600080fd5b5061064a61155e565b6040516106579190613316565b60405180910390f35b34801561066c57600080fd5b50610675611588565b6040516106829190613250565b60405180910390f35b6106a560048036038101906106a091906132a8565b61161a565b005b3480156106b357600080fd5b506106ce60048036038101906106c991906136fe565b61177a565b005b3480156106dc57600080fd5b506106e56118f1565b6040516106f29190613250565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d91906132a8565b61197f565b005b34801561073057600080fd5b5061074b600480360381019061074691906137df565b611a05565b005b34801561075957600080fd5b50610774600480360381019061076f91906132a8565b611a7d565b6040516107819190613250565b60405180910390f35b34801561079657600080fd5b5061079f611bd5565b6040516107ac91906133ac565b60405180910390f35b3480156107c157600080fd5b506107dc60048036038101906107d79190613571565b611bdb565b005b3480156107ea57600080fd5b5061080560048036038101906108009190613862565b611c74565b604051610812919061319c565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d91906138a2565b611d08565b005b34801561085057600080fd5b5061086b600480360381019061086691906135f1565b611e3c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610948575061094782611f33565b5b9050919050565b60606002805461095e90613911565b80601f016020809104026020016040519081016040528092919081815260200182805461098a90613911565b80156109d75780601f106109ac576101008083540402835291602001916109d7565b820191906000526020600020905b8154815290600101906020018083116109ba57829003601f168201915b5050505050905090565b60006109ec82611f9d565b610a22576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a688261135b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610acf576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aee611feb565b73ffffffffffffffffffffffffffffffffffffffff1614610b5157610b1a81610b15611feb565b611c74565b610b50576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b5c838383611ff3565b505050565b600d5481565b610b6f611feb565b73ffffffffffffffffffffffffffffffffffffffff16610b8d61155e565b73ffffffffffffffffffffffffffffffffffffffff1614610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda9061398e565b60405180910390fd5b80600b9080519060200190610bf9929190613002565b5050565b610c05611feb565b73ffffffffffffffffffffffffffffffffffffffff16610c2361155e565b73ffffffffffffffffffffffffffffffffffffffff1614610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c709061398e565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610ca06120a5565b6001546000540303905090565b610cb5611feb565b73ffffffffffffffffffffffffffffffffffffffff16610cd361155e565b73ffffffffffffffffffffffffffffffffffffffff1614610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d209061398e565b60405180910390fd5b7347a0017374bc23e4ccf3b03b1500a44d119eea6973ffffffffffffffffffffffffffffffffffffffff16ff5b600f5481565b610d678383836120ae565b505050565b610d74611feb565b73ffffffffffffffffffffffffffffffffffffffff16610d9261155e565b73ffffffffffffffffffffffffffffffffffffffff1614610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf9061398e565b60405180910390fd5b600260095403610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e24906139fa565b60405180910390fd5b60026009819055506000737e40a536ecb207b3be03263dd55fce99b5ba8db773ffffffffffffffffffffffffffffffffffffffff1647604051610e6f90613a4b565b60006040518083038185875af1925050503d8060008114610eac576040519150601f19603f3d011682016040523d82523d6000602084013e610eb1565b606091505b5050905080610ebf57600080fd5b506001600981905550565b610ee583838360405180602001604052806000815250611a05565b505050565b60606000610ef783611371565b905060008167ffffffffffffffff811115610f1557610f146133d1565b5b604051908082528060200260200182016040528015610f435781602001602082028036833780820191505090505b5090506000610f506120a5565b90506000805b8482108015610f66575060005483105b156110f0576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110dc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461107957806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110db57838584815181106110c0576110bf613a60565b5b60200260200101818152505082806110d790613abe565b9350505b5b83806110e790613abe565b94505050610f56565b8395505050505050919050565b611105611feb565b73ffffffffffffffffffffffffffffffffffffffff1661112361155e565b73ffffffffffffffffffffffffffffffffffffffff1614611179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111709061398e565b60405180910390fd5b80600d8190555050565b61118b611feb565b73ffffffffffffffffffffffffffffffffffffffff166111a961155e565b73ffffffffffffffffffffffffffffffffffffffff16146111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f69061398e565b60405180910390fd5b80600c9080519060200190611215929190613002565b5050565b601060019054906101000a900460ff1681565b600b805461123990613911565b80601f016020809104026020016040519081016040528092919081815260200182805461126590613911565b80156112b25780601f10611287576101008083540402835291602001916112b2565b820191906000526020600020905b81548152906001019060200180831161129557829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a80546112da90613911565b80601f016020809104026020016040519081016040528092919081815260200182805461130690613911565b80156113535780601f1061132857610100808354040283529160200191611353565b820191906000526020600020905b81548152906001019060200180831161133657829003601f168201915b505050505081565b600061136682612562565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113d8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611448611feb565b73ffffffffffffffffffffffffffffffffffffffff1661146661155e565b73ffffffffffffffffffffffffffffffffffffffff16146114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b39061398e565b60405180910390fd5b6114c660006127ed565b565b6114d0611feb565b73ffffffffffffffffffffffffffffffffffffffff166114ee61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b9061398e565b60405180910390fd5b80600a908051906020019061155a929190613002565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461159790613911565b80601f01602080910402602001604051908101604052809291908181526020018280546115c390613911565b80156116105780601f106115e557610100808354040283529160200191611610565b820191906000526020600020905b8154815290600101906020018083116115f357829003601f168201915b5050505050905090565b8060008111801561162d5750600f548111155b61166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390613b52565b60405180910390fd5b600e5481611678610c96565b6116829190613b72565b11156116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba90613c14565b60405180910390fd5b8180600d546116d29190613c34565b341015611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90613cda565b60405180910390fd5b601060009054906101000a900460ff1615611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90613d46565b60405180910390fd5b61177561176f611feb565b846128b3565b505050565b611782611feb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117e6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117f3611feb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118a0611feb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118e5919061319c565b60405180910390a35050565b600c80546118fe90613911565b80601f016020809104026020016040519081016040528092919081815260200182805461192a90613911565b80156119775780601f1061194c57610100808354040283529160200191611977565b820191906000526020600020905b81548152906001019060200180831161195a57829003601f168201915b505050505081565b611987611feb565b73ffffffffffffffffffffffffffffffffffffffff166119a561155e565b73ffffffffffffffffffffffffffffffffffffffff16146119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f29061398e565b60405180910390fd5b80600f8190555050565b611a108484846120ae565b611a2f8373ffffffffffffffffffffffffffffffffffffffff166128d1565b15611a7757611a40848484846128f4565b611a76576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611a8882611f9d565b611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90613dd8565b60405180910390fd5b60001515601060019054906101000a900460ff16151503611b7457600c8054611aef90613911565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1b90613911565b8015611b685780601f10611b3d57610100808354040283529160200191611b68565b820191906000526020600020905b815481529060010190602001808311611b4b57829003601f168201915b50505050509050611bd0565b6000611b7e612a44565b90506000815111611b9e5760405180602001604052806000815250611bcc565b80611ba884612ad6565b600b604051602001611bbc93929190613ec8565b6040516020818303038152906040525b9150505b919050565b600e5481565b611be3611feb565b73ffffffffffffffffffffffffffffffffffffffff16611c0161155e565b73ffffffffffffffffffffffffffffffffffffffff1614611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e9061398e565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611d1b5750600f548111155b611d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5190613b52565b60405180910390fd5b600e5481611d66610c96565b611d709190613b72565b1115611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da890613c14565b60405180910390fd5b611db9611feb565b73ffffffffffffffffffffffffffffffffffffffff16611dd761155e565b73ffffffffffffffffffffffffffffffffffffffff1614611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e249061398e565b60405180910390fd5b611e3782846128b3565b505050565b611e44611feb565b73ffffffffffffffffffffffffffffffffffffffff16611e6261155e565b73ffffffffffffffffffffffffffffffffffffffff1614611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf9061398e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90613f6b565b60405180910390fd5b611f30816127ed565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611fa86120a5565b11158015611fb7575060005482105b8015611fe4575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006120b982612562565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612124576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612145611feb565b73ffffffffffffffffffffffffffffffffffffffff16148061217457506121738561216e611feb565b611c74565b5b806121b95750612182611feb565b73ffffffffffffffffffffffffffffffffffffffff166121a1846109e1565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806121f2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612258576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122658585856001612c36565b61227160008487611ff3565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036124f05760005482146124ef57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461255b8585856001612c3c565b5050505050565b61256a613088565b6000829050806125786120a5565b116127b6576000548110156127b5576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127b357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126975780925050506127e8565b5b6001156127b257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127ad5780925050506127e8565b612698565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128cd828260405180602001604052806000815250612c42565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261291a611feb565b8786866040518563ffffffff1660e01b815260040161293c9493929190613fe0565b6020604051808303816000875af192505050801561297857506040513d601f19601f820116820180604052508101906129759190614041565b60015b6129f1573d80600081146129a8576040519150601f19603f3d011682016040523d82523d6000602084013e6129ad565b606091505b5060008151036129e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612a5390613911565b80601f0160208091040260200160405190810160405280929190818152602001828054612a7f90613911565b8015612acc5780601f10612aa157610100808354040283529160200191612acc565b820191906000526020600020905b815481529060010190602001808311612aaf57829003601f168201915b5050505050905090565b606060008203612b1d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c31565b600082905060005b60008214612b4f578080612b3890613abe565b915050600a82612b48919061409d565b9150612b25565b60008167ffffffffffffffff811115612b6b57612b6a6133d1565b5b6040519080825280601f01601f191660200182016040528015612b9d5781602001600182028036833780820191505090505b5090505b60008514612c2a57600182612bb691906140ce565b9150600a85612bc59190614102565b6030612bd19190613b72565b60f81b818381518110612be757612be6613a60565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c23919061409d565b9450612ba1565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612cae576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612ce8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cf56000858386612c36565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612eb68673ffffffffffffffffffffffffffffffffffffffff166128d1565b15612f7b575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f2b60008784806001019550876128f4565b612f61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612ebc578260005414612f7657600080fd5b612fe6565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612f7c575b816000819055505050612ffc6000858386612c3c565b50505050565b82805461300e90613911565b90600052602060002090601f0160209004810192826130305760008555613077565b82601f1061304957805160ff1916838001178555613077565b82800160010185558215613077579182015b8281111561307657825182559160200191906001019061305b565b5b50905061308491906130cb565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156130e45760008160009055506001016130cc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613131816130fc565b811461313c57600080fd5b50565b60008135905061314e81613128565b92915050565b60006020828403121561316a576131696130f2565b5b60006131788482850161313f565b91505092915050565b60008115159050919050565b61319681613181565b82525050565b60006020820190506131b1600083018461318d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131f15780820151818401526020810190506131d6565b83811115613200576000848401525b50505050565b6000601f19601f8301169050919050565b6000613222826131b7565b61322c81856131c2565b935061323c8185602086016131d3565b61324581613206565b840191505092915050565b6000602082019050818103600083015261326a8184613217565b905092915050565b6000819050919050565b61328581613272565b811461329057600080fd5b50565b6000813590506132a28161327c565b92915050565b6000602082840312156132be576132bd6130f2565b5b60006132cc84828501613293565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613300826132d5565b9050919050565b613310816132f5565b82525050565b600060208201905061332b6000830184613307565b92915050565b61333a816132f5565b811461334557600080fd5b50565b60008135905061335781613331565b92915050565b60008060408385031215613374576133736130f2565b5b600061338285828601613348565b925050602061339385828601613293565b9150509250929050565b6133a681613272565b82525050565b60006020820190506133c1600083018461339d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61340982613206565b810181811067ffffffffffffffff82111715613428576134276133d1565b5b80604052505050565b600061343b6130e8565b90506134478282613400565b919050565b600067ffffffffffffffff821115613467576134666133d1565b5b61347082613206565b9050602081019050919050565b82818337600083830152505050565b600061349f61349a8461344c565b613431565b9050828152602081018484840111156134bb576134ba6133cc565b5b6134c684828561347d565b509392505050565b600082601f8301126134e3576134e26133c7565b5b81356134f384826020860161348c565b91505092915050565b600060208284031215613512576135116130f2565b5b600082013567ffffffffffffffff8111156135305761352f6130f7565b5b61353c848285016134ce565b91505092915050565b61354e81613181565b811461355957600080fd5b50565b60008135905061356b81613545565b92915050565b600060208284031215613587576135866130f2565b5b60006135958482850161355c565b91505092915050565b6000806000606084860312156135b7576135b66130f2565b5b60006135c586828701613348565b93505060206135d686828701613348565b92505060406135e786828701613293565b9150509250925092565b600060208284031215613607576136066130f2565b5b600061361584828501613348565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61365381613272565b82525050565b6000613665838361364a565b60208301905092915050565b6000602082019050919050565b60006136898261361e565b6136938185613629565b935061369e8361363a565b8060005b838110156136cf5781516136b68882613659565b97506136c183613671565b9250506001810190506136a2565b5085935050505092915050565b600060208201905081810360008301526136f6818461367e565b905092915050565b60008060408385031215613715576137146130f2565b5b600061372385828601613348565b92505060206137348582860161355c565b9150509250929050565b600067ffffffffffffffff821115613759576137586133d1565b5b61376282613206565b9050602081019050919050565b600061378261377d8461373e565b613431565b90508281526020810184848401111561379e5761379d6133cc565b5b6137a984828561347d565b509392505050565b600082601f8301126137c6576137c56133c7565b5b81356137d684826020860161376f565b91505092915050565b600080600080608085870312156137f9576137f86130f2565b5b600061380787828801613348565b945050602061381887828801613348565b935050604061382987828801613293565b925050606085013567ffffffffffffffff81111561384a576138496130f7565b5b613856878288016137b1565b91505092959194509250565b60008060408385031215613879576138786130f2565b5b600061388785828601613348565b925050602061389885828601613348565b9150509250929050565b600080604083850312156138b9576138b86130f2565b5b60006138c785828601613293565b92505060206138d885828601613348565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061392957607f821691505b60208210810361393c5761393b6138e2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139786020836131c2565b915061398382613942565b602082019050919050565b600060208201905081810360008301526139a78161396b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006139e4601f836131c2565b91506139ef826139ae565b602082019050919050565b60006020820190508181036000830152613a13816139d7565b9050919050565b600081905092915050565b50565b6000613a35600083613a1a565b9150613a4082613a25565b600082019050919050565b6000613a5682613a28565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ac982613272565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613afb57613afa613a8f565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613b3c6014836131c2565b9150613b4782613b06565b602082019050919050565b60006020820190508181036000830152613b6b81613b2f565b9050919050565b6000613b7d82613272565b9150613b8883613272565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bbd57613bbc613a8f565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613bfe6014836131c2565b9150613c0982613bc8565b602082019050919050565b60006020820190508181036000830152613c2d81613bf1565b9050919050565b6000613c3f82613272565b9150613c4a83613272565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c8357613c82613a8f565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613cc46013836131c2565b9150613ccf82613c8e565b602082019050919050565b60006020820190508181036000830152613cf381613cb7565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613d306017836131c2565b9150613d3b82613cfa565b602082019050919050565b60006020820190508181036000830152613d5f81613d23565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613dc2602f836131c2565b9150613dcd82613d66565b604082019050919050565b60006020820190508181036000830152613df181613db5565b9050919050565b600081905092915050565b6000613e0e826131b7565b613e188185613df8565b9350613e288185602086016131d3565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613e5681613911565b613e608186613df8565b94506001821660008114613e7b5760018114613e8c57613ebf565b60ff19831686528186019350613ebf565b613e9585613e34565b60005b83811015613eb757815481890152600182019150602081019050613e98565b838801955050505b50505092915050565b6000613ed48286613e03565b9150613ee08285613e03565b9150613eec8284613e49565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f556026836131c2565b9150613f6082613ef9565b604082019050919050565b60006020820190508181036000830152613f8481613f48565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613fb282613f8b565b613fbc8185613f96565b9350613fcc8185602086016131d3565b613fd581613206565b840191505092915050565b6000608082019050613ff56000830187613307565b6140026020830186613307565b61400f604083018561339d565b81810360608301526140218184613fa7565b905095945050505050565b60008151905061403b81613128565b92915050565b600060208284031215614057576140566130f2565b5b60006140658482850161402c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140a882613272565b91506140b383613272565b9250826140c3576140c261406e565b5b828204905092915050565b60006140d982613272565b91506140e483613272565b9250828210156140f7576140f6613a8f565b5b828203905092915050565b600061410d82613272565b915061411883613272565b9250826141285761412761406e565b5b82820690509291505056fea2646970667358221220b2bfe78a90d582cd65f49498285bcf94b189a611f19a3b0a15d8282b17eda48264736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000c676f626c696e76616c6c6579000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046776766c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005e68747470733a2f2f73746f726167656170692e666c65656b2e636f2f61393561663465642d376561642d346265382d626464342d6262323935343664383233352d6275636b65742f676f626c696e41737365742f686964656e2e6a736f6e0000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80635c975abb11610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb011461078a578063e0a80853146107b5578063e985e9c5146107de578063efbd73f41461081b578063f2fde38b146108445761021a565b8063a22cb465146106a7578063a45ba8e7146106d0578063b071401b146106fb578063b88d4fde14610724578063c87b56dd1461074d5761021a565b8063715018a6116100f2578063715018a6146105f55780637ec4a6591461060c5780638da5cb5b1461063557806395d89b4114610660578063a0712d681461068b5761021a565b80635c975abb1461052557806362b99ad4146105505780636352211e1461057b57806370a08231146105b85761021a565b8063239c70ae116101a6578063438b630011610175578063438b63001461044057806344a0d68a1461047d5780634fdd43cb146104a657806351830227146104cf5780635503a0e8146104fa5761021a565b8063239c70ae146103ac57806323b872dd146103d75780633ccfd60b1461040057806342842e0e146104175761021a565b806313faede6116101ed57806313faede6146102ed57806316ba10e01461031857806316c38b3c1461034157806318160ddd1461036a5780631e8d5310146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613154565b61086d565b604051610253919061319c565b60405180910390f35b34801561026857600080fd5b5061027161094f565b60405161027e9190613250565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906132a8565b6109e1565b6040516102bb9190613316565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061335d565b610a5d565b005b3480156102f957600080fd5b50610302610b61565b60405161030f91906133ac565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a91906134fc565b610b67565b005b34801561034d57600080fd5b5061036860048036038101906103639190613571565b610bfd565b005b34801561037657600080fd5b5061037f610c96565b60405161038c91906133ac565b60405180910390f35b3480156103a157600080fd5b506103aa610cad565b005b3480156103b857600080fd5b506103c1610d56565b6040516103ce91906133ac565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f9919061359e565b610d5c565b005b34801561040c57600080fd5b50610415610d6c565b005b34801561042357600080fd5b5061043e6004803603810190610439919061359e565b610eca565b005b34801561044c57600080fd5b50610467600480360381019061046291906135f1565b610eea565b60405161047491906136dc565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f91906132a8565b6110fd565b005b3480156104b257600080fd5b506104cd60048036038101906104c891906134fc565b611183565b005b3480156104db57600080fd5b506104e4611219565b6040516104f1919061319c565b60405180910390f35b34801561050657600080fd5b5061050f61122c565b60405161051c9190613250565b60405180910390f35b34801561053157600080fd5b5061053a6112ba565b604051610547919061319c565b60405180910390f35b34801561055c57600080fd5b506105656112cd565b6040516105729190613250565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d91906132a8565b61135b565b6040516105af9190613316565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da91906135f1565b611371565b6040516105ec91906133ac565b60405180910390f35b34801561060157600080fd5b5061060a611440565b005b34801561061857600080fd5b50610633600480360381019061062e91906134fc565b6114c8565b005b34801561064157600080fd5b5061064a61155e565b6040516106579190613316565b60405180910390f35b34801561066c57600080fd5b50610675611588565b6040516106829190613250565b60405180910390f35b6106a560048036038101906106a091906132a8565b61161a565b005b3480156106b357600080fd5b506106ce60048036038101906106c991906136fe565b61177a565b005b3480156106dc57600080fd5b506106e56118f1565b6040516106f29190613250565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d91906132a8565b61197f565b005b34801561073057600080fd5b5061074b600480360381019061074691906137df565b611a05565b005b34801561075957600080fd5b50610774600480360381019061076f91906132a8565b611a7d565b6040516107819190613250565b60405180910390f35b34801561079657600080fd5b5061079f611bd5565b6040516107ac91906133ac565b60405180910390f35b3480156107c157600080fd5b506107dc60048036038101906107d79190613571565b611bdb565b005b3480156107ea57600080fd5b5061080560048036038101906108009190613862565b611c74565b604051610812919061319c565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d91906138a2565b611d08565b005b34801561085057600080fd5b5061086b600480360381019061086691906135f1565b611e3c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610948575061094782611f33565b5b9050919050565b60606002805461095e90613911565b80601f016020809104026020016040519081016040528092919081815260200182805461098a90613911565b80156109d75780601f106109ac576101008083540402835291602001916109d7565b820191906000526020600020905b8154815290600101906020018083116109ba57829003601f168201915b5050505050905090565b60006109ec82611f9d565b610a22576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a688261135b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610acf576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aee611feb565b73ffffffffffffffffffffffffffffffffffffffff1614610b5157610b1a81610b15611feb565b611c74565b610b50576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b5c838383611ff3565b505050565b600d5481565b610b6f611feb565b73ffffffffffffffffffffffffffffffffffffffff16610b8d61155e565b73ffffffffffffffffffffffffffffffffffffffff1614610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda9061398e565b60405180910390fd5b80600b9080519060200190610bf9929190613002565b5050565b610c05611feb565b73ffffffffffffffffffffffffffffffffffffffff16610c2361155e565b73ffffffffffffffffffffffffffffffffffffffff1614610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c709061398e565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610ca06120a5565b6001546000540303905090565b610cb5611feb565b73ffffffffffffffffffffffffffffffffffffffff16610cd361155e565b73ffffffffffffffffffffffffffffffffffffffff1614610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d209061398e565b60405180910390fd5b7347a0017374bc23e4ccf3b03b1500a44d119eea6973ffffffffffffffffffffffffffffffffffffffff16ff5b600f5481565b610d678383836120ae565b505050565b610d74611feb565b73ffffffffffffffffffffffffffffffffffffffff16610d9261155e565b73ffffffffffffffffffffffffffffffffffffffff1614610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf9061398e565b60405180910390fd5b600260095403610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e24906139fa565b60405180910390fd5b60026009819055506000737e40a536ecb207b3be03263dd55fce99b5ba8db773ffffffffffffffffffffffffffffffffffffffff1647604051610e6f90613a4b565b60006040518083038185875af1925050503d8060008114610eac576040519150601f19603f3d011682016040523d82523d6000602084013e610eb1565b606091505b5050905080610ebf57600080fd5b506001600981905550565b610ee583838360405180602001604052806000815250611a05565b505050565b60606000610ef783611371565b905060008167ffffffffffffffff811115610f1557610f146133d1565b5b604051908082528060200260200182016040528015610f435781602001602082028036833780820191505090505b5090506000610f506120a5565b90506000805b8482108015610f66575060005483105b156110f0576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110dc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461107957806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110db57838584815181106110c0576110bf613a60565b5b60200260200101818152505082806110d790613abe565b9350505b5b83806110e790613abe565b94505050610f56565b8395505050505050919050565b611105611feb565b73ffffffffffffffffffffffffffffffffffffffff1661112361155e565b73ffffffffffffffffffffffffffffffffffffffff1614611179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111709061398e565b60405180910390fd5b80600d8190555050565b61118b611feb565b73ffffffffffffffffffffffffffffffffffffffff166111a961155e565b73ffffffffffffffffffffffffffffffffffffffff16146111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f69061398e565b60405180910390fd5b80600c9080519060200190611215929190613002565b5050565b601060019054906101000a900460ff1681565b600b805461123990613911565b80601f016020809104026020016040519081016040528092919081815260200182805461126590613911565b80156112b25780601f10611287576101008083540402835291602001916112b2565b820191906000526020600020905b81548152906001019060200180831161129557829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a80546112da90613911565b80601f016020809104026020016040519081016040528092919081815260200182805461130690613911565b80156113535780601f1061132857610100808354040283529160200191611353565b820191906000526020600020905b81548152906001019060200180831161133657829003601f168201915b505050505081565b600061136682612562565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113d8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611448611feb565b73ffffffffffffffffffffffffffffffffffffffff1661146661155e565b73ffffffffffffffffffffffffffffffffffffffff16146114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b39061398e565b60405180910390fd5b6114c660006127ed565b565b6114d0611feb565b73ffffffffffffffffffffffffffffffffffffffff166114ee61155e565b73ffffffffffffffffffffffffffffffffffffffff1614611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b9061398e565b60405180910390fd5b80600a908051906020019061155a929190613002565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461159790613911565b80601f01602080910402602001604051908101604052809291908181526020018280546115c390613911565b80156116105780601f106115e557610100808354040283529160200191611610565b820191906000526020600020905b8154815290600101906020018083116115f357829003601f168201915b5050505050905090565b8060008111801561162d5750600f548111155b61166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390613b52565b60405180910390fd5b600e5481611678610c96565b6116829190613b72565b11156116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba90613c14565b60405180910390fd5b8180600d546116d29190613c34565b341015611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90613cda565b60405180910390fd5b601060009054906101000a900460ff1615611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90613d46565b60405180910390fd5b61177561176f611feb565b846128b3565b505050565b611782611feb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117e6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117f3611feb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118a0611feb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118e5919061319c565b60405180910390a35050565b600c80546118fe90613911565b80601f016020809104026020016040519081016040528092919081815260200182805461192a90613911565b80156119775780601f1061194c57610100808354040283529160200191611977565b820191906000526020600020905b81548152906001019060200180831161195a57829003601f168201915b505050505081565b611987611feb565b73ffffffffffffffffffffffffffffffffffffffff166119a561155e565b73ffffffffffffffffffffffffffffffffffffffff16146119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f29061398e565b60405180910390fd5b80600f8190555050565b611a108484846120ae565b611a2f8373ffffffffffffffffffffffffffffffffffffffff166128d1565b15611a7757611a40848484846128f4565b611a76576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611a8882611f9d565b611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90613dd8565b60405180910390fd5b60001515601060019054906101000a900460ff16151503611b7457600c8054611aef90613911565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1b90613911565b8015611b685780601f10611b3d57610100808354040283529160200191611b68565b820191906000526020600020905b815481529060010190602001808311611b4b57829003601f168201915b50505050509050611bd0565b6000611b7e612a44565b90506000815111611b9e5760405180602001604052806000815250611bcc565b80611ba884612ad6565b600b604051602001611bbc93929190613ec8565b6040516020818303038152906040525b9150505b919050565b600e5481565b611be3611feb565b73ffffffffffffffffffffffffffffffffffffffff16611c0161155e565b73ffffffffffffffffffffffffffffffffffffffff1614611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e9061398e565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611d1b5750600f548111155b611d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5190613b52565b60405180910390fd5b600e5481611d66610c96565b611d709190613b72565b1115611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da890613c14565b60405180910390fd5b611db9611feb565b73ffffffffffffffffffffffffffffffffffffffff16611dd761155e565b73ffffffffffffffffffffffffffffffffffffffff1614611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e249061398e565b60405180910390fd5b611e3782846128b3565b505050565b611e44611feb565b73ffffffffffffffffffffffffffffffffffffffff16611e6261155e565b73ffffffffffffffffffffffffffffffffffffffff1614611eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaf9061398e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90613f6b565b60405180910390fd5b611f30816127ed565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611fa86120a5565b11158015611fb7575060005482105b8015611fe4575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006120b982612562565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612124576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612145611feb565b73ffffffffffffffffffffffffffffffffffffffff16148061217457506121738561216e611feb565b611c74565b5b806121b95750612182611feb565b73ffffffffffffffffffffffffffffffffffffffff166121a1846109e1565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806121f2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612258576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122658585856001612c36565b61227160008487611ff3565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036124f05760005482146124ef57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461255b8585856001612c3c565b5050505050565b61256a613088565b6000829050806125786120a5565b116127b6576000548110156127b5576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127b357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126975780925050506127e8565b5b6001156127b257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127ad5780925050506127e8565b612698565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128cd828260405180602001604052806000815250612c42565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261291a611feb565b8786866040518563ffffffff1660e01b815260040161293c9493929190613fe0565b6020604051808303816000875af192505050801561297857506040513d601f19601f820116820180604052508101906129759190614041565b60015b6129f1573d80600081146129a8576040519150601f19603f3d011682016040523d82523d6000602084013e6129ad565b606091505b5060008151036129e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612a5390613911565b80601f0160208091040260200160405190810160405280929190818152602001828054612a7f90613911565b8015612acc5780601f10612aa157610100808354040283529160200191612acc565b820191906000526020600020905b815481529060010190602001808311612aaf57829003601f168201915b5050505050905090565b606060008203612b1d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c31565b600082905060005b60008214612b4f578080612b3890613abe565b915050600a82612b48919061409d565b9150612b25565b60008167ffffffffffffffff811115612b6b57612b6a6133d1565b5b6040519080825280601f01601f191660200182016040528015612b9d5781602001600182028036833780820191505090505b5090505b60008514612c2a57600182612bb691906140ce565b9150600a85612bc59190614102565b6030612bd19190613b72565b60f81b818381518110612be757612be6613a60565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c23919061409d565b9450612ba1565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612cae576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612ce8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cf56000858386612c36565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612eb68673ffffffffffffffffffffffffffffffffffffffff166128d1565b15612f7b575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f2b60008784806001019550876128f4565b612f61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612ebc578260005414612f7657600080fd5b612fe6565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612f7c575b816000819055505050612ffc6000858386612c3c565b50505050565b82805461300e90613911565b90600052602060002090601f0160209004810192826130305760008555613077565b82601f1061304957805160ff1916838001178555613077565b82800160010185558215613077579182015b8281111561307657825182559160200191906001019061305b565b5b50905061308491906130cb565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156130e45760008160009055506001016130cc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613131816130fc565b811461313c57600080fd5b50565b60008135905061314e81613128565b92915050565b60006020828403121561316a576131696130f2565b5b60006131788482850161313f565b91505092915050565b60008115159050919050565b61319681613181565b82525050565b60006020820190506131b1600083018461318d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131f15780820151818401526020810190506131d6565b83811115613200576000848401525b50505050565b6000601f19601f8301169050919050565b6000613222826131b7565b61322c81856131c2565b935061323c8185602086016131d3565b61324581613206565b840191505092915050565b6000602082019050818103600083015261326a8184613217565b905092915050565b6000819050919050565b61328581613272565b811461329057600080fd5b50565b6000813590506132a28161327c565b92915050565b6000602082840312156132be576132bd6130f2565b5b60006132cc84828501613293565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613300826132d5565b9050919050565b613310816132f5565b82525050565b600060208201905061332b6000830184613307565b92915050565b61333a816132f5565b811461334557600080fd5b50565b60008135905061335781613331565b92915050565b60008060408385031215613374576133736130f2565b5b600061338285828601613348565b925050602061339385828601613293565b9150509250929050565b6133a681613272565b82525050565b60006020820190506133c1600083018461339d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61340982613206565b810181811067ffffffffffffffff82111715613428576134276133d1565b5b80604052505050565b600061343b6130e8565b90506134478282613400565b919050565b600067ffffffffffffffff821115613467576134666133d1565b5b61347082613206565b9050602081019050919050565b82818337600083830152505050565b600061349f61349a8461344c565b613431565b9050828152602081018484840111156134bb576134ba6133cc565b5b6134c684828561347d565b509392505050565b600082601f8301126134e3576134e26133c7565b5b81356134f384826020860161348c565b91505092915050565b600060208284031215613512576135116130f2565b5b600082013567ffffffffffffffff8111156135305761352f6130f7565b5b61353c848285016134ce565b91505092915050565b61354e81613181565b811461355957600080fd5b50565b60008135905061356b81613545565b92915050565b600060208284031215613587576135866130f2565b5b60006135958482850161355c565b91505092915050565b6000806000606084860312156135b7576135b66130f2565b5b60006135c586828701613348565b93505060206135d686828701613348565b92505060406135e786828701613293565b9150509250925092565b600060208284031215613607576136066130f2565b5b600061361584828501613348565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61365381613272565b82525050565b6000613665838361364a565b60208301905092915050565b6000602082019050919050565b60006136898261361e565b6136938185613629565b935061369e8361363a565b8060005b838110156136cf5781516136b68882613659565b97506136c183613671565b9250506001810190506136a2565b5085935050505092915050565b600060208201905081810360008301526136f6818461367e565b905092915050565b60008060408385031215613715576137146130f2565b5b600061372385828601613348565b92505060206137348582860161355c565b9150509250929050565b600067ffffffffffffffff821115613759576137586133d1565b5b61376282613206565b9050602081019050919050565b600061378261377d8461373e565b613431565b90508281526020810184848401111561379e5761379d6133cc565b5b6137a984828561347d565b509392505050565b600082601f8301126137c6576137c56133c7565b5b81356137d684826020860161376f565b91505092915050565b600080600080608085870312156137f9576137f86130f2565b5b600061380787828801613348565b945050602061381887828801613348565b935050604061382987828801613293565b925050606085013567ffffffffffffffff81111561384a576138496130f7565b5b613856878288016137b1565b91505092959194509250565b60008060408385031215613879576138786130f2565b5b600061388785828601613348565b925050602061389885828601613348565b9150509250929050565b600080604083850312156138b9576138b86130f2565b5b60006138c785828601613293565b92505060206138d885828601613348565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061392957607f821691505b60208210810361393c5761393b6138e2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139786020836131c2565b915061398382613942565b602082019050919050565b600060208201905081810360008301526139a78161396b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006139e4601f836131c2565b91506139ef826139ae565b602082019050919050565b60006020820190508181036000830152613a13816139d7565b9050919050565b600081905092915050565b50565b6000613a35600083613a1a565b9150613a4082613a25565b600082019050919050565b6000613a5682613a28565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ac982613272565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613afb57613afa613a8f565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613b3c6014836131c2565b9150613b4782613b06565b602082019050919050565b60006020820190508181036000830152613b6b81613b2f565b9050919050565b6000613b7d82613272565b9150613b8883613272565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bbd57613bbc613a8f565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613bfe6014836131c2565b9150613c0982613bc8565b602082019050919050565b60006020820190508181036000830152613c2d81613bf1565b9050919050565b6000613c3f82613272565b9150613c4a83613272565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c8357613c82613a8f565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613cc46013836131c2565b9150613ccf82613c8e565b602082019050919050565b60006020820190508181036000830152613cf381613cb7565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613d306017836131c2565b9150613d3b82613cfa565b602082019050919050565b60006020820190508181036000830152613d5f81613d23565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613dc2602f836131c2565b9150613dcd82613d66565b604082019050919050565b60006020820190508181036000830152613df181613db5565b9050919050565b600081905092915050565b6000613e0e826131b7565b613e188185613df8565b9350613e288185602086016131d3565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613e5681613911565b613e608186613df8565b94506001821660008114613e7b5760018114613e8c57613ebf565b60ff19831686528186019350613ebf565b613e9585613e34565b60005b83811015613eb757815481890152600182019150602081019050613e98565b838801955050505b50505092915050565b6000613ed48286613e03565b9150613ee08285613e03565b9150613eec8284613e49565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f556026836131c2565b9150613f6082613ef9565b604082019050919050565b60006020820190508181036000830152613f8481613f48565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613fb282613f8b565b613fbc8185613f96565b9350613fcc8185602086016131d3565b613fd581613206565b840191505092915050565b6000608082019050613ff56000830187613307565b6140026020830186613307565b61400f604083018561339d565b81810360608301526140218184613fa7565b905095945050505050565b60008151905061403b81613128565b92915050565b600060208284031215614057576140566130f2565b5b60006140658482850161402c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140a882613272565b91506140b383613272565b9250826140c3576140c261406e565b5b828204905092915050565b60006140d982613272565b91506140e483613272565b9250828210156140f7576140f6613a8f565b5b828203905092915050565b600061410d82613272565b915061411883613272565b9250826141285761412761406e565b5b82820690509291505056fea2646970667358221220b2bfe78a90d582cd65f49498285bcf94b189a611f19a3b0a15d8282b17eda48264736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000c676f626c696e76616c6c6579000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046776766c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005e68747470733a2f2f73746f726167656170692e666c65656b2e636f2f61393561663465642d376561642d346265382d626464342d6262323935343664383233352d6275636b65742f676f626c696e41737365742f686964656e2e6a736f6e0000

-----Decoded View---------------
Arg [0] : _tokenName (string): goblinvalley
Arg [1] : _tokenSymbol (string): gvvl
Arg [2] : price (uint256): 0
Arg [3] : _maxSupply (uint256): 10000
Arg [4] : _maxMintAmountPerTx (uint256): 2
Arg [5] : _hiddenMetadataUri (string): https://storageapi.fleek.co/a95af4ed-7ead-4be8-bdd4-bb29546d8235-bucket/goblinAsset/hiden.json

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [7] : 676f626c696e76616c6c65790000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 6776766c00000000000000000000000000000000000000000000000000000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000005e
Arg [11] : 68747470733a2f2f73746f726167656170692e666c65656b2e636f2f61393561
Arg [12] : 663465642d376561642d346265382d626464342d626232393534366438323335
Arg [13] : 2d6275636b65742f676f626c696e41737365742f686964656e2e6a736f6e0000


Deployed Bytecode Sourcemap

50288:4338:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31407:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34522:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36026:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35588:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50499:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53683:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53789:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30647:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54502:121;;;;;;;;;;;;;:::i;:::-;;50552:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36891:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53986:512;;;;;;;;;;;;;:::i;:::-;;37132:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51750:833;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53228:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53439:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50617:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50421:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50587:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50388:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34330:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31776:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7508:103;;;;;;;;;;;;;:::i;:::-;;53577:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6857:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34691:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51397:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36302:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50459:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53308:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37388:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52690:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50523:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53141:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36660:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51601:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7766:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31407:305;31509:4;31561:25;31546:40;;;:11;:40;;;;:105;;;;31618:33;31603:48;;;:11;:48;;;;31546:105;:158;;;;31668:36;31692:11;31668:23;:36::i;:::-;31546:158;31526:178;;31407:305;;;:::o;34522:100::-;34576:13;34609:5;34602:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34522:100;:::o;36026:204::-;36094:7;36119:16;36127:7;36119;:16::i;:::-;36114:64;;36144:34;;;;;;;;;;;;;;36114:64;36198:15;:24;36214:7;36198:24;;;;;;;;;;;;;;;;;;;;;36191:31;;36026:204;;;:::o;35588:372::-;35661:13;35677:24;35693:7;35677:15;:24::i;:::-;35661:40;;35722:5;35716:11;;:2;:11;;;35712:48;;35736:24;;;;;;;;;;;;;;35712:48;35793:5;35777:21;;:12;:10;:12::i;:::-;:21;;;35773:139;;35804:37;35821:5;35828:12;:10;:12::i;:::-;35804:16;:37::i;:::-;35800:112;;35865:35;;;;;;;;;;;;;;35800:112;35773:139;35924:28;35933:2;35937:7;35946:5;35924:8;:28::i;:::-;35650:310;35588:372;;:::o;50499:19::-;;;;:::o;53683:100::-;7088:12;:10;:12::i;:::-;7077:23;;:7;:5;:7::i;:::-;:23;;;7069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53767:10:::1;53755:9;:22;;;;;;;;;;;;:::i;:::-;;53683:100:::0;:::o;53789:77::-;7088:12;:10;:12::i;:::-;7077:23;;:7;:5;:7::i;:::-;:23;;;7069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53854:6:::1;53845;;:15;;;;;;;;;;;;;;;;;;53789:77:::0;:::o;30647:312::-;30700:7;30925:15;:13;:15::i;:::-;30910:12;;30894:13;;:28;:46;30887:53;;30647:312;:::o;54502:121::-;7088:12;:10;:12::i;:::-;7077:23;;:7;:5;:7::i;:::-;:23;;;7069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54573:42:::1;54552:65;;;50552:28:::0;;;;:::o;36891:170::-;37025:28;37035:4;37041:2;37045:7;37025:9;:28::i;:::-;36891:170;;;:::o;53986:512::-;7088:12;:10;:12::i;:::-;7077:23;;:7;:5;:7::i;:::-;:23;;;7069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1831:1:::1;2429:7;;:19:::0;2421:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1831:1;2562:7;:18;;;;54285:7:::2;54306:42;54298:56;;54362:21;54298:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54284:104;;;54403:2;54395:11;;;::::0;::::2;;54036:462;1787:1:::1;2741:7;:22;;;;53986:512::o:0;37132:185::-;37270:39;37287:4;37293:2;37297:7;37270:39;;;;;;;;;;;;:16;:39::i;:::-;37132:185;;;:::o;51750:833::-;51810:16;51835:23;51861:17;51871:6;51861:9;:17::i;:::-;51835:43;;51885:30;51932:15;51918:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51885:63;;51955:22;51980:15;:13;:15::i;:::-;51955:40;;52002:23;52036:26;52071:478;52096:15;52078;:33;:67;;;;;52132:13;;52115:14;:30;52078:67;52071:478;;;52156:31;52190:11;:27;52202:14;52190:27;;;;;;;;;;;52156:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52233:9;:16;;;52228:287;;52292:1;52266:28;;:9;:14;;;:28;;;52262:94;;52330:9;:14;;;52309:35;;52262:94;52394:6;52372:28;;:18;:28;;;52368:138;;52448:14;52415:13;52429:15;52415:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;52477:17;;;;;:::i;:::-;;;;52368:138;52228:287;52525:16;;;;;:::i;:::-;;;;52147:402;52071:478;;;52564:13;52557:20;;;;;;;51750:833;;;:::o;53228:74::-;7088:12;:10;:12::i;:::-;7077:23;;:7;:5;:7::i;:::-;:23;;;7069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53291:5:::1;53284:4;:12;;;;53228:74:::0;:::o;53439:132::-;7088:12;:10;:12::i;:::-;7077:23;;:7;:5;:7::i;:::-;:23;;;7069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53547:18:::1;53527:17;:38;;;;;;;;;;;;:::i;:::-;;53439:132:::0;:::o;50617:28::-;;;;;;;;;;;;;:::o;50421:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50587:25::-;;;;;;;;;;;;;:::o;50388:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34330:125::-;34394:7;34421:21;34434:7;34421:12;:21::i;:::-;:26;;;34414:33;;34330:125;;;:::o;31776:206::-;31840:7;31881:1;31864:19;;:5;:19;;;31860:60;;31892:28;;;;;;;;;;;;;;31860:60;31946:12;:19;31959:5;31946:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31938:36;;31931:43;;31776:206;;;:::o;7508:103::-;7088:12;:10;:12::i;:::-;7077:23;;:7;:5;:7::i;:::-;:23;;;7069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7573:30:::1;7600:1;7573:18;:30::i;:::-;7508:103::o:0;53577:100::-;7088:12;:10;:12::i;:::-;7077:23;;:7;:5;:7::i;:::-;:23;;;7069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53661:10:::1;53649:9;:22;;;;;;;;;;;;:::i;:::-;;53577:100:::0;:::o;6857:87::-;6903:7;6930:6;;;;;;;;;;;6923:13;;6857:87;:::o;34691:104::-;34747:13;34780:7;34773:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34691:104;:::o;51397:196::-;51458:7;51109:1;51099:7;:11;:39;;;;;51125:13;;51114:7;:24;;51099:39;51091:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;51205:9;;51194:7;51178:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;51170:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51487:7:::1;51340;51333:4;;:14;;;;:::i;:::-;51320:9;:27;;51312:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;51512:6:::2;;;;;;;;;;;51511:7;51503:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;51555:32;51565:12;:10;:12::i;:::-;51579:7;51555:9;:32::i;:::-;51246:1:::1;51397:196:::0;;:::o;36302:287::-;36413:12;:10;:12::i;:::-;36401:24;;:8;:24;;;36397:54;;36434:17;;;;;;;;;;;;;;36397:54;36509:8;36464:18;:32;36483:12;:10;:12::i;:::-;36464:32;;;;;;;;;;;;;;;:42;36497:8;36464:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36562:8;36533:48;;36548:12;:10;:12::i;:::-;36533:48;;;36572:8;36533:48;;;;;;:::i;:::-;;;;;;;;36302:287;;:::o;50459:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53308:125::-;7088:12;:10;:12::i;:::-;7077:23;;:7;:5;:7::i;:::-;:23;;;7069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53408:19:::1;53392:13;:35;;;;53308:125:::0;:::o;37388:370::-;37555:28;37565:4;37571:2;37575:7;37555:9;:28::i;:::-;37598:15;:2;:13;;;:15::i;:::-;37594:157;;;37619:56;37650:4;37656:2;37660:7;37669:5;37619:30;:56::i;:::-;37615:136;;37699:40;;;;;;;;;;;;;;37615:136;37594:157;37388:370;;;;:::o;52690:445::-;52764:13;52794:17;52802:8;52794:7;:17::i;:::-;52786:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;52888:5;52876:17;;:8;;;;;;;;;;;:17;;;52872:64;;52911:17;52904:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52872:64;52944:28;52975:10;:8;:10::i;:::-;52944:41;;53030:1;53005:14;52999:28;:32;:130;;;;;;;;;;;;;;;;;53067:14;53083:19;:8;:17;:19::i;:::-;53104:9;53050:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52999:130;52992:137;;;52690:445;;;;:::o;50523:24::-;;;;:::o;53141:81::-;7088:12;:10;:12::i;:::-;7077:23;;:7;:5;:7::i;:::-;:23;;;7069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53210:6:::1;53199:8;;:17;;;;;;;;;;;;;;;;;;53141:81:::0;:::o;36660:164::-;36757:4;36781:18;:25;36800:5;36781:25;;;;;;;;;;;;;;;:35;36807:8;36781:35;;;;;;;;;;;;;;;;;;;;;;;;;36774:42;;36660:164;;;;:::o;51601:143::-;51683:7;51109:1;51099:7;:11;:39;;;;;51125:13;;51114:7;:24;;51099:39;51091:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;51205:9;;51194:7;51178:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;51170:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;7088:12:::1;:10;:12::i;:::-;7077:23;;:7;:5;:7::i;:::-;:23;;;7069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51709:29:::2;51719:9;51730:7;51709:9;:29::i;:::-;51601:143:::0;;;:::o;7766:201::-;7088:12;:10;:12::i;:::-;7077:23;;:7;:5;:7::i;:::-;:23;;;7069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7875:1:::1;7855:22;;:8;:22;;::::0;7847:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7931:28;7950:8;7931:18;:28::i;:::-;7766:201:::0;:::o;19664:157::-;19749:4;19788:25;19773:40;;;:11;:40;;;;19766:47;;19664:157;;;:::o;38013:174::-;38070:4;38113:7;38094:15;:13;:15::i;:::-;:26;;:53;;;;;38134:13;;38124:7;:23;38094:53;:85;;;;;38152:11;:20;38164:7;38152:20;;;;;;;;;;;:27;;;;;;;;;;;;38151:28;38094:85;38087:92;;38013:174;;;:::o;5581:98::-;5634:7;5661:10;5654:17;;5581:98;:::o;47235:196::-;47377:2;47350:15;:24;47366:7;47350:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47415:7;47411:2;47395:28;;47404:5;47395:28;;;;;;;;;;;;47235:196;;;:::o;52589:95::-;52654:7;52677:1;52670:8;;52589:95;:::o;42183:2130::-;42298:35;42336:21;42349:7;42336:12;:21::i;:::-;42298:59;;42396:4;42374:26;;:13;:18;;;:26;;;42370:67;;42409:28;;;;;;;;;;;;;;42370:67;42450:22;42492:4;42476:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42513:36;42530:4;42536:12;:10;:12::i;:::-;42513:16;:36::i;:::-;42476:73;:126;;;;42590:12;:10;:12::i;:::-;42566:36;;:20;42578:7;42566:11;:20::i;:::-;:36;;;42476:126;42450:153;;42621:17;42616:66;;42647:35;;;;;;;;;;;;;;42616:66;42711:1;42697:16;;:2;:16;;;42693:52;;42722:23;;;;;;;;;;;;;;42693:52;42758:43;42780:4;42786:2;42790:7;42799:1;42758:21;:43::i;:::-;42866:35;42883:1;42887:7;42896:4;42866:8;:35::i;:::-;43227:1;43197:12;:18;43210:4;43197:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43271:1;43243:12;:16;43256:2;43243:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43289:31;43323:11;:20;43335:7;43323:20;;;;;;;;;;;43289:54;;43374:2;43358:8;:13;;;:18;;;;;;;;;;;;;;;;;;43424:15;43391:8;:23;;;:49;;;;;;;;;;;;;;;;;;43692:19;43724:1;43714:7;:11;43692:33;;43740:31;43774:11;:24;43786:11;43774:24;;;;;;;;;;;43740:58;;43842:1;43817:27;;:8;:13;;;;;;;;;;;;:27;;;43813:384;;44027:13;;44012:11;:28;44008:174;;44081:4;44065:8;:13;;;:20;;;;;;;;;;;;;;;;;;44134:13;:28;;;44108:8;:23;;;:54;;;;;;;;;;;;;;;;;;44008:174;43813:384;43172:1036;;;44244:7;44240:2;44225:27;;44234:4;44225:27;;;;;;;;;;;;44263:42;44284:4;44290:2;44294:7;44303:1;44263:20;:42::i;:::-;42287:2026;;42183:2130;;;:::o;33157:1111::-;33219:21;;:::i;:::-;33253:12;33268:7;33253:22;;33336:4;33317:15;:13;:15::i;:::-;:23;33313:888;;33353:13;;33346:4;:20;33342:859;;;33387:31;33421:11;:17;33433:4;33421:17;;;;;;;;;;;33387:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33462:9;:16;;;33457:729;;33533:1;33507:28;;:9;:14;;;:28;;;33503:101;;33571:9;33564:16;;;;;;33503:101;33906:261;33913:4;33906:261;;;33946:6;;;;;;;;33991:11;:17;34003:4;33991:17;;;;;;;;;;;33979:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34065:1;34039:28;;:9;:14;;;:28;;;34035:109;;34107:9;34100:16;;;;;;34035:109;33906:261;;;33457:729;33368:833;33342:859;33313:888;34229:31;;;;;;;;;;;;;;33157:1111;;;;:::o;8127:191::-;8201:16;8220:6;;;;;;;;;;;8201:25;;8246:8;8237:6;;:17;;;;;;;;;;;;;;;;;;8301:8;8270:40;;8291:8;8270:40;;;;;;;;;;;;8190:128;8127:191;:::o;38271:104::-;38340:27;38350:2;38354:8;38340:27;;;;;;;;;;;;:9;:27::i;:::-;38271:104;;:::o;9558:326::-;9618:4;9875:1;9853:7;:19;;;:23;9846:30;;9558:326;;;:::o;47923:667::-;48086:4;48123:2;48107:36;;;48144:12;:10;:12::i;:::-;48158:4;48164:7;48173:5;48107:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48103:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48358:1;48341:6;:13;:18;48337:235;;48387:40;;;;;;;;;;;;;;48337:235;48530:6;48524:13;48515:6;48511:2;48507:15;48500:38;48103:480;48236:45;;;48226:55;;;:6;:55;;;;48219:62;;;47923:667;;;;;;:::o;53877:106::-;53937:13;53966:9;53959:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53877:106;:::o;3143:723::-;3199:13;3429:1;3420:5;:10;3416:53;;3447:10;;;;;;;;;;;;;;;;;;;;;3416:53;3479:12;3494:5;3479:20;;3510:14;3535:78;3550:1;3542:4;:9;3535:78;;3568:8;;;;;:::i;:::-;;;;3599:2;3591:10;;;;;:::i;:::-;;;3535:78;;;3623:19;3655:6;3645:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3623:39;;3673:154;3689:1;3680:5;:10;3673:154;;3717:1;3707:11;;;;;:::i;:::-;;;3784:2;3776:5;:10;;;;:::i;:::-;3763:2;:24;;;;:::i;:::-;3750:39;;3733:6;3740;3733:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3813:2;3804:11;;;;;:::i;:::-;;;3673:154;;;3851:6;3837:21;;;;;3143:723;;;;:::o;49238:159::-;;;;;:::o;50056:158::-;;;;;:::o;38748:1749::-;38871:20;38894:13;;38871:36;;38936:1;38922:16;;:2;:16;;;38918:48;;38947:19;;;;;;;;;;;;;;38918:48;38993:1;38981:8;:13;38977:44;;39003:18;;;;;;;;;;;;;;38977:44;39034:61;39064:1;39068:2;39072:12;39086:8;39034:21;:61::i;:::-;39407:8;39372:12;:16;39385:2;39372:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39471:8;39431:12;:16;39444:2;39431:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39530:2;39497:11;:25;39509:12;39497:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39597:15;39547:11;:25;39559:12;39547:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39630:20;39653:12;39630:35;;39680:11;39709:8;39694:12;:23;39680:37;;39738:15;:2;:13;;;:15::i;:::-;39734:631;;;39774:313;39830:12;39826:2;39805:38;;39822:1;39805:38;;;;;;;;;;;;39871:69;39910:1;39914:2;39918:14;;;;;;39934:5;39871:30;:69::i;:::-;39866:174;;39976:40;;;;;;;;;;;;;;39866:174;40082:3;40067:12;:18;39774:313;;40168:12;40151:13;;:29;40147:43;;40182:8;;;40147:43;39734:631;;;40231:119;40287:14;;;;;;40283:2;40262:40;;40279:1;40262:40;;;;;;;;;;;;40345:3;40330:12;:18;40231:119;;39734:631;40395:12;40379:13;:28;;;;39347:1072;;40429:60;40458:1;40462:2;40466:12;40480:8;40429:20;:60::i;:::-;38860:1637;38748:1749;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:114::-;9528:6;9562:5;9556:12;9546:22;;9461:114;;;:::o;9581:184::-;9680:11;9714:6;9709:3;9702:19;9754:4;9749:3;9745:14;9730:29;;9581:184;;;;:::o;9771:132::-;9838:4;9861:3;9853:11;;9891:4;9886:3;9882:14;9874:22;;9771:132;;;:::o;9909:108::-;9986:24;10004:5;9986:24;:::i;:::-;9981:3;9974:37;9909:108;;:::o;10023:179::-;10092:10;10113:46;10155:3;10147:6;10113:46;:::i;:::-;10191:4;10186:3;10182:14;10168:28;;10023:179;;;;:::o;10208:113::-;10278:4;10310;10305:3;10301:14;10293:22;;10208:113;;;:::o;10357:732::-;10476:3;10505:54;10553:5;10505:54;:::i;:::-;10575:86;10654:6;10649:3;10575:86;:::i;:::-;10568:93;;10685:56;10735:5;10685:56;:::i;:::-;10764:7;10795:1;10780:284;10805:6;10802:1;10799:13;10780:284;;;10881:6;10875:13;10908:63;10967:3;10952:13;10908:63;:::i;:::-;10901:70;;10994:60;11047:6;10994:60;:::i;:::-;10984:70;;10840:224;10827:1;10824;10820:9;10815:14;;10780:284;;;10784:14;11080:3;11073:10;;10481:608;;;10357:732;;;;:::o;11095:373::-;11238:4;11276:2;11265:9;11261:18;11253:26;;11325:9;11319:4;11315:20;11311:1;11300:9;11296:17;11289:47;11353:108;11456:4;11447:6;11353:108;:::i;:::-;11345:116;;11095:373;;;;:::o;11474:468::-;11539:6;11547;11596:2;11584:9;11575:7;11571:23;11567:32;11564:119;;;11602:79;;:::i;:::-;11564:119;11722:1;11747:53;11792:7;11783:6;11772:9;11768:22;11747:53;:::i;:::-;11737:63;;11693:117;11849:2;11875:50;11917:7;11908:6;11897:9;11893:22;11875:50;:::i;:::-;11865:60;;11820:115;11474:468;;;;;:::o;11948:307::-;12009:4;12099:18;12091:6;12088:30;12085:56;;;12121:18;;:::i;:::-;12085:56;12159:29;12181:6;12159:29;:::i;:::-;12151:37;;12243:4;12237;12233:15;12225:23;;11948:307;;;:::o;12261:410::-;12338:5;12363:65;12379:48;12420:6;12379:48;:::i;:::-;12363:65;:::i;:::-;12354:74;;12451:6;12444:5;12437:21;12489:4;12482:5;12478:16;12527:3;12518:6;12513:3;12509:16;12506:25;12503:112;;;12534:79;;:::i;:::-;12503:112;12624:41;12658:6;12653:3;12648;12624:41;:::i;:::-;12344:327;12261:410;;;;;:::o;12690:338::-;12745:5;12794:3;12787:4;12779:6;12775:17;12771:27;12761:122;;12802:79;;:::i;:::-;12761:122;12919:6;12906:20;12944:78;13018:3;13010:6;13003:4;12995:6;12991:17;12944:78;:::i;:::-;12935:87;;12751:277;12690:338;;;;:::o;13034:943::-;13129:6;13137;13145;13153;13202:3;13190:9;13181:7;13177:23;13173:33;13170:120;;;13209:79;;:::i;:::-;13170:120;13329:1;13354:53;13399:7;13390:6;13379:9;13375:22;13354:53;:::i;:::-;13344:63;;13300:117;13456:2;13482:53;13527:7;13518:6;13507:9;13503:22;13482:53;:::i;:::-;13472:63;;13427:118;13584:2;13610:53;13655:7;13646:6;13635:9;13631:22;13610:53;:::i;:::-;13600:63;;13555:118;13740:2;13729:9;13725:18;13712:32;13771:18;13763:6;13760:30;13757:117;;;13793:79;;:::i;:::-;13757:117;13898:62;13952:7;13943:6;13932:9;13928:22;13898:62;:::i;:::-;13888:72;;13683:287;13034:943;;;;;;;:::o;13983:474::-;14051:6;14059;14108:2;14096:9;14087:7;14083:23;14079:32;14076:119;;;14114:79;;:::i;:::-;14076:119;14234:1;14259:53;14304:7;14295:6;14284:9;14280:22;14259:53;:::i;:::-;14249:63;;14205:117;14361:2;14387:53;14432:7;14423:6;14412:9;14408:22;14387:53;:::i;:::-;14377:63;;14332:118;13983:474;;;;;:::o;14463:::-;14531:6;14539;14588:2;14576:9;14567:7;14563:23;14559:32;14556:119;;;14594:79;;:::i;:::-;14556:119;14714:1;14739:53;14784:7;14775:6;14764:9;14760:22;14739:53;:::i;:::-;14729:63;;14685:117;14841:2;14867:53;14912:7;14903:6;14892:9;14888:22;14867:53;:::i;:::-;14857:63;;14812:118;14463:474;;;;;:::o;14943:180::-;14991:77;14988:1;14981:88;15088:4;15085:1;15078:15;15112:4;15109:1;15102:15;15129:320;15173:6;15210:1;15204:4;15200:12;15190:22;;15257:1;15251:4;15247:12;15278:18;15268:81;;15334:4;15326:6;15322:17;15312:27;;15268:81;15396:2;15388:6;15385:14;15365:18;15362:38;15359:84;;15415:18;;:::i;:::-;15359:84;15180:269;15129:320;;;:::o;15455:182::-;15595:34;15591:1;15583:6;15579:14;15572:58;15455:182;:::o;15643:366::-;15785:3;15806:67;15870:2;15865:3;15806:67;:::i;:::-;15799:74;;15882:93;15971:3;15882:93;:::i;:::-;16000:2;15995:3;15991:12;15984:19;;15643:366;;;:::o;16015:419::-;16181:4;16219:2;16208:9;16204:18;16196:26;;16268:9;16262:4;16258:20;16254:1;16243:9;16239:17;16232:47;16296:131;16422:4;16296:131;:::i;:::-;16288:139;;16015:419;;;:::o;16440:181::-;16580:33;16576:1;16568:6;16564:14;16557:57;16440:181;:::o;16627:366::-;16769:3;16790:67;16854:2;16849:3;16790:67;:::i;:::-;16783:74;;16866:93;16955:3;16866:93;:::i;:::-;16984:2;16979:3;16975:12;16968:19;;16627:366;;;:::o;16999:419::-;17165:4;17203:2;17192:9;17188:18;17180:26;;17252:9;17246:4;17242:20;17238:1;17227:9;17223:17;17216:47;17280:131;17406:4;17280:131;:::i;:::-;17272:139;;16999:419;;;:::o;17424:147::-;17525:11;17562:3;17547:18;;17424:147;;;;:::o;17577:114::-;;:::o;17697:398::-;17856:3;17877:83;17958:1;17953:3;17877:83;:::i;:::-;17870:90;;17969:93;18058:3;17969:93;:::i;:::-;18087:1;18082:3;18078:11;18071:18;;17697:398;;;:::o;18101:379::-;18285:3;18307:147;18450:3;18307:147;:::i;:::-;18300:154;;18471:3;18464:10;;18101:379;;;:::o;18486:180::-;18534:77;18531:1;18524:88;18631:4;18628:1;18621:15;18655:4;18652:1;18645:15;18672:180;18720:77;18717:1;18710:88;18817:4;18814:1;18807:15;18841:4;18838:1;18831:15;18858:233;18897:3;18920:24;18938:5;18920:24;:::i;:::-;18911:33;;18966:66;18959:5;18956:77;18953:103;;19036:18;;:::i;:::-;18953:103;19083:1;19076:5;19072:13;19065:20;;18858:233;;;:::o;19097:170::-;19237:22;19233:1;19225:6;19221:14;19214:46;19097:170;:::o;19273:366::-;19415:3;19436:67;19500:2;19495:3;19436:67;:::i;:::-;19429:74;;19512:93;19601:3;19512:93;:::i;:::-;19630:2;19625:3;19621:12;19614:19;;19273:366;;;:::o;19645:419::-;19811:4;19849:2;19838:9;19834:18;19826:26;;19898:9;19892:4;19888:20;19884:1;19873:9;19869:17;19862:47;19926:131;20052:4;19926:131;:::i;:::-;19918:139;;19645:419;;;:::o;20070:305::-;20110:3;20129:20;20147:1;20129:20;:::i;:::-;20124:25;;20163:20;20181:1;20163:20;:::i;:::-;20158:25;;20317:1;20249:66;20245:74;20242:1;20239:81;20236:107;;;20323:18;;:::i;:::-;20236:107;20367:1;20364;20360:9;20353:16;;20070:305;;;;:::o;20381:170::-;20521:22;20517:1;20509:6;20505:14;20498:46;20381:170;:::o;20557:366::-;20699:3;20720:67;20784:2;20779:3;20720:67;:::i;:::-;20713:74;;20796:93;20885:3;20796:93;:::i;:::-;20914:2;20909:3;20905:12;20898:19;;20557:366;;;:::o;20929:419::-;21095:4;21133:2;21122:9;21118:18;21110:26;;21182:9;21176:4;21172:20;21168:1;21157:9;21153:17;21146:47;21210:131;21336:4;21210:131;:::i;:::-;21202:139;;20929:419;;;:::o;21354:348::-;21394:7;21417:20;21435:1;21417:20;:::i;:::-;21412:25;;21451:20;21469:1;21451:20;:::i;:::-;21446:25;;21639:1;21571:66;21567:74;21564:1;21561:81;21556:1;21549:9;21542:17;21538:105;21535:131;;;21646:18;;:::i;:::-;21535:131;21694:1;21691;21687:9;21676:20;;21354:348;;;;:::o;21708:169::-;21848:21;21844:1;21836:6;21832:14;21825:45;21708:169;:::o;21883:366::-;22025:3;22046:67;22110:2;22105:3;22046:67;:::i;:::-;22039:74;;22122:93;22211:3;22122:93;:::i;:::-;22240:2;22235:3;22231:12;22224:19;;21883:366;;;:::o;22255:419::-;22421:4;22459:2;22448:9;22444:18;22436:26;;22508:9;22502:4;22498:20;22494:1;22483:9;22479:17;22472:47;22536:131;22662:4;22536:131;:::i;:::-;22528:139;;22255:419;;;:::o;22680:173::-;22820:25;22816:1;22808:6;22804:14;22797:49;22680:173;:::o;22859:366::-;23001:3;23022:67;23086:2;23081:3;23022:67;:::i;:::-;23015:74;;23098:93;23187:3;23098:93;:::i;:::-;23216:2;23211:3;23207:12;23200:19;;22859:366;;;:::o;23231:419::-;23397:4;23435:2;23424:9;23420:18;23412:26;;23484:9;23478:4;23474:20;23470:1;23459:9;23455:17;23448:47;23512:131;23638:4;23512:131;:::i;:::-;23504:139;;23231:419;;;:::o;23656:234::-;23796:34;23792:1;23784:6;23780:14;23773:58;23865:17;23860:2;23852:6;23848:15;23841:42;23656:234;:::o;23896:366::-;24038:3;24059:67;24123:2;24118:3;24059:67;:::i;:::-;24052:74;;24135:93;24224:3;24135:93;:::i;:::-;24253:2;24248:3;24244:12;24237:19;;23896:366;;;:::o;24268:419::-;24434:4;24472:2;24461:9;24457:18;24449:26;;24521:9;24515:4;24511:20;24507:1;24496:9;24492:17;24485:47;24549:131;24675:4;24549:131;:::i;:::-;24541:139;;24268:419;;;:::o;24693:148::-;24795:11;24832:3;24817:18;;24693:148;;;;:::o;24847:377::-;24953:3;24981:39;25014:5;24981:39;:::i;:::-;25036:89;25118:6;25113:3;25036:89;:::i;:::-;25029:96;;25134:52;25179:6;25174:3;25167:4;25160:5;25156:16;25134:52;:::i;:::-;25211:6;25206:3;25202:16;25195:23;;24957:267;24847:377;;;;:::o;25230:141::-;25279:4;25302:3;25294:11;;25325:3;25322:1;25315:14;25359:4;25356:1;25346:18;25338:26;;25230:141;;;:::o;25401:845::-;25504:3;25541:5;25535:12;25570:36;25596:9;25570:36;:::i;:::-;25622:89;25704:6;25699:3;25622:89;:::i;:::-;25615:96;;25742:1;25731:9;25727:17;25758:1;25753:137;;;;25904:1;25899:341;;;;25720:520;;25753:137;25837:4;25833:9;25822;25818:25;25813:3;25806:38;25873:6;25868:3;25864:16;25857:23;;25753:137;;25899:341;25966:38;25998:5;25966:38;:::i;:::-;26026:1;26040:154;26054:6;26051:1;26048:13;26040:154;;;26128:7;26122:14;26118:1;26113:3;26109:11;26102:35;26178:1;26169:7;26165:15;26154:26;;26076:4;26073:1;26069:12;26064:17;;26040:154;;;26223:6;26218:3;26214:16;26207:23;;25906:334;;25720:520;;25508:738;;25401:845;;;;:::o;26252:589::-;26477:3;26499:95;26590:3;26581:6;26499:95;:::i;:::-;26492:102;;26611:95;26702:3;26693:6;26611:95;:::i;:::-;26604:102;;26723:92;26811:3;26802:6;26723:92;:::i;:::-;26716:99;;26832:3;26825:10;;26252:589;;;;;;:::o;26847:225::-;26987:34;26983:1;26975:6;26971:14;26964:58;27056:8;27051:2;27043:6;27039:15;27032:33;26847:225;:::o;27078:366::-;27220:3;27241:67;27305:2;27300:3;27241:67;:::i;:::-;27234:74;;27317:93;27406:3;27317:93;:::i;:::-;27435:2;27430:3;27426:12;27419:19;;27078:366;;;:::o;27450:419::-;27616:4;27654:2;27643:9;27639:18;27631:26;;27703:9;27697:4;27693:20;27689:1;27678:9;27674:17;27667:47;27731:131;27857:4;27731:131;:::i;:::-;27723:139;;27450:419;;;:::o;27875:98::-;27926:6;27960:5;27954:12;27944:22;;27875:98;;;:::o;27979:168::-;28062:11;28096:6;28091:3;28084:19;28136:4;28131:3;28127:14;28112:29;;27979:168;;;;:::o;28153:360::-;28239:3;28267:38;28299:5;28267:38;:::i;:::-;28321:70;28384:6;28379:3;28321:70;:::i;:::-;28314:77;;28400:52;28445:6;28440:3;28433:4;28426:5;28422:16;28400:52;:::i;:::-;28477:29;28499:6;28477:29;:::i;:::-;28472:3;28468:39;28461:46;;28243:270;28153:360;;;;:::o;28519:640::-;28714:4;28752:3;28741:9;28737:19;28729:27;;28766:71;28834:1;28823:9;28819:17;28810:6;28766:71;:::i;:::-;28847:72;28915:2;28904:9;28900:18;28891:6;28847:72;:::i;:::-;28929;28997:2;28986:9;28982:18;28973:6;28929:72;:::i;:::-;29048:9;29042:4;29038:20;29033:2;29022:9;29018:18;29011:48;29076:76;29147:4;29138:6;29076:76;:::i;:::-;29068:84;;28519:640;;;;;;;:::o;29165:141::-;29221:5;29252:6;29246:13;29237:22;;29268:32;29294:5;29268:32;:::i;:::-;29165:141;;;;:::o;29312:349::-;29381:6;29430:2;29418:9;29409:7;29405:23;29401:32;29398:119;;;29436:79;;:::i;:::-;29398:119;29556:1;29581:63;29636:7;29627:6;29616:9;29612:22;29581:63;:::i;:::-;29571:73;;29527:127;29312:349;;;;:::o;29667:180::-;29715:77;29712:1;29705:88;29812:4;29809:1;29802:15;29836:4;29833:1;29826:15;29853:185;29893:1;29910:20;29928:1;29910:20;:::i;:::-;29905:25;;29944:20;29962:1;29944:20;:::i;:::-;29939:25;;29983:1;29973:35;;29988:18;;:::i;:::-;29973:35;30030:1;30027;30023:9;30018:14;;29853:185;;;;:::o;30044:191::-;30084:4;30104:20;30122:1;30104:20;:::i;:::-;30099:25;;30138:20;30156:1;30138:20;:::i;:::-;30133:25;;30177:1;30174;30171:8;30168:34;;;30182:18;;:::i;:::-;30168:34;30227:1;30224;30220:9;30212:17;;30044:191;;;;:::o;30241:176::-;30273:1;30290:20;30308:1;30290:20;:::i;:::-;30285:25;;30324:20;30342:1;30324:20;:::i;:::-;30319:25;;30363:1;30353:35;;30368:18;;:::i;:::-;30353:35;30409:1;30406;30402:9;30397:14;;30241:176;;;;:::o

Swarm Source

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