ETH Price: $3,009.41 (+4.46%)
Gas: 2 Gwei

Token

AIGoblins (AIGBLNS)
 

Overview

Max Total Supply

3,015 AIGBLNS

Holders

215

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
20 AIGBLNS
0x62378418109526beB9798082af510b7e08335B24
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:
AIGoblins

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

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: erc721a/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: erc721a/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: contracts/AIGoblins.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;




contract AIGoblins is ERC721A, ReentrancyGuard, Ownable {
    string private baseURI;
    uint256 public maxSupply = 10000;
    uint256 public maxPerWallet = 20;
    uint256 public maxPerTx = 20;
    uint256 public totalFree = 3000;
    uint256 public price = 0.005 ether;
    
    bool private saleStatus;
    bool private revealStatus;

    mapping(address => uint256) private mintOG;

    constructor() ERC721A("AIGoblins", "AIGBLNS") {}

    function setBaseURI(string memory _URI) external onlyOwner {
        baseURI = _URI;
    }

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

    function setSaleStatus() external onlyOwner {
        saleStatus = !saleStatus;
    }




    // Mint Function


    function mint(uint256 amt) external payable {
        uint256 cost = price;
        if (totalSupply() + amt < totalFree + 1) {
            cost = 0;
        }

        require(msg.value >= amt * cost, "Please send the exact amount.");
        require(totalSupply() + amt < maxSupply + 1, "No more AIGoblins");
        require(saleStatus, "Minting is not live yet, hold on.");
        require(amt < maxPerTx + 1, "Max per TX reached.");
        require(
            _numberMinted(msg.sender) + amt <= maxPerWallet,
            "Too many per wallet!"
        );

        _safeMint(msg.sender, amt);

    
    }

    // Reveal Mechanism

    function setReveal() external onlyOwner {
        revealStatus = !revealStatus;
    }

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

        if (!revealStatus) {
            return baseURI;
        }
        return super.tokenURI(tokenId);
    }

    // Withdraw Balance

    address private payoutAddress = 0x90ade7710257b5F5Afd0d0b66e8c9815D842753a;

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(payoutAddress).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","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":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"string","name":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleStatus","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600b556014600c556014600d55610bb8600e556611c37937e08000600f557390ade7710257b5f5afd0d0b66e8c9815d842753a601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008757600080fd5b506040518060400160405280600981526020017f4149476f626c696e7300000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f414947424c4e530000000000000000000000000000000000000000000000000081525081600290805190602001906200010c9291906200023f565b508060039080519060200190620001259291906200023f565b50620001366200016c60201b60201c565b60008190555050506001600881905550620001666200015a6200017160201b60201c565b6200017960201b60201c565b62000354565b600090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024d90620002ef565b90600052602060002090601f016020900481019282620002715760008555620002bd565b82601f106200028c57805160ff1916838001178555620002bd565b82800160010185558215620002bd579182015b82811115620002bc5782518255916020019190600101906200029f565b5b509050620002cc9190620002d0565b5090565b5b80821115620002eb576000816000905550600101620002d1565b5090565b600060028204905060018216806200030857607f821691505b602082108114156200031f576200031e62000325565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6135f380620003646000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb011461056d578063e985e9c514610598578063f2fde38b146105d5578063f968adbe146105fe5761019c565b8063a22cb465146104de578063b88d4fde14610507578063c87b56dd146105305761019c565b80638da5cb5b116100c65780638da5cb5b1461044157806395d89b411461046c578063a035b1fe14610497578063a0712d68146104c25761019c565b806370a08231146103d6578063715018a614610413578063766453151461042a5761019c565b8063333e44e611610159578063453c231011610133578063453c23101461032e578063502b33af1461035957806355f804b3146103705780636352211e146103995761019c565b8063333e44e6146102c35780633ccfd60b146102ee57806342842e0e146103055761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612ae1565b610629565b6040516101d59190612e10565b60405180910390f35b3480156101ea57600080fd5b506101f361070b565b6040516102009190612e2b565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612b74565b61079d565b60405161023d9190612da9565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612aa5565b610819565b005b34801561027b57600080fd5b5061028461091e565b6040516102919190612f4d565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061299f565b610935565b005b3480156102cf57600080fd5b506102d8610945565b6040516102e59190612f4d565b60405180910390f35b3480156102fa57600080fd5b5061030361094b565b005b34801561031157600080fd5b5061032c6004803603810190610327919061299f565b610a38565b005b34801561033a57600080fd5b50610343610a58565b6040516103509190612f4d565b60405180910390f35b34801561036557600080fd5b5061036e610a5e565b005b34801561037c57600080fd5b5061039760048036038101906103929190612b33565b610b06565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190612b74565b610b9c565b6040516103cd9190612da9565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f8919061293a565b610bb2565b60405161040a9190612f4d565b60405180910390f35b34801561041f57600080fd5b50610428610c82565b005b34801561043657600080fd5b5061043f610d0a565b005b34801561044d57600080fd5b50610456610db2565b6040516104639190612da9565b60405180910390f35b34801561047857600080fd5b50610481610ddc565b60405161048e9190612e2b565b60405180910390f35b3480156104a357600080fd5b506104ac610e6e565b6040516104b99190612f4d565b60405180910390f35b6104dc60048036038101906104d79190612b74565b610e74565b005b3480156104ea57600080fd5b5061050560048036038101906105009190612a69565b61105d565b005b34801561051357600080fd5b5061052e600480360381019061052991906129ee565b6111d5565b005b34801561053c57600080fd5b5061055760048036038101906105529190612b74565b61124d565b6040516105649190612e2b565b60405180910390f35b34801561057957600080fd5b5061058261134e565b60405161058f9190612f4d565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190612963565b611354565b6040516105cc9190612e10565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f7919061293a565b6113e8565b005b34801561060a57600080fd5b506106136114e0565b6040516106209190612f4d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107045750610703826114e6565b5b9050919050565b60606002805461071a906131fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610746906131fd565b80156107935780601f1061076857610100808354040283529160200191610793565b820191906000526020600020905b81548152906001019060200180831161077657829003601f168201915b5050505050905090565b60006107a882611550565b6107de576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082482610b9c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561088c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108ab61159e565b73ffffffffffffffffffffffffffffffffffffffff161461090e576108d7816108d261159e565b611354565b61090d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6109198383836115a6565b505050565b6000610928611658565b6001546000540303905090565b61094083838361165d565b505050565b600e5481565b61095361159e565b73ffffffffffffffffffffffffffffffffffffffff16610971610db2565b73ffffffffffffffffffffffffffffffffffffffff16146109c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109be90612ead565b60405180910390fd5b6000479050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a34573d6000803e3d6000fd5b5050565b610a53838383604051806020016040528060008152506111d5565b505050565b600c5481565b610a6661159e565b73ffffffffffffffffffffffffffffffffffffffff16610a84610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190612ead565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610b0e61159e565b73ffffffffffffffffffffffffffffffffffffffff16610b2c610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7990612ead565b60405180910390fd5b80600a9080519060200190610b9892919061271b565b5050565b6000610ba782611b13565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c1a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610c8a61159e565b73ffffffffffffffffffffffffffffffffffffffff16610ca8610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf590612ead565b60405180910390fd5b610d086000611d9e565b565b610d1261159e565b73ffffffffffffffffffffffffffffffffffffffff16610d30610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90612ead565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610deb906131fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e17906131fd565b8015610e645780601f10610e3957610100808354040283529160200191610e64565b820191906000526020600020905b815481529060010190602001808311610e4757829003601f168201915b5050505050905090565b600f5481565b6000600f5490506001600e54610e8a9190613032565b82610e9361091e565b610e9d9190613032565b1015610ea857600090505b8082610eb491906130b9565b341015610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90612f0d565b60405180910390fd5b6001600b54610f059190613032565b82610f0e61091e565b610f189190613032565b10610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f90612e6d565b60405180910390fd5b601060009054906101000a900460ff16610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90612ecd565b60405180910390fd5b6001600d54610fb69190613032565b8210610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee90612f2d565b60405180910390fd5b600c548261100433611e64565b61100e9190613032565b111561104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690612e8d565b60405180910390fd5b6110593383611ece565b5050565b61106561159e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ca576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110d761159e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661118461159e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111c99190612e10565b60405180910390a35050565b6111e084848461165d565b6111ff8373ffffffffffffffffffffffffffffffffffffffff16611eec565b156112475761121084848484611f0f565b611246576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061125882611550565b611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90612eed565b60405180910390fd5b601060019054906101000a900460ff1661133d57600a80546112b8906131fd565b80601f01602080910402602001604051908101604052809291908181526020018280546112e4906131fd565b80156113315780601f1061130657610100808354040283529160200191611331565b820191906000526020600020905b81548152906001019060200180831161131457829003601f168201915b50505050509050611349565b6113468261206f565b90505b919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113f061159e565b73ffffffffffffffffffffffffffffffffffffffff1661140e610db2565b73ffffffffffffffffffffffffffffffffffffffff1614611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b90612ead565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb90612e4d565b60405180910390fd5b6114dd81611d9e565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161155b611658565b1115801561156a575060005482105b8015611597575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061166882611b13565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146116d3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166116f461159e565b73ffffffffffffffffffffffffffffffffffffffff16148061172357506117228561171d61159e565b611354565b5b80611768575061173161159e565b73ffffffffffffffffffffffffffffffffffffffff166117508461079d565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117a1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611808576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611815858585600161210e565b611821600084876115a6565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611aa1576000548214611aa057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b0c8585856001612114565b5050505050565b611b1b6127a1565b600082905080611b29611658565b11611d6757600054811015611d66576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611d6457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c48578092505050611d99565b5b600115611d6357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d5e578092505050611d99565b611c49565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611ee882826040518060200160405280600081525061211a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f3561159e565b8786866040518563ffffffff1660e01b8152600401611f579493929190612dc4565b602060405180830381600087803b158015611f7157600080fd5b505af1925050508015611fa257506040513d601f19601f82011682018060405250810190611f9f9190612b0a565b60015b61201c573d8060008114611fd2576040519150601f19603f3d011682016040523d82523d6000602084013e611fd7565b606091505b50600081511415612014576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606061207a82611550565b6120b0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006120ba6124dc565b90506000815114156120db5760405180602001604052806000815250612106565b806120e58461256e565b6040516020016120f6929190612d85565b6040516020818303038152906040525b915050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612187576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156121c2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121cf600085838661210e565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506123908673ffffffffffffffffffffffffffffffffffffffff16611eec565b15612455575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124056000878480600101955087611f0f565b61243b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061239657826000541461245057600080fd5b6124c0565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612456575b8160008190555050506124d66000858386612114565b50505050565b6060600a80546124eb906131fd565b80601f0160208091040260200160405190810160405280929190818152602001828054612517906131fd565b80156125645780601f1061253957610100808354040283529160200191612564565b820191906000526020600020905b81548152906001019060200180831161254757829003601f168201915b5050505050905090565b606060008214156125b6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612716565b600082905060005b600082146125e85780806125d190613260565b915050600a826125e19190613088565b91506125be565b60008167ffffffffffffffff81111561262a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561265c5781602001600182028036833780820191505090505b5090505b6000851461270f576001826126759190613113565b9150600a8561268491906132a9565b60306126909190613032565b60f81b8183815181106126cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127089190613088565b9450612660565b8093505050505b919050565b828054612727906131fd565b90600052602060002090601f0160209004810192826127495760008555612790565b82601f1061276257805160ff1916838001178555612790565b82800160010185558215612790579182015b8281111561278f578251825591602001919060010190612774565b5b50905061279d91906127e4565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156127fd5760008160009055506001016127e5565b5090565b600061281461280f84612f8d565b612f68565b90508281526020810184848401111561282c57600080fd5b6128378482856131bb565b509392505050565b600061285261284d84612fbe565b612f68565b90508281526020810184848401111561286a57600080fd5b6128758482856131bb565b509392505050565b60008135905061288c81613561565b92915050565b6000813590506128a181613578565b92915050565b6000813590506128b68161358f565b92915050565b6000815190506128cb8161358f565b92915050565b600082601f8301126128e257600080fd5b81356128f2848260208601612801565b91505092915050565b600082601f83011261290c57600080fd5b813561291c84826020860161283f565b91505092915050565b600081359050612934816135a6565b92915050565b60006020828403121561294c57600080fd5b600061295a8482850161287d565b91505092915050565b6000806040838503121561297657600080fd5b60006129848582860161287d565b92505060206129958582860161287d565b9150509250929050565b6000806000606084860312156129b457600080fd5b60006129c28682870161287d565b93505060206129d38682870161287d565b92505060406129e486828701612925565b9150509250925092565b60008060008060808587031215612a0457600080fd5b6000612a128782880161287d565b9450506020612a238782880161287d565b9350506040612a3487828801612925565b925050606085013567ffffffffffffffff811115612a5157600080fd5b612a5d878288016128d1565b91505092959194509250565b60008060408385031215612a7c57600080fd5b6000612a8a8582860161287d565b9250506020612a9b85828601612892565b9150509250929050565b60008060408385031215612ab857600080fd5b6000612ac68582860161287d565b9250506020612ad785828601612925565b9150509250929050565b600060208284031215612af357600080fd5b6000612b01848285016128a7565b91505092915050565b600060208284031215612b1c57600080fd5b6000612b2a848285016128bc565b91505092915050565b600060208284031215612b4557600080fd5b600082013567ffffffffffffffff811115612b5f57600080fd5b612b6b848285016128fb565b91505092915050565b600060208284031215612b8657600080fd5b6000612b9484828501612925565b91505092915050565b612ba681613147565b82525050565b612bb581613159565b82525050565b6000612bc682612fef565b612bd08185613005565b9350612be08185602086016131ca565b612be981613396565b840191505092915050565b6000612bff82612ffa565b612c098185613016565b9350612c198185602086016131ca565b612c2281613396565b840191505092915050565b6000612c3882612ffa565b612c428185613027565b9350612c528185602086016131ca565b80840191505092915050565b6000612c6b602683613016565b9150612c76826133a7565b604082019050919050565b6000612c8e601183613016565b9150612c99826133f6565b602082019050919050565b6000612cb1601483613016565b9150612cbc8261341f565b602082019050919050565b6000612cd4602083613016565b9150612cdf82613448565b602082019050919050565b6000612cf7602183613016565b9150612d0282613471565b604082019050919050565b6000612d1a602f83613016565b9150612d25826134c0565b604082019050919050565b6000612d3d601d83613016565b9150612d488261350f565b602082019050919050565b6000612d60601383613016565b9150612d6b82613538565b602082019050919050565b612d7f816131b1565b82525050565b6000612d918285612c2d565b9150612d9d8284612c2d565b91508190509392505050565b6000602082019050612dbe6000830184612b9d565b92915050565b6000608082019050612dd96000830187612b9d565b612de66020830186612b9d565b612df36040830185612d76565b8181036060830152612e058184612bbb565b905095945050505050565b6000602082019050612e256000830184612bac565b92915050565b60006020820190508181036000830152612e458184612bf4565b905092915050565b60006020820190508181036000830152612e6681612c5e565b9050919050565b60006020820190508181036000830152612e8681612c81565b9050919050565b60006020820190508181036000830152612ea681612ca4565b9050919050565b60006020820190508181036000830152612ec681612cc7565b9050919050565b60006020820190508181036000830152612ee681612cea565b9050919050565b60006020820190508181036000830152612f0681612d0d565b9050919050565b60006020820190508181036000830152612f2681612d30565b9050919050565b60006020820190508181036000830152612f4681612d53565b9050919050565b6000602082019050612f626000830184612d76565b92915050565b6000612f72612f83565b9050612f7e828261322f565b919050565b6000604051905090565b600067ffffffffffffffff821115612fa857612fa7613367565b5b612fb182613396565b9050602081019050919050565b600067ffffffffffffffff821115612fd957612fd8613367565b5b612fe282613396565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061303d826131b1565b9150613048836131b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561307d5761307c6132da565b5b828201905092915050565b6000613093826131b1565b915061309e836131b1565b9250826130ae576130ad613309565b5b828204905092915050565b60006130c4826131b1565b91506130cf836131b1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613108576131076132da565b5b828202905092915050565b600061311e826131b1565b9150613129836131b1565b92508282101561313c5761313b6132da565b5b828203905092915050565b600061315282613191565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131e85780820151818401526020810190506131cd565b838111156131f7576000848401525b50505050565b6000600282049050600182168061321557607f821691505b6020821081141561322957613228613338565b5b50919050565b61323882613396565b810181811067ffffffffffffffff8211171561325757613256613367565b5b80604052505050565b600061326b826131b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561329e5761329d6132da565b5b600182019050919050565b60006132b4826131b1565b91506132bf836131b1565b9250826132cf576132ce613309565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f7265204149476f626c696e73000000000000000000000000000000600082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b61356a81613147565b811461357557600080fd5b50565b61358181613159565b811461358c57600080fd5b50565b61359881613165565b81146135a357600080fd5b50565b6135af816131b1565b81146135ba57600080fd5b5056fea264697066735822122032a823184584da7b9001dccc63a2cd009c8f7161cfa6f37f4512ca297e8c1aff64736f6c63430008040033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb011461056d578063e985e9c514610598578063f2fde38b146105d5578063f968adbe146105fe5761019c565b8063a22cb465146104de578063b88d4fde14610507578063c87b56dd146105305761019c565b80638da5cb5b116100c65780638da5cb5b1461044157806395d89b411461046c578063a035b1fe14610497578063a0712d68146104c25761019c565b806370a08231146103d6578063715018a614610413578063766453151461042a5761019c565b8063333e44e611610159578063453c231011610133578063453c23101461032e578063502b33af1461035957806355f804b3146103705780636352211e146103995761019c565b8063333e44e6146102c35780633ccfd60b146102ee57806342842e0e146103055761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612ae1565b610629565b6040516101d59190612e10565b60405180910390f35b3480156101ea57600080fd5b506101f361070b565b6040516102009190612e2b565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612b74565b61079d565b60405161023d9190612da9565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612aa5565b610819565b005b34801561027b57600080fd5b5061028461091e565b6040516102919190612f4d565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061299f565b610935565b005b3480156102cf57600080fd5b506102d8610945565b6040516102e59190612f4d565b60405180910390f35b3480156102fa57600080fd5b5061030361094b565b005b34801561031157600080fd5b5061032c6004803603810190610327919061299f565b610a38565b005b34801561033a57600080fd5b50610343610a58565b6040516103509190612f4d565b60405180910390f35b34801561036557600080fd5b5061036e610a5e565b005b34801561037c57600080fd5b5061039760048036038101906103929190612b33565b610b06565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190612b74565b610b9c565b6040516103cd9190612da9565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f8919061293a565b610bb2565b60405161040a9190612f4d565b60405180910390f35b34801561041f57600080fd5b50610428610c82565b005b34801561043657600080fd5b5061043f610d0a565b005b34801561044d57600080fd5b50610456610db2565b6040516104639190612da9565b60405180910390f35b34801561047857600080fd5b50610481610ddc565b60405161048e9190612e2b565b60405180910390f35b3480156104a357600080fd5b506104ac610e6e565b6040516104b99190612f4d565b60405180910390f35b6104dc60048036038101906104d79190612b74565b610e74565b005b3480156104ea57600080fd5b5061050560048036038101906105009190612a69565b61105d565b005b34801561051357600080fd5b5061052e600480360381019061052991906129ee565b6111d5565b005b34801561053c57600080fd5b5061055760048036038101906105529190612b74565b61124d565b6040516105649190612e2b565b60405180910390f35b34801561057957600080fd5b5061058261134e565b60405161058f9190612f4d565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190612963565b611354565b6040516105cc9190612e10565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f7919061293a565b6113e8565b005b34801561060a57600080fd5b506106136114e0565b6040516106209190612f4d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107045750610703826114e6565b5b9050919050565b60606002805461071a906131fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610746906131fd565b80156107935780601f1061076857610100808354040283529160200191610793565b820191906000526020600020905b81548152906001019060200180831161077657829003601f168201915b5050505050905090565b60006107a882611550565b6107de576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082482610b9c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561088c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108ab61159e565b73ffffffffffffffffffffffffffffffffffffffff161461090e576108d7816108d261159e565b611354565b61090d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6109198383836115a6565b505050565b6000610928611658565b6001546000540303905090565b61094083838361165d565b505050565b600e5481565b61095361159e565b73ffffffffffffffffffffffffffffffffffffffff16610971610db2565b73ffffffffffffffffffffffffffffffffffffffff16146109c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109be90612ead565b60405180910390fd5b6000479050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a34573d6000803e3d6000fd5b5050565b610a53838383604051806020016040528060008152506111d5565b505050565b600c5481565b610a6661159e565b73ffffffffffffffffffffffffffffffffffffffff16610a84610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190612ead565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b610b0e61159e565b73ffffffffffffffffffffffffffffffffffffffff16610b2c610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7990612ead565b60405180910390fd5b80600a9080519060200190610b9892919061271b565b5050565b6000610ba782611b13565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c1a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610c8a61159e565b73ffffffffffffffffffffffffffffffffffffffff16610ca8610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf590612ead565b60405180910390fd5b610d086000611d9e565b565b610d1261159e565b73ffffffffffffffffffffffffffffffffffffffff16610d30610db2565b73ffffffffffffffffffffffffffffffffffffffff1614610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90612ead565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610deb906131fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e17906131fd565b8015610e645780601f10610e3957610100808354040283529160200191610e64565b820191906000526020600020905b815481529060010190602001808311610e4757829003601f168201915b5050505050905090565b600f5481565b6000600f5490506001600e54610e8a9190613032565b82610e9361091e565b610e9d9190613032565b1015610ea857600090505b8082610eb491906130b9565b341015610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90612f0d565b60405180910390fd5b6001600b54610f059190613032565b82610f0e61091e565b610f189190613032565b10610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f90612e6d565b60405180910390fd5b601060009054906101000a900460ff16610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90612ecd565b60405180910390fd5b6001600d54610fb69190613032565b8210610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee90612f2d565b60405180910390fd5b600c548261100433611e64565b61100e9190613032565b111561104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690612e8d565b60405180910390fd5b6110593383611ece565b5050565b61106561159e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ca576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110d761159e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661118461159e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111c99190612e10565b60405180910390a35050565b6111e084848461165d565b6111ff8373ffffffffffffffffffffffffffffffffffffffff16611eec565b156112475761121084848484611f0f565b611246576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061125882611550565b611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90612eed565b60405180910390fd5b601060019054906101000a900460ff1661133d57600a80546112b8906131fd565b80601f01602080910402602001604051908101604052809291908181526020018280546112e4906131fd565b80156113315780601f1061130657610100808354040283529160200191611331565b820191906000526020600020905b81548152906001019060200180831161131457829003601f168201915b50505050509050611349565b6113468261206f565b90505b919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113f061159e565b73ffffffffffffffffffffffffffffffffffffffff1661140e610db2565b73ffffffffffffffffffffffffffffffffffffffff1614611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b90612ead565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb90612e4d565b60405180910390fd5b6114dd81611d9e565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161155b611658565b1115801561156a575060005482105b8015611597575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061166882611b13565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146116d3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166116f461159e565b73ffffffffffffffffffffffffffffffffffffffff16148061172357506117228561171d61159e565b611354565b5b80611768575061173161159e565b73ffffffffffffffffffffffffffffffffffffffff166117508461079d565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117a1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611808576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611815858585600161210e565b611821600084876115a6565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611aa1576000548214611aa057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b0c8585856001612114565b5050505050565b611b1b6127a1565b600082905080611b29611658565b11611d6757600054811015611d66576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611d6457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c48578092505050611d99565b5b600115611d6357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d5e578092505050611d99565b611c49565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611ee882826040518060200160405280600081525061211a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f3561159e565b8786866040518563ffffffff1660e01b8152600401611f579493929190612dc4565b602060405180830381600087803b158015611f7157600080fd5b505af1925050508015611fa257506040513d601f19601f82011682018060405250810190611f9f9190612b0a565b60015b61201c573d8060008114611fd2576040519150601f19603f3d011682016040523d82523d6000602084013e611fd7565b606091505b50600081511415612014576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606061207a82611550565b6120b0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006120ba6124dc565b90506000815114156120db5760405180602001604052806000815250612106565b806120e58461256e565b6040516020016120f6929190612d85565b6040516020818303038152906040525b915050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612187576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156121c2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121cf600085838661210e565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506123908673ffffffffffffffffffffffffffffffffffffffff16611eec565b15612455575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124056000878480600101955087611f0f565b61243b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061239657826000541461245057600080fd5b6124c0565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612456575b8160008190555050506124d66000858386612114565b50505050565b6060600a80546124eb906131fd565b80601f0160208091040260200160405190810160405280929190818152602001828054612517906131fd565b80156125645780601f1061253957610100808354040283529160200191612564565b820191906000526020600020905b81548152906001019060200180831161254757829003601f168201915b5050505050905090565b606060008214156125b6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612716565b600082905060005b600082146125e85780806125d190613260565b915050600a826125e19190613088565b91506125be565b60008167ffffffffffffffff81111561262a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561265c5781602001600182028036833780820191505090505b5090505b6000851461270f576001826126759190613113565b9150600a8561268491906132a9565b60306126909190613032565b60f81b8183815181106126cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127089190613088565b9450612660565b8093505050505b919050565b828054612727906131fd565b90600052602060002090601f0160209004810192826127495760008555612790565b82601f1061276257805160ff1916838001178555612790565b82800160010185558215612790579182015b8281111561278f578251825591602001919060010190612774565b5b50905061279d91906127e4565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156127fd5760008160009055506001016127e5565b5090565b600061281461280f84612f8d565b612f68565b90508281526020810184848401111561282c57600080fd5b6128378482856131bb565b509392505050565b600061285261284d84612fbe565b612f68565b90508281526020810184848401111561286a57600080fd5b6128758482856131bb565b509392505050565b60008135905061288c81613561565b92915050565b6000813590506128a181613578565b92915050565b6000813590506128b68161358f565b92915050565b6000815190506128cb8161358f565b92915050565b600082601f8301126128e257600080fd5b81356128f2848260208601612801565b91505092915050565b600082601f83011261290c57600080fd5b813561291c84826020860161283f565b91505092915050565b600081359050612934816135a6565b92915050565b60006020828403121561294c57600080fd5b600061295a8482850161287d565b91505092915050565b6000806040838503121561297657600080fd5b60006129848582860161287d565b92505060206129958582860161287d565b9150509250929050565b6000806000606084860312156129b457600080fd5b60006129c28682870161287d565b93505060206129d38682870161287d565b92505060406129e486828701612925565b9150509250925092565b60008060008060808587031215612a0457600080fd5b6000612a128782880161287d565b9450506020612a238782880161287d565b9350506040612a3487828801612925565b925050606085013567ffffffffffffffff811115612a5157600080fd5b612a5d878288016128d1565b91505092959194509250565b60008060408385031215612a7c57600080fd5b6000612a8a8582860161287d565b9250506020612a9b85828601612892565b9150509250929050565b60008060408385031215612ab857600080fd5b6000612ac68582860161287d565b9250506020612ad785828601612925565b9150509250929050565b600060208284031215612af357600080fd5b6000612b01848285016128a7565b91505092915050565b600060208284031215612b1c57600080fd5b6000612b2a848285016128bc565b91505092915050565b600060208284031215612b4557600080fd5b600082013567ffffffffffffffff811115612b5f57600080fd5b612b6b848285016128fb565b91505092915050565b600060208284031215612b8657600080fd5b6000612b9484828501612925565b91505092915050565b612ba681613147565b82525050565b612bb581613159565b82525050565b6000612bc682612fef565b612bd08185613005565b9350612be08185602086016131ca565b612be981613396565b840191505092915050565b6000612bff82612ffa565b612c098185613016565b9350612c198185602086016131ca565b612c2281613396565b840191505092915050565b6000612c3882612ffa565b612c428185613027565b9350612c528185602086016131ca565b80840191505092915050565b6000612c6b602683613016565b9150612c76826133a7565b604082019050919050565b6000612c8e601183613016565b9150612c99826133f6565b602082019050919050565b6000612cb1601483613016565b9150612cbc8261341f565b602082019050919050565b6000612cd4602083613016565b9150612cdf82613448565b602082019050919050565b6000612cf7602183613016565b9150612d0282613471565b604082019050919050565b6000612d1a602f83613016565b9150612d25826134c0565b604082019050919050565b6000612d3d601d83613016565b9150612d488261350f565b602082019050919050565b6000612d60601383613016565b9150612d6b82613538565b602082019050919050565b612d7f816131b1565b82525050565b6000612d918285612c2d565b9150612d9d8284612c2d565b91508190509392505050565b6000602082019050612dbe6000830184612b9d565b92915050565b6000608082019050612dd96000830187612b9d565b612de66020830186612b9d565b612df36040830185612d76565b8181036060830152612e058184612bbb565b905095945050505050565b6000602082019050612e256000830184612bac565b92915050565b60006020820190508181036000830152612e458184612bf4565b905092915050565b60006020820190508181036000830152612e6681612c5e565b9050919050565b60006020820190508181036000830152612e8681612c81565b9050919050565b60006020820190508181036000830152612ea681612ca4565b9050919050565b60006020820190508181036000830152612ec681612cc7565b9050919050565b60006020820190508181036000830152612ee681612cea565b9050919050565b60006020820190508181036000830152612f0681612d0d565b9050919050565b60006020820190508181036000830152612f2681612d30565b9050919050565b60006020820190508181036000830152612f4681612d53565b9050919050565b6000602082019050612f626000830184612d76565b92915050565b6000612f72612f83565b9050612f7e828261322f565b919050565b6000604051905090565b600067ffffffffffffffff821115612fa857612fa7613367565b5b612fb182613396565b9050602081019050919050565b600067ffffffffffffffff821115612fd957612fd8613367565b5b612fe282613396565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061303d826131b1565b9150613048836131b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561307d5761307c6132da565b5b828201905092915050565b6000613093826131b1565b915061309e836131b1565b9250826130ae576130ad613309565b5b828204905092915050565b60006130c4826131b1565b91506130cf836131b1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613108576131076132da565b5b828202905092915050565b600061311e826131b1565b9150613129836131b1565b92508282101561313c5761313b6132da565b5b828203905092915050565b600061315282613191565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131e85780820151818401526020810190506131cd565b838111156131f7576000848401525b50505050565b6000600282049050600182168061321557607f821691505b6020821081141561322957613228613338565b5b50919050565b61323882613396565b810181811067ffffffffffffffff8211171561325757613256613367565b5b80604052505050565b600061326b826131b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561329e5761329d6132da565b5b600182019050919050565b60006132b4826131b1565b91506132bf836131b1565b9250826132cf576132ce613309565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f7265204149476f626c696e73000000000000000000000000000000600082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b61356a81613147565b811461357557600080fd5b50565b61358181613159565b811461358c57600080fd5b50565b61359881613165565b81146135a357600080fd5b50565b6135af816131b1565b81146135ba57600080fd5b5056fea264697066735822122032a823184584da7b9001dccc63a2cd009c8f7161cfa6f37f4512ca297e8c1aff64736f6c63430008040033

Deployed Bytecode Sourcemap

50221:2212:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31304:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34419:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35923:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35485:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30544:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36788:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50426:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52282:148;;;;;;;;;;;;;:::i;:::-;;37029:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50352:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50898:87;;;;;;;;;;;;;:::i;:::-;;50682:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34227:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31673:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7489:103;;;;;;;;;;;;;:::i;:::-;;51686:87;;;;;;;;;;;;;:::i;:::-;;6838;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34588:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50464:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51025:626;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36199:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37285:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51781:383;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50313:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36557:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7747:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50391:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31304:305;31406:4;31458:25;31443:40;;;:11;:40;;;;:105;;;;31515:33;31500:48;;;:11;:48;;;;31443:105;:158;;;;31565:36;31589:11;31565:23;:36::i;:::-;31443:158;31423:178;;31304:305;;;:::o;34419:100::-;34473:13;34506:5;34499:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34419:100;:::o;35923:204::-;35991:7;36016:16;36024:7;36016;:16::i;:::-;36011:64;;36041:34;;;;;;;;;;;;;;36011:64;36095:15;:24;36111:7;36095:24;;;;;;;;;;;;;;;;;;;;;36088:31;;35923:204;;;:::o;35485:372::-;35558:13;35574:24;35590:7;35574:15;:24::i;:::-;35558:40;;35619:5;35613:11;;:2;:11;;;35609:48;;;35633:24;;;;;;;;;;;;;;35609:48;35690:5;35674:21;;:12;:10;:12::i;:::-;:21;;;35670:139;;35701:37;35718:5;35725:12;:10;:12::i;:::-;35701:16;:37::i;:::-;35697:112;;35762:35;;;;;;;;;;;;;;35697:112;35670:139;35821:28;35830:2;35834:7;35843:5;35821:8;:28::i;:::-;35485:372;;;:::o;30544:312::-;30597:7;30822:15;:13;:15::i;:::-;30807:12;;30791:13;;:28;:46;30784:53;;30544:312;:::o;36788:170::-;36922:28;36932:4;36938:2;36942:7;36922:9;:28::i;:::-;36788:170;;;:::o;50426:31::-;;;;:::o;52282:148::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52332:15:::1;52350:21;52332:39;;52390:13;;;;;;;;;;;52382:31;;:40;52414:7;52382:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;7129:1;52282:148::o:0;37029:185::-;37167:39;37184:4;37190:2;37194:7;37167:39;;;;;;;;;;;;:16;:39::i;:::-;37029:185;;;:::o;50352:32::-;;;;:::o;50898:87::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50967:10:::1;;;;;;;;;;;50966:11;50953:10;;:24;;;;;;;;;;;;;;;;;;50898:87::o:0;50682:92::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50762:4:::1;50752:7;:14;;;;;;;;;;;;:::i;:::-;;50682:92:::0;:::o;34227:125::-;34291:7;34318:21;34331:7;34318:12;:21::i;:::-;:26;;;34311:33;;34227:125;;;:::o;31673:206::-;31737:7;31778:1;31761:19;;:5;:19;;;31757:60;;;31789:28;;;;;;;;;;;;;;31757:60;31843:12;:19;31856:5;31843:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31835:36;;31828:43;;31673:206;;;:::o;7489:103::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7554:30:::1;7581:1;7554:18;:30::i;:::-;7489:103::o:0;51686:87::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51753:12:::1;;;;;;;;;;;51752:13;51737:12;;:28;;;;;;;;;;;;;;;;;;51686:87::o:0;6838:::-;6884:7;6911:6;;;;;;;;;;;6904:13;;6838:87;:::o;34588:104::-;34644:13;34677:7;34670:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34588:104;:::o;50464:34::-;;;;:::o;51025:626::-;51080:12;51095:5;;51080:20;;51149:1;51137:9;;:13;;;;:::i;:::-;51131:3;51115:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51111:76;;;51174:1;51167:8;;51111:76;51226:4;51220:3;:10;;;;:::i;:::-;51207:9;:23;;51199:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51317:1;51305:9;;:13;;;;:::i;:::-;51299:3;51283:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51275:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51359:10;;;;;;;;;;;51351:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51443:1;51432:8;;:12;;;;:::i;:::-;51426:3;:18;51418:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;51536:12;;51529:3;51501:25;51515:10;51501:13;:25::i;:::-;:31;;;;:::i;:::-;:47;;51479:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;51609:26;51619:10;51631:3;51609:9;:26::i;:::-;51025:626;;:::o;36199:287::-;36310:12;:10;:12::i;:::-;36298:24;;:8;:24;;;36294:54;;;36331:17;;;;;;;;;;;;;;36294:54;36406:8;36361:18;:32;36380:12;:10;:12::i;:::-;36361:32;;;;;;;;;;;;;;;:42;36394:8;36361:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36459:8;36430:48;;36445:12;:10;:12::i;:::-;36430:48;;;36469:8;36430:48;;;;;;:::i;:::-;;;;;;;;36199:287;;:::o;37285:370::-;37452:28;37462:4;37468:2;37472:7;37452:9;:28::i;:::-;37495:15;:2;:13;;;:15::i;:::-;37491:157;;;37516:56;37547:4;37553:2;37557:7;37566:5;37516:30;:56::i;:::-;37512:136;;37596:40;;;;;;;;;;;;;;37512:136;37491:157;37285:370;;;;:::o;51781:383::-;51899:13;51952:16;51960:7;51952;:16::i;:::-;51930:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;52061:12;;;;;;;;;;;52056:60;;52097:7;52090:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52056:60;52133:23;52148:7;52133:14;:23::i;:::-;52126:30;;51781:383;;;;:::o;50313:32::-;;;;:::o;36557:164::-;36654:4;36678:18;:25;36697:5;36678:25;;;;;;;;;;;;;;;:35;36704:8;36678:35;;;;;;;;;;;;;;;;;;;;;;;;;36671:42;;36557:164;;;;:::o;7747:201::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7856:1:::1;7836:22;;:8;:22;;;;7828:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7912:28;7931:8;7912:18;:28::i;:::-;7747:201:::0;:::o;50391:28::-;;;;:::o;19645:157::-;19730:4;19769:25;19754:40;;;:11;:40;;;;19747:47;;19645:157;;;:::o;37910:174::-;37967:4;38010:7;37991:15;:13;:15::i;:::-;:26;;:53;;;;;38031:13;;38021:7;:23;37991:53;:85;;;;;38049:11;:20;38061:7;38049:20;;;;;;;;;;;:27;;;;;;;;;;;;38048:28;37991:85;37984:92;;37910:174;;;:::o;5562:98::-;5615:7;5642:10;5635:17;;5562:98;:::o;47132:196::-;47274:2;47247:15;:24;47263:7;47247:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47312:7;47308:2;47292:28;;47301:5;47292:28;;;;;;;;;;;;47132:196;;;:::o;30318:92::-;30374:7;30318:92;:::o;42080:2130::-;42195:35;42233:21;42246:7;42233:12;:21::i;:::-;42195:59;;42293:4;42271:26;;:13;:18;;;:26;;;42267:67;;42306:28;;;;;;;;;;;;;;42267:67;42347:22;42389:4;42373:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42410:36;42427:4;42433:12;:10;:12::i;:::-;42410:16;:36::i;:::-;42373:73;:126;;;;42487:12;:10;:12::i;:::-;42463:36;;:20;42475:7;42463:11;:20::i;:::-;:36;;;42373:126;42347:153;;42518:17;42513:66;;42544:35;;;;;;;;;;;;;;42513:66;42608:1;42594:16;;:2;:16;;;42590:52;;;42619:23;;;;;;;;;;;;;;42590:52;42655:43;42677:4;42683:2;42687:7;42696:1;42655:21;:43::i;:::-;42763:35;42780:1;42784:7;42793:4;42763:8;:35::i;:::-;43124:1;43094:12;:18;43107:4;43094:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43168:1;43140:12;:16;43153:2;43140:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43186:31;43220:11;:20;43232:7;43220:20;;;;;;;;;;;43186:54;;43271:2;43255:8;:13;;;:18;;;;;;;;;;;;;;;;;;43321:15;43288:8;:23;;;:49;;;;;;;;;;;;;;;;;;43589:19;43621:1;43611:7;:11;43589:33;;43637:31;43671:11;:24;43683:11;43671:24;;;;;;;;;;;43637:58;;43739:1;43714:27;;:8;:13;;;;;;;;;;;;:27;;;43710:384;;;43924:13;;43909:11;:28;43905:174;;43978:4;43962:8;:13;;;:20;;;;;;;;;;;;;;;;;;44031:13;:28;;;44005:8;:23;;;:54;;;;;;;;;;;;;;;;;;43905:174;43710:384;42080:2130;;;44141:7;44137:2;44122:27;;44131:4;44122:27;;;;;;;;;;;;44160:42;44181:4;44187:2;44191:7;44200:1;44160:20;:42::i;:::-;42080:2130;;;;;:::o;33054:1111::-;33116:21;;:::i;:::-;33150:12;33165:7;33150:22;;33233:4;33214:15;:13;:15::i;:::-;:23;33210:888;;33250:13;;33243:4;:20;33239:859;;;33284:31;33318:11;:17;33330:4;33318:17;;;;;;;;;;;33284:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33359:9;:16;;;33354:729;;33430:1;33404:28;;:9;:14;;;:28;;;33400:101;;33468:9;33461:16;;;;;;33400:101;33803:261;33810:4;33803:261;;;33843:6;;;;;;;;33888:11;:17;33900:4;33888:17;;;;;;;;;;;33876:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33962:1;33936:28;;:9;:14;;;:28;;;33932:109;;34004:9;33997:16;;;;;;33932:109;33803:261;;;33354:729;33239:859;;33210:888;34126:31;;;;;;;;;;;;;;33054:1111;;;;:::o;8108:191::-;8182:16;8201:6;;;;;;;;;;;8182:25;;8227:8;8218:6;;:17;;;;;;;;;;;;;;;;;;8282:8;8251:40;;8272:8;8251:40;;;;;;;;;;;;8108:191;;:::o;31961:137::-;32022:7;32057:12;:19;32070:5;32057:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;32049:41;;32042:48;;31961:137;;;:::o;38168:104::-;38237:27;38247:2;38251:8;38237:27;;;;;;;;;;;;:9;:27::i;:::-;38168:104;;:::o;9539:326::-;9599:4;9856:1;9834:7;:19;;;:23;9827:30;;9539:326;;;:::o;47820:667::-;47983:4;48020:2;48004:36;;;48041:12;:10;:12::i;:::-;48055:4;48061:7;48070:5;48004:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48000:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48255:1;48238:6;:13;:18;48234:235;;;48284:40;;;;;;;;;;;;;;48234:235;48427:6;48421:13;48412:6;48408:2;48404:15;48397:38;48000:480;48133:45;;;48123:55;;;:6;:55;;;;48116:62;;;47820:667;;;;;;:::o;34763:318::-;34836:13;34867:16;34875:7;34867;:16::i;:::-;34862:59;;34892:29;;;;;;;;;;;;;;34862:59;34934:21;34958:10;:8;:10::i;:::-;34934:34;;35011:1;34992:7;34986:21;:26;;:87;;;;;;;;;;;;;;;;;35039:7;35048:18;:7;:16;:18::i;:::-;35022:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34986:87;34979:94;;;34763:318;;;:::o;49135:159::-;;;;;:::o;49953:158::-;;;;;:::o;38645:1749::-;38768:20;38791:13;;38768:36;;38833:1;38819:16;;:2;:16;;;38815:48;;;38844:19;;;;;;;;;;;;;;38815:48;38890:1;38878:8;:13;38874:44;;;38900:18;;;;;;;;;;;;;;38874:44;38931:61;38961:1;38965:2;38969:12;38983:8;38931:21;:61::i;:::-;39304:8;39269:12;:16;39282:2;39269:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39368:8;39328:12;:16;39341:2;39328:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39427:2;39394:11;:25;39406:12;39394:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39494:15;39444:11;:25;39456:12;39444:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39527:20;39550:12;39527:35;;39577:11;39606:8;39591:12;:23;39577:37;;39635:15;:2;:13;;;:15::i;:::-;39631:631;;;39671:313;39727:12;39723:2;39702:38;;39719:1;39702:38;;;;;;;;;;;;39768:69;39807:1;39811:2;39815:14;;;;;;39831:5;39768:30;:69::i;:::-;39763:174;;39873:40;;;;;;;;;;;;;;39763:174;39979:3;39964:12;:18;39671:313;;40065:12;40048:13;;:29;40044:43;;40079:8;;;40044:43;39631:631;;;40128:119;40184:14;;;;;;40180:2;40159:40;;40176:1;40159:40;;;;;;;;;;;;40242:3;40227:12;:18;40128:119;;39631:631;40292:12;40276:13;:28;;;;38645:1749;;40326:60;40355:1;40359:2;40363:12;40377:8;40326:20;:60::i;:::-;38645:1749;;;;:::o;50782:108::-;50842:13;50875:7;50868:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50782:108;:::o;3124:723::-;3180:13;3410:1;3401:5;:10;3397:53;;;3428:10;;;;;;;;;;;;;;;;;;;;;3397:53;3460:12;3475:5;3460:20;;3491:14;3516:78;3531:1;3523:4;:9;3516:78;;3549:8;;;;;:::i;:::-;;;;3580:2;3572:10;;;;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3604:39;;3654:154;3670:1;3661:5;:10;3654:154;;3698:1;3688:11;;;;;:::i;:::-;;;3765:2;3757:5;:10;;;;:::i;:::-;3744:2;:24;;;;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;3794:2;3785:11;;;;;:::i;:::-;;;3654:154;;;3832:6;3818:21;;;;;3124:723;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;6411:3;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;6779:3;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:377::-;7167:3;7195:39;7228:5;7195:39;:::i;:::-;7250:89;7332:6;7327:3;7250:89;:::i;:::-;7243:96;;7348:52;7393:6;7388:3;7381:4;7374:5;7370:16;7348:52;:::i;:::-;7425:6;7420:3;7416:16;7409:23;;7171:267;;;;;:::o;7444:366::-;7586:3;7607:67;7671:2;7666:3;7607:67;:::i;:::-;7600:74;;7683:93;7772:3;7683:93;:::i;:::-;7801:2;7796:3;7792:12;7785:19;;7590:220;;;:::o;7816:366::-;7958:3;7979:67;8043:2;8038:3;7979:67;:::i;:::-;7972:74;;8055:93;8144:3;8055:93;:::i;:::-;8173:2;8168:3;8164:12;8157:19;;7962:220;;;:::o;8188:366::-;8330:3;8351:67;8415:2;8410:3;8351:67;:::i;:::-;8344:74;;8427:93;8516:3;8427:93;:::i;:::-;8545:2;8540:3;8536:12;8529:19;;8334:220;;;:::o;8560:366::-;8702:3;8723:67;8787:2;8782:3;8723:67;:::i;:::-;8716:74;;8799:93;8888:3;8799:93;:::i;:::-;8917:2;8912:3;8908:12;8901:19;;8706:220;;;:::o;8932:366::-;9074:3;9095:67;9159:2;9154:3;9095:67;:::i;:::-;9088:74;;9171:93;9260:3;9171:93;:::i;:::-;9289:2;9284:3;9280:12;9273:19;;9078:220;;;:::o;9304:366::-;9446:3;9467:67;9531:2;9526:3;9467:67;:::i;:::-;9460:74;;9543:93;9632:3;9543:93;:::i;:::-;9661:2;9656:3;9652:12;9645:19;;9450:220;;;:::o;9676:366::-;9818:3;9839:67;9903:2;9898:3;9839:67;:::i;:::-;9832:74;;9915:93;10004:3;9915:93;:::i;:::-;10033:2;10028:3;10024:12;10017:19;;9822:220;;;:::o;10048:366::-;10190:3;10211:67;10275:2;10270:3;10211:67;:::i;:::-;10204:74;;10287:93;10376:3;10287:93;:::i;:::-;10405:2;10400:3;10396:12;10389:19;;10194:220;;;:::o;10420:118::-;10507:24;10525:5;10507:24;:::i;:::-;10502:3;10495:37;10485:53;;:::o;10544:435::-;10724:3;10746:95;10837:3;10828:6;10746:95;:::i;:::-;10739:102;;10858:95;10949:3;10940:6;10858:95;:::i;:::-;10851:102;;10970:3;10963:10;;10728:251;;;;;:::o;10985:222::-;11078:4;11116:2;11105:9;11101:18;11093:26;;11129:71;11197:1;11186:9;11182:17;11173:6;11129:71;:::i;:::-;11083:124;;;;:::o;11213:640::-;11408:4;11446:3;11435:9;11431:19;11423:27;;11460:71;11528:1;11517:9;11513:17;11504:6;11460:71;:::i;:::-;11541:72;11609:2;11598:9;11594:18;11585:6;11541:72;:::i;:::-;11623;11691:2;11680:9;11676:18;11667:6;11623:72;:::i;:::-;11742:9;11736:4;11732:20;11727:2;11716:9;11712:18;11705:48;11770:76;11841:4;11832:6;11770:76;:::i;:::-;11762:84;;11413:440;;;;;;;:::o;11859:210::-;11946:4;11984:2;11973:9;11969:18;11961:26;;11997:65;12059:1;12048:9;12044:17;12035:6;11997:65;:::i;:::-;11951:118;;;;:::o;12075:313::-;12188:4;12226:2;12215:9;12211:18;12203:26;;12275:9;12269:4;12265:20;12261:1;12250:9;12246:17;12239:47;12303:78;12376:4;12367:6;12303:78;:::i;:::-;12295:86;;12193:195;;;;:::o;12394:419::-;12560:4;12598:2;12587:9;12583:18;12575:26;;12647:9;12641:4;12637:20;12633:1;12622:9;12618:17;12611:47;12675:131;12801:4;12675:131;:::i;:::-;12667:139;;12565:248;;;:::o;12819:419::-;12985:4;13023:2;13012:9;13008:18;13000:26;;13072:9;13066:4;13062:20;13058:1;13047:9;13043:17;13036:47;13100:131;13226:4;13100:131;:::i;:::-;13092:139;;12990:248;;;:::o;13244:419::-;13410:4;13448:2;13437:9;13433:18;13425:26;;13497:9;13491:4;13487:20;13483:1;13472:9;13468:17;13461:47;13525:131;13651:4;13525:131;:::i;:::-;13517:139;;13415:248;;;:::o;13669:419::-;13835:4;13873:2;13862:9;13858:18;13850:26;;13922:9;13916:4;13912:20;13908:1;13897:9;13893:17;13886:47;13950:131;14076:4;13950:131;:::i;:::-;13942:139;;13840:248;;;:::o;14094:419::-;14260:4;14298:2;14287:9;14283:18;14275:26;;14347:9;14341:4;14337:20;14333:1;14322:9;14318:17;14311:47;14375:131;14501:4;14375:131;:::i;:::-;14367:139;;14265:248;;;:::o;14519:419::-;14685:4;14723:2;14712:9;14708:18;14700:26;;14772:9;14766:4;14762:20;14758:1;14747:9;14743:17;14736:47;14800:131;14926:4;14800:131;:::i;:::-;14792:139;;14690:248;;;:::o;14944:419::-;15110:4;15148:2;15137:9;15133:18;15125:26;;15197:9;15191:4;15187:20;15183:1;15172:9;15168:17;15161:47;15225:131;15351:4;15225:131;:::i;:::-;15217:139;;15115:248;;;:::o;15369:419::-;15535:4;15573:2;15562:9;15558:18;15550:26;;15622:9;15616:4;15612:20;15608:1;15597:9;15593:17;15586:47;15650:131;15776:4;15650:131;:::i;:::-;15642:139;;15540:248;;;:::o;15794:222::-;15887:4;15925:2;15914:9;15910:18;15902:26;;15938:71;16006:1;15995:9;15991:17;15982:6;15938:71;:::i;:::-;15892:124;;;;:::o;16022:129::-;16056:6;16083:20;;:::i;:::-;16073:30;;16112:33;16140:4;16132:6;16112:33;:::i;:::-;16063:88;;;:::o;16157:75::-;16190:6;16223:2;16217:9;16207:19;;16197:35;:::o;16238:307::-;16299:4;16389:18;16381:6;16378:30;16375:2;;;16411:18;;:::i;:::-;16375:2;16449:29;16471:6;16449:29;:::i;:::-;16441:37;;16533:4;16527;16523:15;16515:23;;16304:241;;;:::o;16551:308::-;16613:4;16703:18;16695:6;16692:30;16689:2;;;16725:18;;:::i;:::-;16689:2;16763:29;16785:6;16763:29;:::i;:::-;16755:37;;16847:4;16841;16837:15;16829:23;;16618:241;;;:::o;16865:98::-;16916:6;16950:5;16944:12;16934:22;;16923:40;;;:::o;16969:99::-;17021:6;17055:5;17049:12;17039:22;;17028:40;;;:::o;17074:168::-;17157:11;17191:6;17186:3;17179:19;17231:4;17226:3;17222:14;17207:29;;17169:73;;;;:::o;17248:169::-;17332:11;17366:6;17361:3;17354:19;17406:4;17401:3;17397:14;17382:29;;17344:73;;;;:::o;17423:148::-;17525:11;17562:3;17547:18;;17537:34;;;;:::o;17577:305::-;17617:3;17636:20;17654:1;17636:20;:::i;:::-;17631:25;;17670:20;17688:1;17670:20;:::i;:::-;17665:25;;17824:1;17756:66;17752:74;17749:1;17746:81;17743:2;;;17830:18;;:::i;:::-;17743:2;17874:1;17871;17867:9;17860:16;;17621:261;;;;:::o;17888:185::-;17928:1;17945:20;17963:1;17945:20;:::i;:::-;17940:25;;17979:20;17997:1;17979:20;:::i;:::-;17974:25;;18018:1;18008:2;;18023:18;;:::i;:::-;18008:2;18065:1;18062;18058:9;18053:14;;17930:143;;;;:::o;18079:348::-;18119:7;18142:20;18160:1;18142:20;:::i;:::-;18137:25;;18176:20;18194:1;18176:20;:::i;:::-;18171:25;;18364:1;18296:66;18292:74;18289:1;18286:81;18281:1;18274:9;18267:17;18263:105;18260:2;;;18371:18;;:::i;:::-;18260:2;18419:1;18416;18412:9;18401:20;;18127:300;;;;:::o;18433:191::-;18473:4;18493:20;18511:1;18493:20;:::i;:::-;18488:25;;18527:20;18545:1;18527:20;:::i;:::-;18522:25;;18566:1;18563;18560:8;18557:2;;;18571:18;;:::i;:::-;18557:2;18616:1;18613;18609:9;18601:17;;18478:146;;;;:::o;18630:96::-;18667:7;18696:24;18714:5;18696:24;:::i;:::-;18685:35;;18675:51;;;:::o;18732:90::-;18766:7;18809:5;18802:13;18795:21;18784:32;;18774:48;;;:::o;18828:149::-;18864:7;18904:66;18897:5;18893:78;18882:89;;18872:105;;;:::o;18983:126::-;19020:7;19060:42;19053:5;19049:54;19038:65;;19028:81;;;:::o;19115:77::-;19152:7;19181:5;19170:16;;19160:32;;;:::o;19198:154::-;19282:6;19277:3;19272;19259:30;19344:1;19335:6;19330:3;19326:16;19319:27;19249:103;;;:::o;19358:307::-;19426:1;19436:113;19450:6;19447:1;19444:13;19436:113;;;19535:1;19530:3;19526:11;19520:18;19516:1;19511:3;19507:11;19500:39;19472:2;19469:1;19465:10;19460:15;;19436:113;;;19567:6;19564:1;19561:13;19558:2;;;19647:1;19638:6;19633:3;19629:16;19622:27;19558:2;19407:258;;;;:::o;19671:320::-;19715:6;19752:1;19746:4;19742:12;19732:22;;19799:1;19793:4;19789:12;19820:18;19810:2;;19876:4;19868:6;19864:17;19854:27;;19810:2;19938;19930:6;19927:14;19907:18;19904:38;19901:2;;;19957:18;;:::i;:::-;19901:2;19722:269;;;;:::o;19997:281::-;20080:27;20102:4;20080:27;:::i;:::-;20072:6;20068:40;20210:6;20198:10;20195:22;20174:18;20162:10;20159:34;20156:62;20153:2;;;20221:18;;:::i;:::-;20153:2;20261:10;20257:2;20250:22;20040:238;;;:::o;20284:233::-;20323:3;20346:24;20364:5;20346:24;:::i;:::-;20337:33;;20392:66;20385:5;20382:77;20379:2;;;20462:18;;:::i;:::-;20379:2;20509:1;20502:5;20498:13;20491:20;;20327:190;;;:::o;20523:176::-;20555:1;20572:20;20590:1;20572:20;:::i;:::-;20567:25;;20606:20;20624:1;20606:20;:::i;:::-;20601:25;;20645:1;20635:2;;20650:18;;:::i;:::-;20635:2;20691:1;20688;20684:9;20679:14;;20557:142;;;;:::o;20705:180::-;20753:77;20750:1;20743:88;20850:4;20847:1;20840:15;20874:4;20871:1;20864:15;20891:180;20939:77;20936:1;20929:88;21036:4;21033:1;21026:15;21060:4;21057:1;21050:15;21077:180;21125:77;21122:1;21115:88;21222:4;21219:1;21212:15;21246:4;21243:1;21236:15;21263:180;21311:77;21308:1;21301:88;21408:4;21405:1;21398:15;21432:4;21429:1;21422:15;21449:102;21490:6;21541:2;21537:7;21532:2;21525:5;21521:14;21517:28;21507:38;;21497:54;;;:::o;21557:225::-;21697:34;21693:1;21685:6;21681:14;21674:58;21766:8;21761:2;21753:6;21749:15;21742:33;21663:119;:::o;21788:167::-;21928:19;21924:1;21916:6;21912:14;21905:43;21894:61;:::o;21961:170::-;22101:22;22097:1;22089:6;22085:14;22078:46;22067:64;:::o;22137:182::-;22277:34;22273:1;22265:6;22261:14;22254:58;22243:76;:::o;22325:220::-;22465:34;22461:1;22453:6;22449:14;22442:58;22534:3;22529:2;22521:6;22517:15;22510:28;22431:114;:::o;22551:234::-;22691:34;22687:1;22679:6;22675:14;22668:58;22760:17;22755:2;22747:6;22743:15;22736:42;22657:128;:::o;22791:179::-;22931:31;22927:1;22919:6;22915:14;22908:55;22897:73;:::o;22976:169::-;23116:21;23112:1;23104:6;23100:14;23093:45;23082:63;:::o;23151:122::-;23224:24;23242:5;23224:24;:::i;:::-;23217:5;23214:35;23204:2;;23263:1;23260;23253:12;23204:2;23194:79;:::o;23279:116::-;23349:21;23364:5;23349:21;:::i;:::-;23342:5;23339:32;23329:2;;23385:1;23382;23375:12;23329:2;23319:76;:::o;23401:120::-;23473:23;23490:5;23473:23;:::i;:::-;23466:5;23463:34;23453:2;;23511:1;23508;23501:12;23453:2;23443:78;:::o;23527:122::-;23600:24;23618:5;23600:24;:::i;:::-;23593:5;23590:35;23580:2;;23639:1;23636;23629:12;23580:2;23570:79;:::o

Swarm Source

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