ETH Price: $3,485.65 (+3.39%)
Gas: 4 Gwei

Token

Spagett (SPAGETT)
 

Overview

Max Total Supply

7,720 SPAGETT

Holders

573

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 SPAGETT
0x184a565fa9bc6bc62736e4d699c3b4b1695ca7d3
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:
Spagett

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol

// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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/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 v4.4.1 (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 `IERC721.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 v4.4.1 (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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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 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);

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

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

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// 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: @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/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: contracts/ERC721A.sol

pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // 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;
    }

    // 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 See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view 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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 && 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 && !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() && !_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;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 (safe && 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 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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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: @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: contracts/Spagett.sol

pragma solidity ^0.8.0;

contract Spagett is Ownable, ERC721A, ReentrancyGuard {
    uint private constant MAX_SUPPLY = 7720;
    uint private constant MAX_BATCH = 5;
    bytes32 public firstSaleMerkleRoot;
    mapping(address => uint256) public firstSaleClaimed;
    mapping(address => bool) public firstSaleClaimedChecker;

    struct SaleConfig {
        uint32 publicSaleStartTime;
        uint64 firstSalePrice;
        uint64 publicPrice;
        uint32 publicSaleKey;
    }

    SaleConfig public saleConfig;

    constructor() ERC721A("Spagett", "SPAGETT") {}

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function gift(address[] calldata receivers) external onlyOwner {
        require(totalSupply() + receivers.length <= MAX_SUPPLY, "MAX_MINT");
        for (uint256 i = 0; i < receivers.length; i++) {
            _safeMint(receivers[i], 1);
        }
    }

    function reserveGiveaway(uint256 num, address walletAddress) public onlyOwner {
        require(totalSupply() + num <= MAX_SUPPLY, "Exceeds total supply");
        _safeMint(walletAddress, num);
    }

    function firstSaleMint(bytes32[] calldata _merkleProof, uint256 quantity) external payable callerIsUser {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, firstSaleMerkleRoot, leaf),
            "Invalid Merkle Proof.");
        uint256 price = uint256(saleConfig.firstSalePrice);
        require(price != 0, "sale has not begun yet");
        if (!firstSaleClaimedChecker[msg.sender]) {
            firstSaleClaimedChecker[msg.sender] = true;
            firstSaleClaimed[msg.sender] = 5;
        }
        require(firstSaleClaimed[msg.sender] > 0, "Address already minted num of tokens allowed");
        firstSaleClaimed[msg.sender] = firstSaleClaimed[msg.sender] - quantity;
        _safeMint(msg.sender, quantity);
        refundIfOver(price * quantity);
    }

    function publicSaleMint(uint256 quantity, uint256 callerPublicSaleKey) external payable callerIsUser {
        SaleConfig memory config = saleConfig;
        uint256 publicSaleKey = uint256(config.publicSaleKey);
        uint256 publicPrice = uint256(config.publicPrice);
        uint256 publicSaleStartTime = uint256(config.publicSaleStartTime);
        require(
            publicSaleKey == callerPublicSaleKey,
            "called with incorrect public sale key"
        );
        require(
            isPublicSaleOn(publicPrice, publicSaleKey, publicSaleStartTime),
            "public sale has not begun yet"
        );
        require(
            totalSupply() + quantity <= MAX_SUPPLY,
            "reached max supply"
        );
        _safeMint(msg.sender, quantity);
        refundIfOver(publicPrice * quantity);
    }

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    function isPublicSaleOn(
        uint256 publicPriceWei,
        uint256 publicSaleKey,
        uint256 publicSaleStartTime
    ) public view returns (bool) {
        return
            publicPriceWei != 0 &&
            publicSaleKey != 0 &&
            block.timestamp >= publicSaleStartTime;
    }

    function setupSaleInfo(
        uint64 firstSalePriceWei,
        uint64 publicPriceWei,
        uint32 publicSaleStartTime
    ) external onlyOwner {
        saleConfig = SaleConfig(
            publicSaleStartTime,
            firstSalePriceWei,
            publicPriceWei,
            saleConfig.publicSaleKey
        );
    }

    function setPublicSaleKey(uint32 key) external onlyOwner {
        saleConfig.publicSaleKey = key;
    }

    function setPublicPrice(uint64 price) external onlyOwner {
        saleConfig.publicPrice = price;
    }

    function setFirstSalePrice(uint64 price) external onlyOwner {
        saleConfig.firstSalePrice = price;
    }

    function setPublicSaleStartTime(uint32 time) external onlyOwner {
        saleConfig.publicSaleStartTime = time;
    }

    function setFirstSaleMerkleRoot(bytes32 merkle_root) external onlyOwner {
        firstSaleMerkleRoot = merkle_root;
    }

    string private _baseTokenURI;

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function withdrawMoney() external nonReentrant {
        uint256 balance = address(this).balance;
         payable(0x05d308331b832640AcCb6541853AC92492Bfa8Db).transfer(
            (balance * 23) / 100
        );
         payable(0xA00ab9A6d9AB35859B9b1679Ff9d9D8F2Dff62F4).transfer(
            (balance * 23) / 100
        );
         payable(0x7EBf8EA5B27302E63b11A18D38d282117aE27b28).transfer(
            (balance * 5) / 100
        );
         payable(0x31BA11959EF28f569AEFB4eB54a60a2462eD5A5A).transfer(
            (balance * 9) / 100
        );
         payable(0xfbAf34841541E95d8B43f3CF10728869Be4c8fde).transfer(
            (balance * 20) / 100
        );
         payable(0xE3Af2fb66c545b77BFD7Bfc10F5FaE3fEbdEeFC4).transfer(
            (balance * 20) / 100
        );
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
        return ownershipOf(tokenId);
    }
}

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":"MintedQueryForZeroAddress","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":"address","name":"","type":"address"}],"name":"firstSaleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"firstSaleClaimedChecker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstSaleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"firstSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"publicPriceWei","type":"uint256"},{"internalType":"uint256","name":"publicSaleKey","type":"uint256"},{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"callerPublicSaleKey","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"address","name":"walletAddress","type":"address"}],"name":"reserveGiveaway","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":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint64","name":"firstSalePrice","type":"uint64"},{"internalType":"uint64","name":"publicPrice","type":"uint64"},{"internalType":"uint32","name":"publicSaleKey","type":"uint32"}],"stateMutability":"view","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkle_root","type":"bytes32"}],"name":"setFirstSaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"price","type":"uint64"}],"name":"setFirstSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"price","type":"uint64"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"key","type":"uint32"}],"name":"setPublicSaleKey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"time","type":"uint32"}],"name":"setPublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"firstSalePriceWei","type":"uint64"},{"internalType":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"}],"name":"setupSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600781526020016614dc1859d95d1d60ca1b8152506040518060400160405280600781526020016614d41051d1551560ca1b8152506200006c62000066620000aa60201b60201c565b620000ae565b815162000081906003906020850190620000fe565b50805162000097906004906020840190620000fe565b50506000600190815560095550620001e1565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200010c90620001a4565b90600052602060002090601f0160209004810192826200013057600085556200017b565b82601f106200014b57805160ff19168380011785556200017b565b828001600101855582156200017b579182015b828111156200017b5782518255916020019190600101906200015e565b50620001899291506200018d565b5090565b5b808211156200018957600081556001016200018e565b600181811c90821680620001b957607f821691505b60208210811415620001db57634e487b7160e01b600052602260045260246000fd5b50919050565b6127c480620001f16000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063bb3f6833116100a0578063dc33e6811161006f578063dc33e68114610688578063e0e3f5ef146106a8578063e985e9c5146106d5578063ea9a576c1461071e578063f2fde38b1461073e57600080fd5b8063bb3f683314610615578063c87b56dd14610635578063cb91d8b314610655578063d8929c8b1461066857600080fd5b80639231ab2a116100e75780639231ab2a1461055557806395d89b41146105ab578063a22cb465146105c0578063ac446002146105e0578063b88d4fde146105f557600080fd5b8063715018a6146104815780638da5cb5b1461049657806390028083146104b457806390aa0b0f146104d457600080fd5b80633b438ad11161019b57806355f804b31161016a57806355f804b3146103e15780635fd84c28146104015780636352211e1461042157806368010d6e1461044157806370a082311461046157600080fd5b80633b438ad11461035b578063422030ba1461038b57806342842e0e146103ab57806352c4cbaf146103cb57600080fd5b80630c29dbae116101e25780630c29dbae146102c5578063163e1e61146102e557806318160ddd1461030557806323b872dd146103285780632bf59ba51461034857600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046123b3565b61075e565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6107b0565b60405161024091906125e0565b34801561027757600080fd5b5061028b61028636600461239a565b610842565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046122e4565b610886565b005b3480156102d157600080fd5b506102c36102e03660046124ea565b610914565b3480156102f157600080fd5b506102c361030036600461230e565b610974565b34801561031157600080fd5b50600254600154035b604051908152602001610240565b34801561033457600080fd5b506102c3610343366004612191565b610a40565b6102c361035636600461234f565b610a4b565b34801561036757600080fd5b50610234610376366004612143565b600c6020526000908152604090205460ff1681565b34801561039757600080fd5b506102346103a63660046124a3565b610cb4565b3480156103b757600080fd5b506102c36103c6366004612191565b610cd8565b3480156103d757600080fd5b5061031a600a5481565b3480156103ed57600080fd5b506102c36103fc3660046123ed565b610cf3565b34801561040d57600080fd5b506102c361041c3660046124cf565b610d29565b34801561042d57600080fd5b5061028b61043c36600461239a565b610d6f565b34801561044d57600080fd5b506102c361045c36600461245e565b610d81565b34801561046d57600080fd5b5061031a61047c366004612143565b610e19565b34801561048d57600080fd5b506102c3610e67565b3480156104a257600080fd5b506000546001600160a01b031661028b565b3480156104c057600080fd5b506102c36104cf3660046124cf565b610e9d565b3480156104e057600080fd5b50600d5461051a9063ffffffff808216916001600160401b036401000000008204811692600160601b830490911691600160a01b90041684565b604051610240949392919063ffffffff94851681526001600160401b0393841660208201529190921660408201529116606082015260800190565b34801561056157600080fd5b5061057561057036600461239a565b610eed565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610240565b3480156105b757600080fd5b5061025e610f13565b3480156105cc57600080fd5b506102c36105db3660046122a8565b610f22565b3480156105ec57600080fd5b506102c3610fb8565b34801561060157600080fd5b506102c36106103660046121cd565b611229565b34801561062157600080fd5b506102c36106303660046124ea565b61127a565b34801561064157600080fd5b5061025e61065036600461239a565b6112d3565b6102c3610663366004612481565b611358565b34801561067457600080fd5b506102c361068336600461239a565b611528565b34801561069457600080fd5b5061031a6106a3366004612143565b611557565b3480156106b457600080fd5b5061031a6106c3366004612143565b600b6020526000908152604090205481565b3480156106e157600080fd5b506102346106f036600461215e565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561072a57600080fd5b506102c3610739366004612505565b611562565b34801561074a57600080fd5b506102c3610759366004612143565b61161f565b60006001600160e01b031982166380ac58cd60e01b148061078f57506001600160e01b03198216635b5e139f60e01b145b806107aa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546107bf906126b6565b80601f01602080910402602001604051908101604052809291908181526020018280546107eb906126b6565b80156108385780601f1061080d57610100808354040283529160200191610838565b820191906000526020600020905b81548152906001019060200180831161081b57829003601f168201915b5050505050905090565b600061084d826116ba565b61086a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061089182610d6f565b9050806001600160a01b0316836001600160a01b031614156108c65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108e657506108e481336106f0565b155b15610904576040516367d9dca160e11b815260040160405180910390fd5b61090f8383836116e6565b505050565b6000546001600160a01b031633146109475760405162461bcd60e51b815260040161093e906125f3565b60405180910390fd5b600d80546001600160401b03909216600160601b0267ffffffffffffffff60601b19909216919091179055565b6000546001600160a01b0316331461099e5760405162461bcd60e51b815260040161093e906125f3565b611e28816109af6002546001540390565b6109b99190612628565b11156109f25760405162461bcd60e51b815260206004820152600860248201526713505617d352539560c21b604482015260640161093e565b60005b8181101561090f57610a2e838383818110610a1257610a1261274c565b9050602002016020810190610a279190612143565b6001611742565b80610a38816126f1565b9150506109f5565b61090f83838361175c565b323314610a9a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161093e565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b1484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a54915084905061196d565b610b585760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b21026b2b935b63290283937b7b31760591b604482015260640161093e565b600d5464010000000090046001600160401b031680610bb25760405162461bcd60e51b81526020600482015260166024820152751cd85b19481a185cc81b9bdd08189959dd5b881e595d60521b604482015260640161093e565b336000908152600c602052604090205460ff16610bf257336000908152600c60209081526040808320805460ff19166001179055600b9091529020600590555b336000908152600b6020526040902054610c635760405162461bcd60e51b815260206004820152602c60248201527f4164647265737320616c7265616479206d696e746564206e756d206f6620746f60448201526b1ad95b9cc8185b1b1bddd95960a21b606482015260840161093e565b336000908152600b6020526040902054610c7e908490612673565b336000818152600b6020526040902091909155610c9b9084611742565b610cad610ca88483612654565b611983565b5050505050565b60008315801590610cc457508215155b8015610cd05750814210155b949350505050565b61090f83838360405180602001604052806000815250611229565b6000546001600160a01b03163314610d1d5760405162461bcd60e51b815260040161093e906125f3565b61090f600e8383612018565b6000546001600160a01b03163314610d535760405162461bcd60e51b815260040161093e906125f3565b600d805463ffffffff191663ffffffff92909216919091179055565b6000610d7a82611a0a565b5192915050565b6000546001600160a01b03163314610dab5760405162461bcd60e51b815260040161093e906125f3565b611e2882610dbc6002546001540390565b610dc69190612628565b1115610e0b5760405162461bcd60e51b81526020600482015260146024820152734578636565647320746f74616c20737570706c7960601b604482015260640161093e565b610e158183611742565b5050565b60006001600160a01b038216610e42576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610e915760405162461bcd60e51b815260040161093e906125f3565b610e9b6000611b24565b565b6000546001600160a01b03163314610ec75760405162461bcd60e51b815260040161093e906125f3565b600d805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b60408051606081018252600080825260208201819052918101919091526107aa82611a0a565b6060600480546107bf906126b6565b6001600160a01b038216331415610f4c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600954141561100b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161093e565b6002600955477305d308331b832640accb6541853ac92492bfa8db6108fc6064611036846017612654565b6110409190612640565b6040518115909202916000818181858888f19350505050158015611068573d6000803e3d6000fd5b5073a00ab9a6d9ab35859b9b1679ff9d9d8f2dff62f46108fc606461108e846017612654565b6110989190612640565b6040518115909202916000818181858888f193505050501580156110c0573d6000803e3d6000fd5b50737ebf8ea5b27302e63b11a18d38d282117ae27b286108fc60646110e6846005612654565b6110f09190612640565b6040518115909202916000818181858888f19350505050158015611118573d6000803e3d6000fd5b507331ba11959ef28f569aefb4eb54a60a2462ed5a5a6108fc606461113e846009612654565b6111489190612640565b6040518115909202916000818181858888f19350505050158015611170573d6000803e3d6000fd5b5073fbaf34841541e95d8b43f3cf10728869be4c8fde6108fc6064611196846014612654565b6111a09190612640565b6040518115909202916000818181858888f193505050501580156111c8573d6000803e3d6000fd5b5073e3af2fb66c545b77bfd7bfc10f5fae3febdeefc46108fc60646111ee846014612654565b6111f89190612640565b6040518115909202916000818181858888f19350505050158015611220573d6000803e3d6000fd5b50506001600955565b61123484848461175c565b6001600160a01b0383163b15158015611256575061125484848484611b74565b155b15611274576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b031633146112a45760405162461bcd60e51b815260040161093e906125f3565b600d80546001600160401b03909216640100000000026bffffffffffffffff0000000019909216919091179055565b60606112de826116ba565b6112fb57604051630a14c4b560e41b815260040160405180910390fd5b6000611305611c6b565b90508051600014156113265760405180602001604052806000815250611351565b8061133084611c7a565b604051602001611341929190612574565b6040516020818303038152906040525b9392505050565b3233146113a75760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161093e565b60408051608081018252600d5463ffffffff8082168084526001600160401b03640100000000840481166020860152600160601b840416948401859052600160a01b90920416606083018190529192908483146114545760405162461bcd60e51b815260206004820152602560248201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60448201526465206b657960d81b606482015260840161093e565b61145f828483610cb4565b6114ab5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e20796574000000604482015260640161093e565b611e28866114bc6002546001540390565b6114c69190612628565b11156115095760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b604482015260640161093e565b6115133387611742565b611520610ca88784612654565b505050505050565b6000546001600160a01b031633146115525760405162461bcd60e51b815260040161093e906125f3565b600a55565b60006107aa82611d77565b6000546001600160a01b0316331461158c5760405162461bcd60e51b815260040161093e906125f3565b6040805160808101825263ffffffff9283168082526001600160401b039586166020830181905294909516918101829052600d8054600160a01b80820490951660609093018390526bffffffffffffffffffffffff1916909517640100000000909402939093176bffffffffffffffffffffffff60601b1916600160601b90910263ffffffff60a01b1916179102179055565b6000546001600160a01b031633146116495760405162461bcd60e51b815260040161093e906125f3565b6001600160a01b0381166116ae5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093e565b6116b781611b24565b50565b6000600154821080156107aa575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610e15828260405180602001604052806000815250611dcc565b600061176782611a0a565b80519091506000906001600160a01b0316336001600160a01b031614806117955750815161179590336106f0565b806117b05750336117a584610842565b6001600160a01b0316145b9050806117d057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146118055760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661182c57604051633a954ecd60e21b815260040160405180910390fd5b61183c60008484600001516116e6565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166119265760015481101561192657825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cad565b60008261197a8584611dd9565b14949350505050565b803410156119cc5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b604482015260640161093e565b803411156116b757336108fc6119e28334612673565b6040518115909202916000818181858888f19350505050158015610e15573d6000803e3d6000fd5b604080516060810182526000808252602082018190529181019190915281600154811015611b0b57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b095780516001600160a01b031615611aa0579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b04579392505050565b611aa0565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611ba99033908990889088906004016125a3565b602060405180830381600087803b158015611bc357600080fd5b505af1925050508015611bf3575060408051601f3d908101601f19168201909252611bf0918101906123d0565b60015b611c4e573d808015611c21576040519150601f19603f3d011682016040523d82523d6000602084013e611c26565b606091505b508051611c46576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600e80546107bf906126b6565b606081611c9e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cc85780611cb2816126f1565b9150611cc19050600a83612640565b9150611ca2565b6000816001600160401b03811115611ce257611ce2612762565b6040519080825280601f01601f191660200182016040528015611d0c576020820181803683370190505b5090505b8415610cd057611d21600183612673565b9150611d2e600a8661270c565b611d39906030612628565b60f81b818381518110611d4e57611d4e61274c565b60200101906001600160f81b031916908160001a905350611d70600a86612640565b9450611d10565b60006001600160a01b038216611da0576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b61090f8383836001611e4d565b600081815b8451811015611e45576000858281518110611dfb57611dfb61274c565b60200260200101519050808311611e215760008381526020829052604090209250611e32565b600081815260208490526040902092505b5080611e3d816126f1565b915050611dde565b509392505050565b6001546001600160a01b038516611e7657604051622e076360e81b815260040160405180910390fd5b83611e945760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611f4057506001600160a01b0387163b15155b15611fc9575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f916000888480600101955088611b74565b611fae576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611f46578260015414611fc457600080fd5b61200f565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611fca575b50600155610cad565b828054612024906126b6565b90600052602060002090601f016020900481019282612046576000855561208c565b82601f1061205f5782800160ff1982351617855561208c565b8280016001018555821561208c579182015b8281111561208c578235825591602001919060010190612071565b5061209892915061209c565b5090565b5b80821115612098576000815560010161209d565b80356001600160a01b03811681146120c857600080fd5b919050565b60008083601f8401126120df57600080fd5b5081356001600160401b038111156120f657600080fd5b6020830191508360208260051b850101111561211157600080fd5b9250929050565b803563ffffffff811681146120c857600080fd5b80356001600160401b03811681146120c857600080fd5b60006020828403121561215557600080fd5b611351826120b1565b6000806040838503121561217157600080fd5b61217a836120b1565b9150612188602084016120b1565b90509250929050565b6000806000606084860312156121a657600080fd5b6121af846120b1565b92506121bd602085016120b1565b9150604084013590509250925092565b600080600080608085870312156121e357600080fd5b6121ec856120b1565b93506121fa602086016120b1565b92506040850135915060608501356001600160401b038082111561221d57600080fd5b818701915087601f83011261223157600080fd5b81358181111561224357612243612762565b604051601f8201601f19908116603f0116810190838211818310171561226b5761226b612762565b816040528281528a602084870101111561228457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156122bb57600080fd5b6122c4836120b1565b9150602083013580151581146122d957600080fd5b809150509250929050565b600080604083850312156122f757600080fd5b612300836120b1565b946020939093013593505050565b6000806020838503121561232157600080fd5b82356001600160401b0381111561233757600080fd5b612343858286016120cd565b90969095509350505050565b60008060006040848603121561236457600080fd5b83356001600160401b0381111561237a57600080fd5b612386868287016120cd565b909790965060209590950135949350505050565b6000602082840312156123ac57600080fd5b5035919050565b6000602082840312156123c557600080fd5b813561135181612778565b6000602082840312156123e257600080fd5b815161135181612778565b6000806020838503121561240057600080fd5b82356001600160401b038082111561241757600080fd5b818501915085601f83011261242b57600080fd5b81358181111561243a57600080fd5b86602082850101111561244c57600080fd5b60209290920196919550909350505050565b6000806040838503121561247157600080fd5b82359150612188602084016120b1565b6000806040838503121561249457600080fd5b50508035926020909101359150565b6000806000606084860312156124b857600080fd5b505081359360208301359350604090920135919050565b6000602082840312156124e157600080fd5b61135182612118565b6000602082840312156124fc57600080fd5b6113518261212c565b60008060006060848603121561251a57600080fd5b6125238461212c565b92506125316020850161212c565b915061253f60408501612118565b90509250925092565b6000815180845261256081602086016020860161268a565b601f01601f19169290920160200192915050565b6000835161258681846020880161268a565b83519083019061259a81836020880161268a565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125d690830184612548565b9695505050505050565b6020815260006113516020830184612548565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561263b5761263b612720565b500190565b60008261264f5761264f612736565b500490565b600081600019048311821515161561266e5761266e612720565b500290565b60008282101561268557612685612720565b500390565b60005b838110156126a557818101518382015260200161268d565b838111156112745750506000910152565b600181811c908216806126ca57607f821691505b602082108114156126eb57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561270557612705612720565b5060010190565b60008261271b5761271b612736565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116b757600080fdfea2646970667358221220e0675e0e28bf81d0dbef06230c666f89fa0deaadba9fff80aad1c6303e29d14e64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063bb3f6833116100a0578063dc33e6811161006f578063dc33e68114610688578063e0e3f5ef146106a8578063e985e9c5146106d5578063ea9a576c1461071e578063f2fde38b1461073e57600080fd5b8063bb3f683314610615578063c87b56dd14610635578063cb91d8b314610655578063d8929c8b1461066857600080fd5b80639231ab2a116100e75780639231ab2a1461055557806395d89b41146105ab578063a22cb465146105c0578063ac446002146105e0578063b88d4fde146105f557600080fd5b8063715018a6146104815780638da5cb5b1461049657806390028083146104b457806390aa0b0f146104d457600080fd5b80633b438ad11161019b57806355f804b31161016a57806355f804b3146103e15780635fd84c28146104015780636352211e1461042157806368010d6e1461044157806370a082311461046157600080fd5b80633b438ad11461035b578063422030ba1461038b57806342842e0e146103ab57806352c4cbaf146103cb57600080fd5b80630c29dbae116101e25780630c29dbae146102c5578063163e1e61146102e557806318160ddd1461030557806323b872dd146103285780632bf59ba51461034857600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046123b3565b61075e565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6107b0565b60405161024091906125e0565b34801561027757600080fd5b5061028b61028636600461239a565b610842565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046122e4565b610886565b005b3480156102d157600080fd5b506102c36102e03660046124ea565b610914565b3480156102f157600080fd5b506102c361030036600461230e565b610974565b34801561031157600080fd5b50600254600154035b604051908152602001610240565b34801561033457600080fd5b506102c3610343366004612191565b610a40565b6102c361035636600461234f565b610a4b565b34801561036757600080fd5b50610234610376366004612143565b600c6020526000908152604090205460ff1681565b34801561039757600080fd5b506102346103a63660046124a3565b610cb4565b3480156103b757600080fd5b506102c36103c6366004612191565b610cd8565b3480156103d757600080fd5b5061031a600a5481565b3480156103ed57600080fd5b506102c36103fc3660046123ed565b610cf3565b34801561040d57600080fd5b506102c361041c3660046124cf565b610d29565b34801561042d57600080fd5b5061028b61043c36600461239a565b610d6f565b34801561044d57600080fd5b506102c361045c36600461245e565b610d81565b34801561046d57600080fd5b5061031a61047c366004612143565b610e19565b34801561048d57600080fd5b506102c3610e67565b3480156104a257600080fd5b506000546001600160a01b031661028b565b3480156104c057600080fd5b506102c36104cf3660046124cf565b610e9d565b3480156104e057600080fd5b50600d5461051a9063ffffffff808216916001600160401b036401000000008204811692600160601b830490911691600160a01b90041684565b604051610240949392919063ffffffff94851681526001600160401b0393841660208201529190921660408201529116606082015260800190565b34801561056157600080fd5b5061057561057036600461239a565b610eed565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610240565b3480156105b757600080fd5b5061025e610f13565b3480156105cc57600080fd5b506102c36105db3660046122a8565b610f22565b3480156105ec57600080fd5b506102c3610fb8565b34801561060157600080fd5b506102c36106103660046121cd565b611229565b34801561062157600080fd5b506102c36106303660046124ea565b61127a565b34801561064157600080fd5b5061025e61065036600461239a565b6112d3565b6102c3610663366004612481565b611358565b34801561067457600080fd5b506102c361068336600461239a565b611528565b34801561069457600080fd5b5061031a6106a3366004612143565b611557565b3480156106b457600080fd5b5061031a6106c3366004612143565b600b6020526000908152604090205481565b3480156106e157600080fd5b506102346106f036600461215e565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561072a57600080fd5b506102c3610739366004612505565b611562565b34801561074a57600080fd5b506102c3610759366004612143565b61161f565b60006001600160e01b031982166380ac58cd60e01b148061078f57506001600160e01b03198216635b5e139f60e01b145b806107aa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546107bf906126b6565b80601f01602080910402602001604051908101604052809291908181526020018280546107eb906126b6565b80156108385780601f1061080d57610100808354040283529160200191610838565b820191906000526020600020905b81548152906001019060200180831161081b57829003601f168201915b5050505050905090565b600061084d826116ba565b61086a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061089182610d6f565b9050806001600160a01b0316836001600160a01b031614156108c65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108e657506108e481336106f0565b155b15610904576040516367d9dca160e11b815260040160405180910390fd5b61090f8383836116e6565b505050565b6000546001600160a01b031633146109475760405162461bcd60e51b815260040161093e906125f3565b60405180910390fd5b600d80546001600160401b03909216600160601b0267ffffffffffffffff60601b19909216919091179055565b6000546001600160a01b0316331461099e5760405162461bcd60e51b815260040161093e906125f3565b611e28816109af6002546001540390565b6109b99190612628565b11156109f25760405162461bcd60e51b815260206004820152600860248201526713505617d352539560c21b604482015260640161093e565b60005b8181101561090f57610a2e838383818110610a1257610a1261274c565b9050602002016020810190610a279190612143565b6001611742565b80610a38816126f1565b9150506109f5565b61090f83838361175c565b323314610a9a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161093e565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b1484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a54915084905061196d565b610b585760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b21026b2b935b63290283937b7b31760591b604482015260640161093e565b600d5464010000000090046001600160401b031680610bb25760405162461bcd60e51b81526020600482015260166024820152751cd85b19481a185cc81b9bdd08189959dd5b881e595d60521b604482015260640161093e565b336000908152600c602052604090205460ff16610bf257336000908152600c60209081526040808320805460ff19166001179055600b9091529020600590555b336000908152600b6020526040902054610c635760405162461bcd60e51b815260206004820152602c60248201527f4164647265737320616c7265616479206d696e746564206e756d206f6620746f60448201526b1ad95b9cc8185b1b1bddd95960a21b606482015260840161093e565b336000908152600b6020526040902054610c7e908490612673565b336000818152600b6020526040902091909155610c9b9084611742565b610cad610ca88483612654565b611983565b5050505050565b60008315801590610cc457508215155b8015610cd05750814210155b949350505050565b61090f83838360405180602001604052806000815250611229565b6000546001600160a01b03163314610d1d5760405162461bcd60e51b815260040161093e906125f3565b61090f600e8383612018565b6000546001600160a01b03163314610d535760405162461bcd60e51b815260040161093e906125f3565b600d805463ffffffff191663ffffffff92909216919091179055565b6000610d7a82611a0a565b5192915050565b6000546001600160a01b03163314610dab5760405162461bcd60e51b815260040161093e906125f3565b611e2882610dbc6002546001540390565b610dc69190612628565b1115610e0b5760405162461bcd60e51b81526020600482015260146024820152734578636565647320746f74616c20737570706c7960601b604482015260640161093e565b610e158183611742565b5050565b60006001600160a01b038216610e42576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610e915760405162461bcd60e51b815260040161093e906125f3565b610e9b6000611b24565b565b6000546001600160a01b03163314610ec75760405162461bcd60e51b815260040161093e906125f3565b600d805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b60408051606081018252600080825260208201819052918101919091526107aa82611a0a565b6060600480546107bf906126b6565b6001600160a01b038216331415610f4c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600954141561100b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161093e565b6002600955477305d308331b832640accb6541853ac92492bfa8db6108fc6064611036846017612654565b6110409190612640565b6040518115909202916000818181858888f19350505050158015611068573d6000803e3d6000fd5b5073a00ab9a6d9ab35859b9b1679ff9d9d8f2dff62f46108fc606461108e846017612654565b6110989190612640565b6040518115909202916000818181858888f193505050501580156110c0573d6000803e3d6000fd5b50737ebf8ea5b27302e63b11a18d38d282117ae27b286108fc60646110e6846005612654565b6110f09190612640565b6040518115909202916000818181858888f19350505050158015611118573d6000803e3d6000fd5b507331ba11959ef28f569aefb4eb54a60a2462ed5a5a6108fc606461113e846009612654565b6111489190612640565b6040518115909202916000818181858888f19350505050158015611170573d6000803e3d6000fd5b5073fbaf34841541e95d8b43f3cf10728869be4c8fde6108fc6064611196846014612654565b6111a09190612640565b6040518115909202916000818181858888f193505050501580156111c8573d6000803e3d6000fd5b5073e3af2fb66c545b77bfd7bfc10f5fae3febdeefc46108fc60646111ee846014612654565b6111f89190612640565b6040518115909202916000818181858888f19350505050158015611220573d6000803e3d6000fd5b50506001600955565b61123484848461175c565b6001600160a01b0383163b15158015611256575061125484848484611b74565b155b15611274576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b031633146112a45760405162461bcd60e51b815260040161093e906125f3565b600d80546001600160401b03909216640100000000026bffffffffffffffff0000000019909216919091179055565b60606112de826116ba565b6112fb57604051630a14c4b560e41b815260040160405180910390fd5b6000611305611c6b565b90508051600014156113265760405180602001604052806000815250611351565b8061133084611c7a565b604051602001611341929190612574565b6040516020818303038152906040525b9392505050565b3233146113a75760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161093e565b60408051608081018252600d5463ffffffff8082168084526001600160401b03640100000000840481166020860152600160601b840416948401859052600160a01b90920416606083018190529192908483146114545760405162461bcd60e51b815260206004820152602560248201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60448201526465206b657960d81b606482015260840161093e565b61145f828483610cb4565b6114ab5760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e20796574000000604482015260640161093e565b611e28866114bc6002546001540390565b6114c69190612628565b11156115095760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b604482015260640161093e565b6115133387611742565b611520610ca88784612654565b505050505050565b6000546001600160a01b031633146115525760405162461bcd60e51b815260040161093e906125f3565b600a55565b60006107aa82611d77565b6000546001600160a01b0316331461158c5760405162461bcd60e51b815260040161093e906125f3565b6040805160808101825263ffffffff9283168082526001600160401b039586166020830181905294909516918101829052600d8054600160a01b80820490951660609093018390526bffffffffffffffffffffffff1916909517640100000000909402939093176bffffffffffffffffffffffff60601b1916600160601b90910263ffffffff60a01b1916179102179055565b6000546001600160a01b031633146116495760405162461bcd60e51b815260040161093e906125f3565b6001600160a01b0381166116ae5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093e565b6116b781611b24565b50565b6000600154821080156107aa575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610e15828260405180602001604052806000815250611dcc565b600061176782611a0a565b80519091506000906001600160a01b0316336001600160a01b031614806117955750815161179590336106f0565b806117b05750336117a584610842565b6001600160a01b0316145b9050806117d057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146118055760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661182c57604051633a954ecd60e21b815260040160405180910390fd5b61183c60008484600001516116e6565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166119265760015481101561192657825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cad565b60008261197a8584611dd9565b14949350505050565b803410156119cc5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b604482015260640161093e565b803411156116b757336108fc6119e28334612673565b6040518115909202916000818181858888f19350505050158015610e15573d6000803e3d6000fd5b604080516060810182526000808252602082018190529181019190915281600154811015611b0b57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b095780516001600160a01b031615611aa0579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b04579392505050565b611aa0565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611ba99033908990889088906004016125a3565b602060405180830381600087803b158015611bc357600080fd5b505af1925050508015611bf3575060408051601f3d908101601f19168201909252611bf0918101906123d0565b60015b611c4e573d808015611c21576040519150601f19603f3d011682016040523d82523d6000602084013e611c26565b606091505b508051611c46576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600e80546107bf906126b6565b606081611c9e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cc85780611cb2816126f1565b9150611cc19050600a83612640565b9150611ca2565b6000816001600160401b03811115611ce257611ce2612762565b6040519080825280601f01601f191660200182016040528015611d0c576020820181803683370190505b5090505b8415610cd057611d21600183612673565b9150611d2e600a8661270c565b611d39906030612628565b60f81b818381518110611d4e57611d4e61274c565b60200101906001600160f81b031916908160001a905350611d70600a86612640565b9450611d10565b60006001600160a01b038216611da0576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b61090f8383836001611e4d565b600081815b8451811015611e45576000858281518110611dfb57611dfb61274c565b60200260200101519050808311611e215760008381526020829052604090209250611e32565b600081815260208490526040902092505b5080611e3d816126f1565b915050611dde565b509392505050565b6001546001600160a01b038516611e7657604051622e076360e81b815260040160405180910390fd5b83611e945760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611f4057506001600160a01b0387163b15155b15611fc9575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f916000888480600101955088611b74565b611fae576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611f46578260015414611fc457600080fd5b61200f565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611fca575b50600155610cad565b828054612024906126b6565b90600052602060002090601f016020900481019282612046576000855561208c565b82601f1061205f5782800160ff1982351617855561208c565b8280016001018555821561208c579182015b8281111561208c578235825591602001919060010190612071565b5061209892915061209c565b5090565b5b80821115612098576000815560010161209d565b80356001600160a01b03811681146120c857600080fd5b919050565b60008083601f8401126120df57600080fd5b5081356001600160401b038111156120f657600080fd5b6020830191508360208260051b850101111561211157600080fd5b9250929050565b803563ffffffff811681146120c857600080fd5b80356001600160401b03811681146120c857600080fd5b60006020828403121561215557600080fd5b611351826120b1565b6000806040838503121561217157600080fd5b61217a836120b1565b9150612188602084016120b1565b90509250929050565b6000806000606084860312156121a657600080fd5b6121af846120b1565b92506121bd602085016120b1565b9150604084013590509250925092565b600080600080608085870312156121e357600080fd5b6121ec856120b1565b93506121fa602086016120b1565b92506040850135915060608501356001600160401b038082111561221d57600080fd5b818701915087601f83011261223157600080fd5b81358181111561224357612243612762565b604051601f8201601f19908116603f0116810190838211818310171561226b5761226b612762565b816040528281528a602084870101111561228457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156122bb57600080fd5b6122c4836120b1565b9150602083013580151581146122d957600080fd5b809150509250929050565b600080604083850312156122f757600080fd5b612300836120b1565b946020939093013593505050565b6000806020838503121561232157600080fd5b82356001600160401b0381111561233757600080fd5b612343858286016120cd565b90969095509350505050565b60008060006040848603121561236457600080fd5b83356001600160401b0381111561237a57600080fd5b612386868287016120cd565b909790965060209590950135949350505050565b6000602082840312156123ac57600080fd5b5035919050565b6000602082840312156123c557600080fd5b813561135181612778565b6000602082840312156123e257600080fd5b815161135181612778565b6000806020838503121561240057600080fd5b82356001600160401b038082111561241757600080fd5b818501915085601f83011261242b57600080fd5b81358181111561243a57600080fd5b86602082850101111561244c57600080fd5b60209290920196919550909350505050565b6000806040838503121561247157600080fd5b82359150612188602084016120b1565b6000806040838503121561249457600080fd5b50508035926020909101359150565b6000806000606084860312156124b857600080fd5b505081359360208301359350604090920135919050565b6000602082840312156124e157600080fd5b61135182612118565b6000602082840312156124fc57600080fd5b6113518261212c565b60008060006060848603121561251a57600080fd5b6125238461212c565b92506125316020850161212c565b915061253f60408501612118565b90509250925092565b6000815180845261256081602086016020860161268a565b601f01601f19169290920160200192915050565b6000835161258681846020880161268a565b83519083019061259a81836020880161268a565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125d690830184612548565b9695505050505050565b6020815260006113516020830184612548565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561263b5761263b612720565b500190565b60008261264f5761264f612736565b500490565b600081600019048311821515161561266e5761266e612720565b500290565b60008282101561268557612685612720565b500390565b60005b838110156126a557818101518382015260200161268d565b838111156112745750506000910152565b600181811c908216806126ca57607f821691505b602082108114156126eb57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561270557612705612720565b5060010190565b60008261271b5761271b612736565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116b757600080fdfea2646970667358221220e0675e0e28bf81d0dbef06230c666f89fa0deaadba9fff80aad1c6303e29d14e64736f6c63430008070033

Deployed Bytecode Sourcemap

50866:5738:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30810:305;;;;;;;;;;-1:-1:-1;30810:305:0;;;;;:::i;:::-;;:::i;:::-;;;9255:14:1;;9248:22;9230:41;;9218:2;9203:18;30810:305:0;;;;;;;;34195:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35698:204::-;;;;;;;;;;-1:-1:-1;35698:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8553:32:1;;;8535:51;;8523:2;8508:18;35698:204:0;8389:203:1;35261:371:0;;;;;;;;;;-1:-1:-1;35261:371:0;;;;;:::i;:::-;;:::i;:::-;;54759:106;;;;;;;;;;-1:-1:-1;54759:106:0;;;;;:::i;:::-;;:::i;51561:259::-;;;;;;;;;;-1:-1:-1;51561:259:0;;;;;:::i;:::-;;:::i;30059:303::-;;;;;;;;;;-1:-1:-1;30313:12:0;;30297:13;;:28;30059:303;;;9428:25:1;;;9416:2;9401:18;30059:303:0;9282:177:1;36563:170:0;;;;;;;;;;-1:-1:-1;36563:170:0;;;;;:::i;:::-;;:::i;52039:843::-;;;;;;:::i;:::-;;:::i;51114:55::-;;;;;;;;;;-1:-1:-1;51114:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53980:309;;;;;;;;;;-1:-1:-1;53980:309:0;;;;;:::i;:::-;;:::i;36804:185::-;;;;;;;;;;-1:-1:-1;36804:185:0;;;;;:::i;:::-;;:::i;51015:34::-;;;;;;;;;;;;;;;;55412:106;;;;;;;;;;-1:-1:-1;55412:106:0;;;;;:::i;:::-;;:::i;54993:120::-;;;;;;;;;;-1:-1:-1;54993:120:0;;;;;:::i;:::-;;:::i;34004:124::-;;;;;;;;;;-1:-1:-1;34004:124:0;;;;;:::i;:::-;;:::i;51828:203::-;;;;;;;;;;-1:-1:-1;51828:203:0;;;;;:::i;:::-;;:::i;31179:206::-;;;;;;;;;;-1:-1:-1;31179:206:0;;;;;:::i;:::-;;:::i;49988:103::-;;;;;;;;;;;;;:::i;49337:87::-;;;;;;;;;;-1:-1:-1;49383:7:0;49410:6;-1:-1:-1;;;;;49410:6:0;49337:87;;54645:106;;;;;;;;;;-1:-1:-1;54645:106:0;;;;;:::i;:::-;;:::i;51341:28::-;;;;;;;;;;-1:-1:-1;51341:28:0;;;;;;;;;-1:-1:-1;;;;;51341:28:0;;;;;;-1:-1:-1;;;51341:28:0;;;;;;-1:-1:-1;;;51341:28:0;;;;;;;;;;;;;;15295:10:1;15332:15;;;15314:34;;-1:-1:-1;;;;;15421:15:1;;;15416:2;15401:18;;15394:43;15473:15;;;;15468:2;15453:18;;15446:43;15525:15;;15520:2;15505:18;;15498:43;15272:3;15257:19;;15062:485;56466:135:0;;;;;;;;;;-1:-1:-1;56466:135:0;;;;;:::i;:::-;;:::i;:::-;;;;14666:13:1;;-1:-1:-1;;;;;14662:39:1;14644:58;;14762:4;14750:17;;;14744:24;-1:-1:-1;;;;;14740:49:1;14718:20;;;14711:79;14848:17;;;14842:24;14835:32;14828:40;14806:20;;;14799:70;14632:2;14617:18;56466:135:0;14436:439:1;34364:104:0;;;;;;;;;;;;;:::i;35974:287::-;;;;;;;;;;-1:-1:-1;35974:287:0;;;;;:::i;:::-;;:::i;55526:811::-;;;;;;;;;;;;;:::i;37060:369::-;;;;;;;;;;-1:-1:-1;37060:369:0;;;;;:::i;:::-;;:::i;54873:112::-;;;;;;;;;;-1:-1:-1;54873:112:0;;;;;:::i;:::-;;:::i;34539:318::-;;;;;;;;;;-1:-1:-1;34539:318:0;;;;;:::i;:::-;;:::i;52890:850::-;;;;;;:::i;:::-;;:::i;55121:124::-;;;;;;;;;;-1:-1:-1;55121:124:0;;;;;:::i;:::-;;:::i;56345:113::-;;;;;;;;;;-1:-1:-1;56345:113:0;;;;;:::i;:::-;;:::i;51056:51::-;;;;;;;;;;-1:-1:-1;51056:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;36332:164;;;;;;;;;;-1:-1:-1;36332:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36453:25:0;;;36429:4;36453:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36332:164;54297:340;;;;;;;;;;-1:-1:-1;54297:340:0;;;;;:::i;:::-;;:::i;50246:201::-;;;;;;;;;;-1:-1:-1;50246:201:0;;;;;:::i;:::-;;:::i;30810:305::-;30912:4;-1:-1:-1;;;;;;30949:40:0;;-1:-1:-1;;;30949:40:0;;:105;;-1:-1:-1;;;;;;;31006:48:0;;-1:-1:-1;;;31006:48:0;30949:105;:158;;;-1:-1:-1;;;;;;;;;;15926:40:0;;;31071:36;30929:178;30810:305;-1:-1:-1;;30810:305:0:o;34195:100::-;34249:13;34282:5;34275:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34195:100;:::o;35698:204::-;35766:7;35791:16;35799:7;35791;:16::i;:::-;35786:64;;35816:34;;-1:-1:-1;;;35816:34:0;;;;;;;;;;;35786:64;-1:-1:-1;35870:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35870:24:0;;35698:204::o;35261:371::-;35334:13;35350:24;35366:7;35350:15;:24::i;:::-;35334:40;;35395:5;-1:-1:-1;;;;;35389:11:0;:2;-1:-1:-1;;;;;35389:11:0;;35385:48;;;35409:24;;-1:-1:-1;;;35409:24:0;;;;;;;;;;;35385:48;26238:10;-1:-1:-1;;;;;35450:21:0;;;;;;:63;;-1:-1:-1;35476:37:0;35493:5;26238:10;36332:164;:::i;35476:37::-;35475:38;35450:63;35446:138;;;35537:35;;-1:-1:-1;;;35537:35:0;;;;;;;;;;;35446:138;35596:28;35605:2;35609:7;35618:5;35596:8;:28::i;:::-;35323:309;35261:371;;:::o;54759:106::-;49383:7;49410:6;-1:-1:-1;;;;;49410:6:0;26238:10;49557:23;49549:68;;;;-1:-1:-1;;;49549:68:0;;;;;;;:::i;:::-;;;;;;;;;54827:10:::1;:30:::0;;-1:-1:-1;;;;;54827:30:0;;::::1;-1:-1:-1::0;;;54827:30:0::1;-1:-1:-1::0;;;;54827:30:0;;::::1;::::0;;;::::1;::::0;;54759:106::o;51561:259::-;49383:7;49410:6;-1:-1:-1;;;;;49410:6:0;26238:10;49557:23;49549:68;;;;-1:-1:-1;;;49549:68:0;;;;;;;:::i;:::-;50962:4:::1;51659:9:::0;51643:13:::1;30313:12:::0;;30297:13;;:28;;30059:303;51643:13:::1;:32;;;;:::i;:::-;:46;;51635:67;;;::::0;-1:-1:-1;;;51635:67:0;;12872:2:1;51635:67:0::1;::::0;::::1;12854:21:1::0;12911:1;12891:18;;;12884:29;-1:-1:-1;;;12929:18:1;;;12922:38;12977:18;;51635:67:0::1;12670:331:1::0;51635:67:0::1;51718:9;51713:100;51733:20:::0;;::::1;51713:100;;;51775:26;51785:9;;51795:1;51785:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;51799:1;51775:9;:26::i;:::-;51755:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51713:100;;36563:170:::0;36697:28;36707:4;36713:2;36717:7;36697:9;:28::i;52039:843::-;51475:9;51488:10;51475:23;51467:66;;;;-1:-1:-1;;;51467:66:0;;12166:2:1;51467:66:0;;;12148:21:1;12205:2;12185:18;;;12178:30;12244:32;12224:18;;;12217:60;12294:18;;51467:66:0;11964:354:1;51467:66:0;52179:28:::1;::::0;-1:-1:-1;;52196:10:0::1;7829:2:1::0;7825:15;7821:53;52179:28:0::1;::::0;::::1;7809:66:1::0;52154:12:0::1;::::0;7891::1;;52179:28:0::1;;;;;;;;;;;;52169:39;;;;;;52154:54;;52227:59;52246:12;;52227:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;52260:19:0::1;::::0;;-1:-1:-1;52281:4:0;;-1:-1:-1;52227:18:0::1;:59::i;:::-;52219:106;;;::::0;-1:-1:-1;;;52219:106:0;;10648:2:1;52219:106:0::1;::::0;::::1;10630:21:1::0;10687:2;10667:18;;;10660:30;-1:-1:-1;;;10706:18:1;;;10699:51;10767:18;;52219:106:0::1;10446:345:1::0;52219:106:0::1;52360:10;:25:::0;;;::::1;-1:-1:-1::0;;;;;52360:25:0::1;::::0;52397:45:::1;;;::::0;-1:-1:-1;;;52397:45:0;;9890:2:1;52397:45:0::1;::::0;::::1;9872:21:1::0;9929:2;9909:18;;;9902:30;-1:-1:-1;;;9948:18:1;;;9941:52;10010:18;;52397:45:0::1;9688:346:1::0;52397:45:0::1;52482:10;52458:35;::::0;;;:23:::1;:35;::::0;;;;;::::1;;52453:158;;52534:10;52510:35;::::0;;;:23:::1;:35;::::0;;;;;;;:42;;-1:-1:-1;;52510:42:0::1;52548:4;52510:42;::::0;;52567:16:::1;:28:::0;;;;;52598:1:::1;52567:32:::0;;52453:158:::1;52646:10;52660:1;52629:28:::0;;;:16:::1;:28;::::0;;;;;52621:89:::1;;;::::0;-1:-1:-1;;;52621:89:0;;11753:2:1;52621:89:0::1;::::0;::::1;11735:21:1::0;11792:2;11772:18;;;11765:30;11831:34;11811:18;;;11804:62;-1:-1:-1;;;11882:18:1;;;11875:42;11934:19;;52621:89:0::1;11551:408:1::0;52621:89:0::1;52769:10;52752:28;::::0;;;:16:::1;:28;::::0;;;;;:39:::1;::::0;52783:8;;52752:39:::1;:::i;:::-;52738:10;52721:28;::::0;;;:16:::1;:28;::::0;;;;:70;;;;52802:31:::1;::::0;52824:8;52802:9:::1;:31::i;:::-;52844:30;52857:16;52865:8:::0;52857:5;:16:::1;:::i;:::-;52844:12;:30::i;:::-;52143:739;;52039:843:::0;;;:::o;53980:309::-;54135:4;54172:19;;;;;:54;;-1:-1:-1;54208:18:0;;;54172:54;:109;;;;;54262:19;54243:15;:38;;54172:109;54152:129;53980:309;-1:-1:-1;;;;53980:309:0:o;36804:185::-;36942:39;36959:4;36965:2;36969:7;36942:39;;;;;;;;;;;;:16;:39::i;55412:106::-;49383:7;49410:6;-1:-1:-1;;;;;49410:6:0;26238:10;49557:23;49549:68;;;;-1:-1:-1;;;49549:68:0;;;;;;;:::i;:::-;55487:23:::1;:13;55503:7:::0;;55487:23:::1;:::i;54993:120::-:0;49383:7;49410:6;-1:-1:-1;;;;;49410:6:0;26238:10;49557:23;49549:68;;;;-1:-1:-1;;;49549:68:0;;;;;;;:::i;:::-;55068:10:::1;:37:::0;;-1:-1:-1;;55068:37:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;54993:120::o;34004:124::-;34068:7;34095:20;34107:7;34095:11;:20::i;:::-;:25;;34004:124;-1:-1:-1;;34004:124:0:o;51828:203::-;49383:7;49410:6;-1:-1:-1;;;;;49410:6:0;26238:10;49557:23;49549:68;;;;-1:-1:-1;;;49549:68:0;;;;;;;:::i;:::-;50962:4:::1;51941:3;51925:13;30313:12:::0;;30297:13;;:28;;30059:303;51925:13:::1;:19;;;;:::i;:::-;:33;;51917:66;;;::::0;-1:-1:-1;;;51917:66:0;;10998:2:1;51917:66:0::1;::::0;::::1;10980:21:1::0;11037:2;11017:18;;;11010:30;-1:-1:-1;;;11056:18:1;;;11049:50;11116:18;;51917:66:0::1;10796:344:1::0;51917:66:0::1;51994:29;52004:13;52019:3;51994:9;:29::i;:::-;51828:203:::0;;:::o;31179:206::-;31243:7;-1:-1:-1;;;;;31267:19:0;;31263:60;;31295:28;;-1:-1:-1;;;31295:28:0;;;;;;;;;;;31263:60;-1:-1:-1;;;;;;31349:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31349:27:0;;31179:206::o;49988:103::-;49383:7;49410:6;-1:-1:-1;;;;;49410:6:0;26238:10;49557:23;49549:68;;;;-1:-1:-1;;;49549:68:0;;;;;;;:::i;:::-;50053:30:::1;50080:1;50053:18;:30::i;:::-;49988:103::o:0;54645:106::-;49383:7;49410:6;-1:-1:-1;;;;;49410:6:0;26238:10;49557:23;49549:68;;;;-1:-1:-1;;;49549:68:0;;;;;;;:::i;:::-;54713:10:::1;:30:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;54713:30:0::1;-1:-1:-1::0;;;;54713:30:0;;::::1;::::0;;;::::1;::::0;;54645:106::o;56466:135::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;56573:20:0;56585:7;56573:11;:20::i;34364:104::-;34420:13;34453:7;34446:14;;;;;:::i;35974:287::-;-1:-1:-1;;;;;36073:24:0;;26238:10;36073:24;36069:54;;;36106:17;;-1:-1:-1;;;36106:17:0;;;;;;;;;;;36069:54;26238:10;36136:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36136:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36136:53:0;;;;;;;;;;36205:48;;9230:41:1;;;36136:42:0;;26238:10;36205:48;;9203:18:1;36205:48:0;;;;;;;35974:287;;:::o;55526:811::-;24534:1;25132:7;;:19;;25124:63;;;;-1:-1:-1;;;25124:63:0;;14278:2:1;25124:63:0;;;14260:21:1;14317:2;14297:18;;;14290:30;14356:33;14336:18;;;14329:61;14407:18;;25124:63:0;14076:355:1;25124:63:0;24534:1;25265:7;:18;55602:21:::1;55643:42;55635:106;55727:3;55711:12;55602:21:::0;55721:2:::1;55711:12;:::i;:::-;55710:20;;;;:::i;:::-;55635:106;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;55761:42:0::1;55753:106;55845:3;55829:12;:7:::0;55839:2:::1;55829:12;:::i;:::-;55828:20;;;;:::i;:::-;55753:106;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;55879:42:0::1;55871:105;55962:3;55947:11;:7:::0;55957:1:::1;55947:11;:::i;:::-;55946:19;;;;:::i;:::-;55871:105;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;55996:42:0::1;55988:105;56079:3;56064:11;:7:::0;56074:1:::1;56064:11;:::i;:::-;56063:19;;;;:::i;:::-;55988:105;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;56113:42:0::1;56105:106;56197:3;56181:12;:7:::0;56191:2:::1;56181:12;:::i;:::-;56180:20;;;;:::i;:::-;56105:106;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;56231:42:0::1;56223:106;56315:3;56299:12;:7:::0;56309:2:::1;56299:12;:::i;:::-;56298:20;;;;:::i;:::-;56223:106;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;24490:1:0;25444:7;:22;55526:811::o;37060:369::-;37227:28;37237:4;37243:2;37247:7;37227:9;:28::i;:::-;-1:-1:-1;;;;;37270:13:0;;6035:19;:23;;37270:76;;;;;37290:56;37321:4;37327:2;37331:7;37340:5;37290:30;:56::i;:::-;37289:57;37270:76;37266:156;;;37370:40;;-1:-1:-1;;;37370:40:0;;;;;;;;;;;37266:156;37060:369;;;;:::o;54873:112::-;49383:7;49410:6;-1:-1:-1;;;;;49410:6:0;26238:10;49557:23;49549:68;;;;-1:-1:-1;;;49549:68:0;;;;;;;:::i;:::-;54944:10:::1;:33:::0;;-1:-1:-1;;;;;54944:33:0;;::::1;::::0;::::1;-1:-1:-1::0;;54944:33:0;;::::1;::::0;;;::::1;::::0;;54873:112::o;34539:318::-;34612:13;34643:16;34651:7;34643;:16::i;:::-;34638:59;;34668:29;;-1:-1:-1;;;34668:29:0;;;;;;;;;;;34638:59;34710:21;34734:10;:8;:10::i;:::-;34710:34;;34768:7;34762:21;34787:1;34762:26;;:87;;;;;;;;;;;;;;;;;34815:7;34824:18;:7;:16;:18::i;:::-;34798:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34762:87;34755:94;34539:318;-1:-1:-1;;;34539:318:0:o;52890:850::-;51475:9;51488:10;51475:23;51467:66;;;;-1:-1:-1;;;51467:66:0;;12166:2:1;51467:66:0;;;12148:21:1;12205:2;12185:18;;;12178:30;12244:32;12224:18;;;12217:60;12294:18;;51467:66:0;11964:354:1;51467:66:0;53002:37:::1;::::0;;::::1;::::0;::::1;::::0;;53029:10:::1;53002:37:::0;::::1;::::0;;::::1;::::0;;;-1:-1:-1;;;;;53002:37:0;;::::1;::::0;::::1;;::::0;::::1;::::0;-1:-1:-1;;;53002:37:0;::::1;;::::0;;;;;;-1:-1:-1;;;53002:37:0;;::::1;;::::0;;;;;;;;;53272:36;;::::1;53250:123;;;::::0;-1:-1:-1;;;53250:123:0;;11347:2:1;53250:123:0::1;::::0;::::1;11329:21:1::0;11386:2;11366:18;;;11359:30;11425:34;11405:18;;;11398:62;-1:-1:-1;;;11476:18:1;;;11469:35;11521:19;;53250:123:0::1;11145:401:1::0;53250:123:0::1;53406:63;53421:11;53434:13;53449:19;53406:14;:63::i;:::-;53384:142;;;::::0;-1:-1:-1;;;53384:142:0;;13569:2:1;53384:142:0::1;::::0;::::1;13551:21:1::0;13608:2;13588:18;;;13581:30;13647:31;13627:18;;;13620:59;13696:18;;53384:142:0::1;13367:353:1::0;53384:142:0::1;50962:4;53575:8;53559:13;30313:12:::0;;30297:13;;:28;;30059:303;53559:13:::1;:24;;;;:::i;:::-;:38;;53537:106;;;::::0;-1:-1:-1;;;53537:106:0;;12525:2:1;53537:106:0::1;::::0;::::1;12507:21:1::0;12564:2;12544:18;;;12537:30;-1:-1:-1;;;12583:18:1;;;12576:48;12641:18;;53537:106:0::1;12323:342:1::0;53537:106:0::1;53654:31;53664:10;53676:8;53654:9;:31::i;:::-;53696:36;53709:22;53723:8:::0;53709:11;:22:::1;:::i;53696:36::-;52991:749;;;;52890:850:::0;;:::o;55121:124::-;49383:7;49410:6;-1:-1:-1;;;;;49410:6:0;26238:10;49557:23;49549:68;;;;-1:-1:-1;;;49549:68:0;;;;;;;:::i;:::-;55204:19:::1;:33:::0;55121:124::o;56345:113::-;56403:7;56430:20;56444:5;56430:13;:20::i;54297:340::-;49383:7;49410:6;-1:-1:-1;;;;;49410:6:0;26238:10;49557:23;49549:68;;;;-1:-1:-1;;;49549:68:0;;;;;;;:::i;:::-;54474:155:::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;;-1:-1:-1;;;;;54474:155:0;;::::1;;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;;54594:10:::1;:24:::0;;-1:-1:-1;;;54594:24:0;;::::1;::::0;;::::1;54474:155:::0;;;;;;;-1:-1:-1;;54461:168:0;;;;;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;54461:168:0;-1:-1:-1;;;54461:168:0;;::::1;-1:-1:-1::0;;;;54461:168:0;;;::::1;;::::0;;54297:340::o;50246:201::-;49383:7;49410:6;-1:-1:-1;;;;;49410:6:0;26238:10;49557:23;49549:68;;;;-1:-1:-1;;;49549:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50335:22:0;::::1;50327:73;;;::::0;-1:-1:-1;;;50327:73:0;;10241:2:1;50327:73:0::1;::::0;::::1;10223:21:1::0;10280:2;10260:18;;;10253:30;10319:34;10299:18;;;10292:62;-1:-1:-1;;;10370:18:1;;;10363:36;10416:19;;50327:73:0::1;10039:402:1::0;50327:73:0::1;50411:28;50430:8;50411:18;:28::i;:::-;50246:201:::0;:::o;37684:187::-;37741:4;37805:13;;37795:7;:23;37765:98;;;;-1:-1:-1;;37836:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37836:27:0;;;;37835:28;;37684:187::o;45295:196::-;45410:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45410:29:0;-1:-1:-1;;;;;45410:29:0;;;;;;;;;45455:28;;45410:24;;45455:28;;;;;;;45295:196;;;:::o;37879:104::-;37948:27;37958:2;37962:8;37948:27;;;;;;;;;;;;:9;:27::i;40797:2112::-;40912:35;40950:20;40962:7;40950:11;:20::i;:::-;41025:18;;40912:58;;-1:-1:-1;40983:22:0;;-1:-1:-1;;;;;41009:34:0;26238:10;-1:-1:-1;;;;;41009:34:0;;:101;;;-1:-1:-1;41077:18:0;;41060:50;;26238:10;36332:164;:::i;41060:50::-;41009:154;;;-1:-1:-1;26238:10:0;41127:20;41139:7;41127:11;:20::i;:::-;-1:-1:-1;;;;;41127:36:0;;41009:154;40983:181;;41182:17;41177:66;;41208:35;;-1:-1:-1;;;41208:35:0;;;;;;;;;;;41177:66;41280:4;-1:-1:-1;;;;;41258:26:0;:13;:18;;;-1:-1:-1;;;;;41258:26:0;;41254:67;;41293:28;;-1:-1:-1;;;41293:28:0;;;;;;;;;;;41254:67;-1:-1:-1;;;;;41336:16:0;;41332:52;;41361:23;;-1:-1:-1;;;41361:23:0;;;;;;;;;;;41332:52;41505:49;41522:1;41526:7;41535:13;:18;;;41505:8;:49::i;:::-;-1:-1:-1;;;;;41850:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41850:31:0;;;-1:-1:-1;;;;;41850:31:0;;;-1:-1:-1;;41850:31:0;;;;;;;41896:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41896:29:0;;;;;;;;;;;41942:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;41987:61:0;;;;-1:-1:-1;;;42032:15:0;41987:61;;;;;;;;;;;42322:11;;;42352:24;;;;;:29;42322:11;;42352:29;42348:445;;42577:13;;42563:11;:27;42559:219;;;42647:18;;;42615:24;;;:11;:24;;;;;;;;:50;;42730:28;;;;-1:-1:-1;;;;;42688:70:0;-1:-1:-1;;;42688:70:0;-1:-1:-1;;;;;;42688:70:0;;;-1:-1:-1;;;;;42615:50:0;;;42688:70;;;;;;;42559:219;41825:979;42840:7;42836:2;-1:-1:-1;;;;;42821:27:0;42830:4;-1:-1:-1;;;;;42821:27:0;;;;;;;;;;;42859:42;37060:369;921:190;1046:4;1099;1070:25;1083:5;1090:4;1070:12;:25::i;:::-;:33;;921:190;-1:-1:-1;;;;921:190:0:o;53748:224::-;53825:5;53812:9;:18;;53804:53;;;;-1:-1:-1;;;53804:53:0;;13927:2:1;53804:53:0;;;13909:21:1;13966:2;13946:18;;;13939:30;-1:-1:-1;;;13985:18:1;;;13978:52;14047:18;;53804:53:0;13725:346:1;53804:53:0;53884:5;53872:9;:17;53868:97;;;53914:10;53906:47;53935:17;53947:5;53935:9;:17;:::i;:::-;53906:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32834:1108;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32944:7:0;33027:13;;33020:4;:20;32989:886;;;33061:31;33095:17;;;:11;:17;;;;;;;;;33061:51;;;;;;;;;-1:-1:-1;;;;;33061:51:0;;;;-1:-1:-1;;;33061:51:0;;-1:-1:-1;;;;;33061:51:0;;;;;;;;-1:-1:-1;;;33061:51:0;;;;;;;;;;;;;;33131:729;;33181:14;;-1:-1:-1;;;;;33181:28:0;;33177:101;;33245:9;32834:1108;-1:-1:-1;;;32834:1108:0:o;33177:101::-;-1:-1:-1;;;33620:6:0;33665:17;;;;:11;:17;;;;;;;;;33653:29;;;;;;;;;-1:-1:-1;;;;;33653:29:0;;;;;-1:-1:-1;;;33653:29:0;;-1:-1:-1;;;;;33653:29:0;;;;;;;;-1:-1:-1;;;33653:29:0;;;;;;;;;;;;;33713:28;33709:109;;33781:9;32834:1108;-1:-1:-1;;;32834:1108:0:o;33709:109::-;33580:261;;;33042:833;32989:886;33903:31;;-1:-1:-1;;;33903:31:0;;;;;;;;;;;50607:191;50681:16;50700:6;;-1:-1:-1;;;;;50717:17:0;;;-1:-1:-1;;;;;;50717:17:0;;;;;;50750:40;;50700:6;;;;;;;50750:40;;50681:16;50750:40;50670:128;50607:191;:::o;45983:667::-;46167:72;;-1:-1:-1;;;46167:72:0;;46146:4;;-1:-1:-1;;;;;46167:36:0;;;;;:72;;26238:10;;46218:4;;46224:7;;46233:5;;46167:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46167:72:0;;;;;;;;-1:-1:-1;;46167:72:0;;;;;;;;;;;;:::i;:::-;;;46163:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46401:13:0;;46397:235;;46447:40;;-1:-1:-1;;;46447:40:0;;;;;;;;;;;46397:235;46590:6;46584:13;46575:6;46571:2;46567:15;46560:38;46163:480;-1:-1:-1;;;;;;46286:55:0;-1:-1:-1;;;46286:55:0;;-1:-1:-1;45983:667:0;;;;;;:::o;55290:114::-;55350:13;55383;55376:20;;;;;:::i;2750:723::-;2806:13;3027:10;3023:53;;-1:-1:-1;;3054:10:0;;;;;;;;;;;;-1:-1:-1;;;3054:10:0;;;;;2750:723::o;3023:53::-;3101:5;3086:12;3142:78;3149:9;;3142:78;;3175:8;;;;:::i;:::-;;-1:-1:-1;3198:10:0;;-1:-1:-1;3206:2:0;3198:10;;:::i;:::-;;;3142:78;;;3230:19;3262:6;-1:-1:-1;;;;;3252:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3252:17:0;;3230:39;;3280:154;3287:10;;3280:154;;3314:11;3324:1;3314:11;;:::i;:::-;;-1:-1:-1;3383:10:0;3391:2;3383:5;:10;:::i;:::-;3370:24;;:2;:24;:::i;:::-;3357:39;;3340:6;3347;3340:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3340:56:0;;;;;;;;-1:-1:-1;3411:11:0;3420:2;3411:11;;:::i;:::-;;;3280:154;;31467:207;31528:7;-1:-1:-1;;;;;31552:19:0;;31548:59;;31580:27;;-1:-1:-1;;;31580:27:0;;;;;;;;;;;31548:59;-1:-1:-1;;;;;;31633:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;31633:32:0;;-1:-1:-1;;;;;31633:32:0;;31467:207::o;38346:163::-;38469:32;38475:2;38479:8;38489:5;38496:4;38469:5;:32::i;1473:675::-;1556:7;1599:4;1556:7;1614:497;1638:5;:12;1634:1;:16;1614:497;;;1672:20;1695:5;1701:1;1695:8;;;;;;;;:::i;:::-;;;;;;;1672:31;;1738:12;1722;:28;1718:382;;2224:13;2274:15;;;2310:4;2303:15;;;2357:4;2341:21;;1850:57;;1718:382;;;2224:13;2274:15;;;2310:4;2303:15;;;2357:4;2341:21;;2027:57;;1718:382;-1:-1:-1;1652:3:0;;;;:::i;:::-;;;;1614:497;;;-1:-1:-1;2128:12:0;1473:675;-1:-1:-1;;;1473:675:0:o;38768:1775::-;38930:13;;-1:-1:-1;;;;;38958:16:0;;38954:48;;38983:19;;-1:-1:-1;;;38983:19:0;;;;;;;;;;;38954:48;39017:13;39013:44;;39039:18;;-1:-1:-1;;;39039:18:0;;;;;;;;;;;39013:44;-1:-1:-1;;;;;39408:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;39467:49:0;;-1:-1:-1;;;;;39408:44:0;;;;;;;39467:49;;;-1:-1:-1;;;;;39408:44:0;;;;;;39467:49;;;;;;;;;;;;;;;;39533:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39583:66:0;;;;-1:-1:-1;;;39633:15:0;39583:66;;;;;;;;;;39533:25;39730:23;;;39774:4;:23;;;;-1:-1:-1;;;;;;39782:13:0;;6035:19;:23;;39782:15;39770:641;;;39818:314;39849:38;;39874:12;;-1:-1:-1;;;;;39849:38:0;;;39866:1;;39849:38;;39866:1;;39849:38;39915:69;39954:1;39958:2;39962:14;;;;;;39978:5;39915:30;:69::i;:::-;39910:174;;40020:40;;-1:-1:-1;;;40020:40:0;;;;;;;;;;;39910:174;40127:3;40111:12;:19;;39818:314;;40213:12;40196:13;;:29;40192:43;;40227:8;;;40192:43;39770:641;;;40276:120;40307:40;;40332:14;;;;;-1:-1:-1;;;;;40307:40:0;;;40324:1;;40307:40;;40324:1;;40307:40;40391:3;40375:12;:19;;40276:120;;39770:641;-1:-1:-1;40425:13:0;:28;40475:60;37060:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:367::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:55;;337:1;334;327:12;286:55;-1:-1:-1;360:20:1;;-1:-1:-1;;;;;392:30:1;;389:50;;;435:1;432;425:12;389:50;472:4;464:6;460:17;448:29;;532:3;525:4;515:6;512:1;508:14;500:6;496:27;492:38;489:47;486:67;;;549:1;546;539:12;486:67;192:367;;;;;:::o;564:163::-;631:20;;691:10;680:22;;670:33;;660:61;;717:1;714;707:12;732:171;799:20;;-1:-1:-1;;;;;848:30:1;;838:41;;828:69;;893:1;890;883:12;908:186;967:6;1020:2;1008:9;999:7;995:23;991:32;988:52;;;1036:1;1033;1026:12;988:52;1059:29;1078:9;1059:29;:::i;1099:260::-;1167:6;1175;1228:2;1216:9;1207:7;1203:23;1199:32;1196:52;;;1244:1;1241;1234:12;1196:52;1267:29;1286:9;1267:29;:::i;:::-;1257:39;;1315:38;1349:2;1338:9;1334:18;1315:38;:::i;:::-;1305:48;;1099:260;;;;;:::o;1364:328::-;1441:6;1449;1457;1510:2;1498:9;1489:7;1485:23;1481:32;1478:52;;;1526:1;1523;1516:12;1478:52;1549:29;1568:9;1549:29;:::i;:::-;1539:39;;1597:38;1631:2;1620:9;1616:18;1597:38;:::i;:::-;1587:48;;1682:2;1671:9;1667:18;1654:32;1644:42;;1364:328;;;;;:::o;1697:1138::-;1792:6;1800;1808;1816;1869:3;1857:9;1848:7;1844:23;1840:33;1837:53;;;1886:1;1883;1876:12;1837:53;1909:29;1928:9;1909:29;:::i;:::-;1899:39;;1957:38;1991:2;1980:9;1976:18;1957:38;:::i;:::-;1947:48;;2042:2;2031:9;2027:18;2014:32;2004:42;;2097:2;2086:9;2082:18;2069:32;-1:-1:-1;;;;;2161:2:1;2153:6;2150:14;2147:34;;;2177:1;2174;2167:12;2147:34;2215:6;2204:9;2200:22;2190:32;;2260:7;2253:4;2249:2;2245:13;2241:27;2231:55;;2282:1;2279;2272:12;2231:55;2318:2;2305:16;2340:2;2336;2333:10;2330:36;;;2346:18;;:::i;:::-;2421:2;2415:9;2389:2;2475:13;;-1:-1:-1;;2471:22:1;;;2495:2;2467:31;2463:40;2451:53;;;2519:18;;;2539:22;;;2516:46;2513:72;;;2565:18;;:::i;:::-;2605:10;2601:2;2594:22;2640:2;2632:6;2625:18;2680:7;2675:2;2670;2666;2662:11;2658:20;2655:33;2652:53;;;2701:1;2698;2691:12;2652:53;2757:2;2752;2748;2744:11;2739:2;2731:6;2727:15;2714:46;2802:1;2797:2;2792;2784:6;2780:15;2776:24;2769:35;2823:6;2813:16;;;;;;;1697:1138;;;;;;;:::o;2840:347::-;2905:6;2913;2966:2;2954:9;2945:7;2941:23;2937:32;2934:52;;;2982:1;2979;2972:12;2934:52;3005:29;3024:9;3005:29;:::i;:::-;2995:39;;3084:2;3073:9;3069:18;3056:32;3131:5;3124:13;3117:21;3110:5;3107:32;3097:60;;3153:1;3150;3143:12;3097:60;3176:5;3166:15;;;2840:347;;;;;:::o;3192:254::-;3260:6;3268;3321:2;3309:9;3300:7;3296:23;3292:32;3289:52;;;3337:1;3334;3327:12;3289:52;3360:29;3379:9;3360:29;:::i;:::-;3350:39;3436:2;3421:18;;;;3408:32;;-1:-1:-1;;;3192:254:1:o;3451:437::-;3537:6;3545;3598:2;3586:9;3577:7;3573:23;3569:32;3566:52;;;3614:1;3611;3604:12;3566:52;3654:9;3641:23;-1:-1:-1;;;;;3679:6:1;3676:30;3673:50;;;3719:1;3716;3709:12;3673:50;3758:70;3820:7;3811:6;3800:9;3796:22;3758:70;:::i;:::-;3847:8;;3732:96;;-1:-1:-1;3451:437:1;-1:-1:-1;;;;3451:437:1:o;3893:505::-;3988:6;3996;4004;4057:2;4045:9;4036:7;4032:23;4028:32;4025:52;;;4073:1;4070;4063:12;4025:52;4113:9;4100:23;-1:-1:-1;;;;;4138:6:1;4135:30;4132:50;;;4178:1;4175;4168:12;4132:50;4217:70;4279:7;4270:6;4259:9;4255:22;4217:70;:::i;:::-;4306:8;;4191:96;;-1:-1:-1;4388:2:1;4373:18;;;;4360:32;;3893:505;-1:-1:-1;;;;3893:505:1:o;4403:180::-;4462:6;4515:2;4503:9;4494:7;4490:23;4486:32;4483:52;;;4531:1;4528;4521:12;4483:52;-1:-1:-1;4554:23:1;;4403:180;-1:-1:-1;4403:180:1:o;4588:245::-;4646:6;4699:2;4687:9;4678:7;4674:23;4670:32;4667:52;;;4715:1;4712;4705:12;4667:52;4754:9;4741:23;4773:30;4797:5;4773:30;:::i;4838:249::-;4907:6;4960:2;4948:9;4939:7;4935:23;4931:32;4928:52;;;4976:1;4973;4966:12;4928:52;5008:9;5002:16;5027:30;5051:5;5027:30;:::i;5092:592::-;5163:6;5171;5224:2;5212:9;5203:7;5199:23;5195:32;5192:52;;;5240:1;5237;5230:12;5192:52;5280:9;5267:23;-1:-1:-1;;;;;5350:2:1;5342:6;5339:14;5336:34;;;5366:1;5363;5356:12;5336:34;5404:6;5393:9;5389:22;5379:32;;5449:7;5442:4;5438:2;5434:13;5430:27;5420:55;;5471:1;5468;5461:12;5420:55;5511:2;5498:16;5537:2;5529:6;5526:14;5523:34;;;5553:1;5550;5543:12;5523:34;5598:7;5593:2;5584:6;5580:2;5576:15;5572:24;5569:37;5566:57;;;5619:1;5616;5609:12;5566:57;5650:2;5642:11;;;;;5672:6;;-1:-1:-1;5092:592:1;;-1:-1:-1;;;;5092:592:1:o;5874:254::-;5942:6;5950;6003:2;5991:9;5982:7;5978:23;5974:32;5971:52;;;6019:1;6016;6009:12;5971:52;6055:9;6042:23;6032:33;;6084:38;6118:2;6107:9;6103:18;6084:38;:::i;6133:248::-;6201:6;6209;6262:2;6250:9;6241:7;6237:23;6233:32;6230:52;;;6278:1;6275;6268:12;6230:52;-1:-1:-1;;6301:23:1;;;6371:2;6356:18;;;6343:32;;-1:-1:-1;6133:248:1:o;6386:316::-;6463:6;6471;6479;6532:2;6520:9;6511:7;6507:23;6503:32;6500:52;;;6548:1;6545;6538:12;6500:52;-1:-1:-1;;6571:23:1;;;6641:2;6626:18;;6613:32;;-1:-1:-1;6692:2:1;6677:18;;;6664:32;;6386:316;-1:-1:-1;6386:316:1:o;6707:184::-;6765:6;6818:2;6806:9;6797:7;6793:23;6789:32;6786:52;;;6834:1;6831;6824:12;6786:52;6857:28;6875:9;6857:28;:::i;6896:184::-;6954:6;7007:2;6995:9;6986:7;6982:23;6978:32;6975:52;;;7023:1;7020;7013:12;6975:52;7046:28;7064:9;7046:28;:::i;7085:328::-;7159:6;7167;7175;7228:2;7216:9;7207:7;7203:23;7199:32;7196:52;;;7244:1;7241;7234:12;7196:52;7267:28;7285:9;7267:28;:::i;:::-;7257:38;;7314:37;7347:2;7336:9;7332:18;7314:37;:::i;:::-;7304:47;;7370:37;7403:2;7392:9;7388:18;7370:37;:::i;:::-;7360:47;;7085:328;;;;;:::o;7418:257::-;7459:3;7497:5;7491:12;7524:6;7519:3;7512:19;7540:63;7596:6;7589:4;7584:3;7580:14;7573:4;7566:5;7562:16;7540:63;:::i;:::-;7657:2;7636:15;-1:-1:-1;;7632:29:1;7623:39;;;;7664:4;7619:50;;7418:257;-1:-1:-1;;7418:257:1:o;7914:470::-;8093:3;8131:6;8125:13;8147:53;8193:6;8188:3;8181:4;8173:6;8169:17;8147:53;:::i;:::-;8263:13;;8222:16;;;;8285:57;8263:13;8222:16;8319:4;8307:17;;8285:57;:::i;:::-;8358:20;;7914:470;-1:-1:-1;;;;7914:470:1:o;8597:488::-;-1:-1:-1;;;;;8866:15:1;;;8848:34;;8918:15;;8913:2;8898:18;;8891:43;8965:2;8950:18;;8943:34;;;9013:3;9008:2;8993:18;;8986:31;;;8791:4;;9034:45;;9059:19;;9051:6;9034:45;:::i;:::-;9026:53;8597:488;-1:-1:-1;;;;;;8597:488:1:o;9464:219::-;9613:2;9602:9;9595:21;9576:4;9633:44;9673:2;9662:9;9658:18;9650:6;9633:44;:::i;13006:356::-;13208:2;13190:21;;;13227:18;;;13220:30;13286:34;13281:2;13266:18;;13259:62;13353:2;13338:18;;13006:356::o;15552:128::-;15592:3;15623:1;15619:6;15616:1;15613:13;15610:39;;;15629:18;;:::i;:::-;-1:-1:-1;15665:9:1;;15552:128::o;15685:120::-;15725:1;15751;15741:35;;15756:18;;:::i;:::-;-1:-1:-1;15790:9:1;;15685:120::o;15810:168::-;15850:7;15916:1;15912;15908:6;15904:14;15901:1;15898:21;15893:1;15886:9;15879:17;15875:45;15872:71;;;15923:18;;:::i;:::-;-1:-1:-1;15963:9:1;;15810:168::o;15983:125::-;16023:4;16051:1;16048;16045:8;16042:34;;;16056:18;;:::i;:::-;-1:-1:-1;16093:9:1;;15983:125::o;16113:258::-;16185:1;16195:113;16209:6;16206:1;16203:13;16195:113;;;16285:11;;;16279:18;16266:11;;;16259:39;16231:2;16224:10;16195:113;;;16326:6;16323:1;16320:13;16317:48;;;-1:-1:-1;;16361:1:1;16343:16;;16336:27;16113:258::o;16376:380::-;16455:1;16451:12;;;;16498;;;16519:61;;16573:4;16565:6;16561:17;16551:27;;16519:61;16626:2;16618:6;16615:14;16595:18;16592:38;16589:161;;;16672:10;16667:3;16663:20;16660:1;16653:31;16707:4;16704:1;16697:15;16735:4;16732:1;16725:15;16589:161;;16376:380;;;:::o;16761:135::-;16800:3;-1:-1:-1;;16821:17:1;;16818:43;;;16841:18;;:::i;:::-;-1:-1:-1;16888:1:1;16877:13;;16761:135::o;16901:112::-;16933:1;16959;16949:35;;16964:18;;:::i;:::-;-1:-1:-1;16998:9:1;;16901:112::o;17018:127::-;17079:10;17074:3;17070:20;17067:1;17060:31;17110:4;17107:1;17100:15;17134:4;17131:1;17124:15;17150:127;17211:10;17206:3;17202:20;17199:1;17192:31;17242:4;17239:1;17232:15;17266:4;17263:1;17256:15;17282:127;17343:10;17338:3;17334:20;17331:1;17324:31;17374:4;17371:1;17364:15;17398:4;17395:1;17388:15;17414:127;17475:10;17470:3;17466:20;17463:1;17456:31;17506:4;17503:1;17496:15;17530:4;17527:1;17520:15;17546:131;-1:-1:-1;;;;;;17620:32:1;;17610:43;;17600:71;;17667:1;17664;17657:12

Swarm Source

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