ETH Price: $3,332.88 (-1.26%)
Gas: 10 Gwei

Token

PixelClonesGenesis (PXCLONE)
 

Overview

Max Total Supply

50 PXCLONE

Holders

19

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PXCLONE
0x62b609252383E9272ac0b0242acBd2b01B59009F
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:
Contract

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: contracts/pixelclonesgenesis.sol


pragma solidity ^0.8.11;






error PrivateMintNotStarted();
error PublicMintNotStarted();
error InsufficientPayment();
error NotInWhitelist();
error ExceedSupply();
error ExceedMaxPerWallet();

contract Contract is ERC721A, Ownable, ReentrancyGuard {
    using MerkleProof for bytes32[];

    // ===== Variables =====
    uint16 constant devSupply = 150;
    uint16 constant presaleSupply = 0;
    uint16 constant collectionSupply = 150;

    bool private privateMintStarted;
    bool private publicMintStarted;

    uint8 private presaleMaxItemsPerWallet = 1;

    uint256 private presalePrice = 0.1 ether;
    uint256 private mintPrice = 0.1 ether;

    string private baseTokenURI;

    bytes32 private presaleMerkleRoot;

    // ===== Constructor =====
    constructor() ERC721A("PixelClonesGenesis", "PXCLONE") {}

    // ===== Modifiers =====
    modifier whenPrivateMint() {
        if (!privateMintStarted || publicMintStarted) revert PrivateMintNotStarted();
        _;
    }

    modifier whenPublicMint() {
        if (!publicMintStarted) revert PublicMintNotStarted();
        _;
    }

    // ===== Dev mint =====
    function devMint(uint8 quantity) external onlyOwner {
        if(totalSupply() + quantity > devSupply) revert ExceedSupply();

        _mint(msg.sender, quantity);        
    }

    // ===== Private mint =====
    function privateMint(bytes32[] memory proof, uint8 quantity) external payable nonReentrant whenPrivateMint {
        if(msg.value < presalePrice * quantity) revert InsufficientPayment();
        if(totalSupply() + quantity > presaleSupply) revert ExceedSupply();
        if(_numberMinted(msg.sender) + quantity > presaleMaxItemsPerWallet) revert ExceedMaxPerWallet();
        if(!isAddressWhitelisted(proof, msg.sender)) revert NotInWhitelist();

        _mint(msg.sender, quantity);        
    }

    // ===== Public mint =====
    function mint(uint8 quantity) external payable nonReentrant whenPublicMint {
        if(msg.value < mintPrice * quantity) revert InsufficientPayment();
        if(totalSupply() + quantity > collectionSupply) revert ExceedSupply();

        _mint(msg.sender, quantity);        
    }

    // ===== Whitelisting =====
    function isAddressWhitelisted(bytes32[] memory proof, address _address) internal view returns (bool) {
        return proof.verify(presaleMerkleRoot, keccak256(abi.encodePacked(_address)));
    }

    // ===== Withdraw =====
    function withdraw() external onlyOwner nonReentrant {
        Address.sendValue(payable(owner()), address(this).balance);
    }

    // ===== Metadata URI =====
    function _baseURI() internal view override(ERC721A) returns (string memory) {
        return baseTokenURI;
    }

    function setBaseTokenURI(string memory value) external onlyOwner {
        baseTokenURI = value;
    }

    // ===== Setters =====
    function startPrivateMint() external onlyOwner {
        privateMintStarted = false;
    }

    function startPublicMint() external onlyOwner {
        publicMintStarted = false;
    }

    function setPresaleMaxItemsPerWallet(uint8 value) external onlyOwner {
        presaleMaxItemsPerWallet = value;
    }

    function setPresalePrice(uint256 value) external onlyOwner {
        presalePrice = value;
    }

    function setMintPrice(uint256 value) external onlyOwner {
        mintPrice = value;
    }

    function setPresaleMerkleRoot(bytes32 value) external onlyOwner {
        presaleMerkleRoot = value;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ExceedMaxPerWallet","type":"error"},{"inputs":[],"name":"ExceedSupply","type":"error"},{"inputs":[],"name":"InsufficientPayment","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotInWhitelist","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"PrivateMintNotStarted","type":"error"},{"inputs":[],"name":"PublicMintNotStarted","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"uint8","name":"quantity","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"privateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"value","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"value","type":"uint8"}],"name":"setPresaleMaxItemsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"value","type":"bytes32"}],"name":"setPresaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPrivateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicMint","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600a60026101000a81548160ff021916908360ff16021790555067016345785d8a0000600b5567016345785d8a0000600c553480156200004557600080fd5b506040518060400160405280601281526020017f506978656c436c6f6e657347656e6573697300000000000000000000000000008152506040518060400160405280600781526020017f5058434c4f4e45000000000000000000000000000000000000000000000000008152508160029081620000c3919062000469565b508060039081620000d5919062000469565b50620000e66200011c60201b60201c565b60008190555050506200010e620001026200012160201b60201c565b6200012960201b60201c565b600160098190555062000550565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200027157607f821691505b60208210810362000287576200028662000229565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002f17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002b2565b620002fd8683620002b2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200034a620003446200033e8462000315565b6200031f565b62000315565b9050919050565b6000819050919050565b620003668362000329565b6200037e620003758262000351565b848454620002bf565b825550505050565b600090565b6200039562000386565b620003a28184846200035b565b505050565b5b81811015620003ca57620003be6000826200038b565b600181019050620003a8565b5050565b601f8211156200041957620003e3816200028d565b620003ee84620002a2565b81016020851015620003fe578190505b620004166200040d85620002a2565b830182620003a7565b50505b505050565b600082821c905092915050565b60006200043e600019846008026200041e565b1980831691505092915050565b60006200045983836200042b565b9150826002028217905092915050565b6200047482620001ef565b67ffffffffffffffff81111562000490576200048f620001fa565b5b6200049c825462000258565b620004a9828285620003ce565b600060209050601f831160018114620004e15760008415620004cc578287015190505b620004d885826200044b565b86555062000548565b601f198416620004f1866200028d565b60005b828110156200051b57848901518255600182019150602085019450602081019050620004f4565b868310156200053b578489015162000537601f8916826200042b565b8355505b6001600288020188555050505b505050505050565b61304e80620005606000396000f3fe6080604052600436106101b75760003560e01c80636ecd2306116100ec578063b88d4fde1161008a578063e6a7e93311610064578063e6a7e9331461057c578063e985e9c514610593578063f2fde38b146105d0578063f4a0a528146105f9576101b7565b8063b88d4fde14610507578063c87b56dd14610523578063dfb9eb5614610560576101b7565b806376c64c62116100c657806376c64c62146104715780638da5cb5b1461048857806395d89b41146104b3578063a22cb465146104de576101b7565b80636ecd23061461040157806370a082311461041d578063715018a61461045a576101b7565b806328d7b276116101595780633549345e116101335780633549345e146103685780633ccfd60b1461039157806342842e0e146103a85780636352211e146103c4576101b7565b806328d7b276146102ed57806330176e13146103165780633497d1651461033f576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461027d5780631a0ef8a9146102a857806323b872dd146102d1576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190611fa5565b610622565b6040516101f09190611fed565b60405180910390f35b34801561020557600080fd5b5061020e6106b4565b60405161021b9190612098565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906120f0565b610746565b604051610258919061215e565b60405180910390f35b61027b600480360381019061027691906121a5565b6107c5565b005b34801561028957600080fd5b50610292610909565b60405161029f91906121f4565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612248565b610920565b005b6102eb60048036038101906102e69190612275565b610946565b005b3480156102f957600080fd5b50610314600480360381019061030f91906122fe565b610c68565b005b34801561032257600080fd5b5061033d60048036038101906103389190612460565b610c7a565b005b34801561034b57600080fd5b5061036660048036038101906103619190612248565b610c95565b005b34801561037457600080fd5b5061038f600480360381019061038a91906120f0565b610d01565b005b34801561039d57600080fd5b506103a6610d13565b005b6103c260048036038101906103bd9190612275565b610d3e565b005b3480156103d057600080fd5b506103eb60048036038101906103e691906120f0565b610d5e565b6040516103f8919061215e565b60405180910390f35b61041b60048036038101906104169190612248565b610d70565b005b34801561042957600080fd5b50610444600480360381019061043f91906124a9565b610e74565b60405161045191906121f4565b60405180910390f35b34801561046657600080fd5b5061046f610f2c565b005b34801561047d57600080fd5b50610486610f40565b005b34801561049457600080fd5b5061049d610f65565b6040516104aa919061215e565b60405180910390f35b3480156104bf57600080fd5b506104c8610f8f565b6040516104d59190612098565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190612502565b611021565b005b610521600480360381019061051c91906125e3565b61112c565b005b34801561052f57600080fd5b5061054a600480360381019061054591906120f0565b61119f565b6040516105579190612098565b60405180910390f35b61057a6004803603810190610575919061272e565b61123d565b005b34801561058857600080fd5b506105916113fd565b005b34801561059f57600080fd5b506105ba60048036038101906105b5919061278a565b611422565b6040516105c79190611fed565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f291906124a9565b6114b6565b005b34801561060557600080fd5b50610620600480360381019061061b91906120f0565b611539565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106ad5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106c3906127f9565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef906127f9565b801561073c5780601f106107115761010080835404028352916020019161073c565b820191906000526020600020905b81548152906001019060200180831161071f57829003601f168201915b5050505050905090565b60006107518261154b565b610787576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107d082610d5e565b90508073ffffffffffffffffffffffffffffffffffffffff166107f16115aa565b73ffffffffffffffffffffffffffffffffffffffff16146108545761081d816108186115aa565b611422565b610853576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109136115b2565b6001546000540303905090565b6109286115b7565b80600a60026101000a81548160ff021916908360ff16021790555050565b600061095182611635565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109b8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109c484611701565b915091506109da81876109d56115aa565b611728565b610a26576109ef866109ea6115aa565b611422565b610a25576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610a8c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a99868686600161176c565b8015610aa457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b7285610b4e888887611772565b7c02000000000000000000000000000000000000000000000000000000001761179a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610bf85760006001850190506000600460008381526020019081526020016000205403610bf6576000548114610bf5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c6086868660016117c5565b505050505050565b610c706115b7565b80600e8190555050565b610c826115b7565b80600d9081610c9191906129d6565b5050565b610c9d6115b7565b609661ffff168160ff16610caf610909565b610cb99190612ad7565b1115610cf1576040517f5c9a0abb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cfe338260ff166117cb565b50565b610d096115b7565b80600b8190555050565b610d1b6115b7565b610d23611986565b610d34610d2e610f65565b476119d5565b610d3c611ac9565b565b610d598383836040518060200160405280600081525061112c565b505050565b6000610d6982611635565b9050919050565b610d78611986565b600a60019054906101000a900460ff16610dbe576040517fb35ba98d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060ff16600c54610dcf9190612b0b565b341015610e08576040517fcd1c886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b609661ffff168160ff16610e1a610909565b610e249190612ad7565b1115610e5c576040517f5c9a0abb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e69338260ff166117cb565b610e71611ac9565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610edb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f346115b7565b610f3e6000611ad3565b565b610f486115b7565b6000600a60016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f9e906127f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610fca906127f9565b80156110175780601f10610fec57610100808354040283529160200191611017565b820191906000526020600020905b815481529060010190602001808311610ffa57829003601f168201915b5050505050905090565b806007600061102e6115aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110db6115aa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111209190611fed565b60405180910390a35050565b611137848484610946565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111995761116284848484611b99565b611198576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606111aa8261154b565b6111e0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111ea611ce9565b9050600081510361120a5760405180602001604052806000815250611235565b8061121484611d7b565b604051602001611225929190612b89565b6040516020818303038152906040525b915050919050565b611245611986565b600a60009054906101000a900460ff16158061126d5750600a60019054906101000a900460ff165b156112a4576040517fd23cd50900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060ff16600b546112b59190612b0b565b3410156112ee576040517fcd1c886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061ffff168160ff16611300610909565b61130a9190612ad7565b1115611342576040517f5c9a0abb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60029054906101000a900460ff1660ff168160ff1661136233611dcb565b61136c9190612ad7565b11156113a4576040517fd900aa8a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113ae8233611e22565b6113e4576040517f5b0aa2ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113f1338260ff166117cb565b6113f9611ac9565b5050565b6114056115b7565b6000600a60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114be6115b7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490612c1f565b60405180910390fd5b61153681611ad3565b50565b6115416115b7565b80600c8190555050565b6000816115566115b2565b11158015611565575060005482105b80156115a3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6115bf611e69565b73ffffffffffffffffffffffffffffffffffffffff166115dd610f65565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90612c8b565b60405180910390fd5b565b600080829050806116446115b2565b116116ca576000548110156116c95760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036116c7575b600081036116bd576004600083600190039350838152602001908152602001600020549050611693565b80925050506116fc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611789868684611e71565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000805490506000820361180b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611818600084838561176c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061188f836118806000866000611772565b61188985611e7a565b1761179a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461193057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506118f5565b506000820361196b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061198160008483856117c5565b505050565b6002600954036119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290612cf7565b60405180910390fd5b6002600981905550565b80471015611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90612d63565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611a3e90612db4565b60006040518083038185875af1925050503d8060008114611a7b576040519150601f19603f3d011682016040523d82523d6000602084013e611a80565b606091505b5050905080611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb90612e3b565b60405180910390fd5b505050565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bbf6115aa565b8786866040518563ffffffff1660e01b8152600401611be19493929190612eb0565b6020604051808303816000875af1925050508015611c1d57506040513d601f19601f82011682018060405250810190611c1a9190612f11565b60015b611c96573d8060008114611c4d576040519150601f19603f3d011682016040523d82523d6000602084013e611c52565b606091505b506000815103611c8e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611cf8906127f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611d24906127f9565b8015611d715780601f10611d4657610100808354040283529160200191611d71565b820191906000526020600020905b815481529060010190602001808311611d5457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611db657600184039350600a81066030018453600a8104905080611d94575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000611e61600e5483604051602001611e3b9190612f86565b6040516020818303038152906040528051906020012085611e8a9092919063ffffffff16565b905092915050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b600082611e978584611ea1565b1490509392505050565b60008082905060005b8451811015611eec57611ed782868381518110611eca57611ec9612fa1565b5b6020026020010151611ef7565b91508080611ee490612fd0565b915050611eaa565b508091505092915050565b6000818310611f0f57611f0a8284611f22565b611f1a565b611f198383611f22565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f8281611f4d565b8114611f8d57600080fd5b50565b600081359050611f9f81611f79565b92915050565b600060208284031215611fbb57611fba611f43565b5b6000611fc984828501611f90565b91505092915050565b60008115159050919050565b611fe781611fd2565b82525050565b60006020820190506120026000830184611fde565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612042578082015181840152602081019050612027565b60008484015250505050565b6000601f19601f8301169050919050565b600061206a82612008565b6120748185612013565b9350612084818560208601612024565b61208d8161204e565b840191505092915050565b600060208201905081810360008301526120b2818461205f565b905092915050565b6000819050919050565b6120cd816120ba565b81146120d857600080fd5b50565b6000813590506120ea816120c4565b92915050565b60006020828403121561210657612105611f43565b5b6000612114848285016120db565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121488261211d565b9050919050565b6121588161213d565b82525050565b6000602082019050612173600083018461214f565b92915050565b6121828161213d565b811461218d57600080fd5b50565b60008135905061219f81612179565b92915050565b600080604083850312156121bc576121bb611f43565b5b60006121ca85828601612190565b92505060206121db858286016120db565b9150509250929050565b6121ee816120ba565b82525050565b600060208201905061220960008301846121e5565b92915050565b600060ff82169050919050565b6122258161220f565b811461223057600080fd5b50565b6000813590506122428161221c565b92915050565b60006020828403121561225e5761225d611f43565b5b600061226c84828501612233565b91505092915050565b60008060006060848603121561228e5761228d611f43565b5b600061229c86828701612190565b93505060206122ad86828701612190565b92505060406122be868287016120db565b9150509250925092565b6000819050919050565b6122db816122c8565b81146122e657600080fd5b50565b6000813590506122f8816122d2565b92915050565b60006020828403121561231457612313611f43565b5b6000612322848285016122e9565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61236d8261204e565b810181811067ffffffffffffffff8211171561238c5761238b612335565b5b80604052505050565b600061239f611f39565b90506123ab8282612364565b919050565b600067ffffffffffffffff8211156123cb576123ca612335565b5b6123d48261204e565b9050602081019050919050565b82818337600083830152505050565b60006124036123fe846123b0565b612395565b90508281526020810184848401111561241f5761241e612330565b5b61242a8482856123e1565b509392505050565b600082601f8301126124475761244661232b565b5b81356124578482602086016123f0565b91505092915050565b60006020828403121561247657612475611f43565b5b600082013567ffffffffffffffff81111561249457612493611f48565b5b6124a084828501612432565b91505092915050565b6000602082840312156124bf576124be611f43565b5b60006124cd84828501612190565b91505092915050565b6124df81611fd2565b81146124ea57600080fd5b50565b6000813590506124fc816124d6565b92915050565b6000806040838503121561251957612518611f43565b5b600061252785828601612190565b9250506020612538858286016124ed565b9150509250929050565b600067ffffffffffffffff82111561255d5761255c612335565b5b6125668261204e565b9050602081019050919050565b600061258661258184612542565b612395565b9050828152602081018484840111156125a2576125a1612330565b5b6125ad8482856123e1565b509392505050565b600082601f8301126125ca576125c961232b565b5b81356125da848260208601612573565b91505092915050565b600080600080608085870312156125fd576125fc611f43565b5b600061260b87828801612190565b945050602061261c87828801612190565b935050604061262d878288016120db565b925050606085013567ffffffffffffffff81111561264e5761264d611f48565b5b61265a878288016125b5565b91505092959194509250565b600067ffffffffffffffff82111561268157612680612335565b5b602082029050602081019050919050565b600080fd5b60006126aa6126a584612666565b612395565b905080838252602082019050602084028301858111156126cd576126cc612692565b5b835b818110156126f657806126e288826122e9565b8452602084019350506020810190506126cf565b5050509392505050565b600082601f8301126127155761271461232b565b5b8135612725848260208601612697565b91505092915050565b6000806040838503121561274557612744611f43565b5b600083013567ffffffffffffffff81111561276357612762611f48565b5b61276f85828601612700565b925050602061278085828601612233565b9150509250929050565b600080604083850312156127a1576127a0611f43565b5b60006127af85828601612190565b92505060206127c085828601612190565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061281157607f821691505b602082108103612824576128236127ca565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261288c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261284f565b612896868361284f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006128d36128ce6128c9846120ba565b6128ae565b6120ba565b9050919050565b6000819050919050565b6128ed836128b8565b6129016128f9826128da565b84845461285c565b825550505050565b600090565b612916612909565b6129218184846128e4565b505050565b5b818110156129455761293a60008261290e565b600181019050612927565b5050565b601f82111561298a5761295b8161282a565b6129648461283f565b81016020851015612973578190505b61298761297f8561283f565b830182612926565b50505b505050565b600082821c905092915050565b60006129ad6000198460080261298f565b1980831691505092915050565b60006129c6838361299c565b9150826002028217905092915050565b6129df82612008565b67ffffffffffffffff8111156129f8576129f7612335565b5b612a0282546127f9565b612a0d828285612949565b600060209050601f831160018114612a405760008415612a2e578287015190505b612a3885826129ba565b865550612aa0565b601f198416612a4e8661282a565b60005b82811015612a7657848901518255600182019150602085019450602081019050612a51565b86831015612a935784890151612a8f601f89168261299c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ae2826120ba565b9150612aed836120ba565b9250828201905080821115612b0557612b04612aa8565b5b92915050565b6000612b16826120ba565b9150612b21836120ba565b9250828202612b2f816120ba565b91508282048414831517612b4657612b45612aa8565b5b5092915050565b600081905092915050565b6000612b6382612008565b612b6d8185612b4d565b9350612b7d818560208601612024565b80840191505092915050565b6000612b958285612b58565b9150612ba18284612b58565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c09602683612013565b9150612c1482612bad565b604082019050919050565b60006020820190508181036000830152612c3881612bfc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c75602083612013565b9150612c8082612c3f565b602082019050919050565b60006020820190508181036000830152612ca481612c68565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612ce1601f83612013565b9150612cec82612cab565b602082019050919050565b60006020820190508181036000830152612d1081612cd4565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000612d4d601d83612013565b9150612d5882612d17565b602082019050919050565b60006020820190508181036000830152612d7c81612d40565b9050919050565b600081905092915050565b50565b6000612d9e600083612d83565b9150612da982612d8e565b600082019050919050565b6000612dbf82612d91565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000612e25603a83612013565b9150612e3082612dc9565b604082019050919050565b60006020820190508181036000830152612e5481612e18565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612e8282612e5b565b612e8c8185612e66565b9350612e9c818560208601612024565b612ea58161204e565b840191505092915050565b6000608082019050612ec5600083018761214f565b612ed2602083018661214f565b612edf60408301856121e5565b8181036060830152612ef18184612e77565b905095945050505050565b600081519050612f0b81611f79565b92915050565b600060208284031215612f2757612f26611f43565b5b6000612f3584828501612efc565b91505092915050565b60008160601b9050919050565b6000612f5682612f3e565b9050919050565b6000612f6882612f4b565b9050919050565b612f80612f7b8261213d565b612f5d565b82525050565b6000612f928284612f6f565b60148201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612fdb826120ba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361300d5761300c612aa8565b5b60018201905091905056fea26469706673582212207f3a1c8bb0346888ded2fa973dd36ed25a241809154c8d55ebc63e59efa6cb9964736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636ecd2306116100ec578063b88d4fde1161008a578063e6a7e93311610064578063e6a7e9331461057c578063e985e9c514610593578063f2fde38b146105d0578063f4a0a528146105f9576101b7565b8063b88d4fde14610507578063c87b56dd14610523578063dfb9eb5614610560576101b7565b806376c64c62116100c657806376c64c62146104715780638da5cb5b1461048857806395d89b41146104b3578063a22cb465146104de576101b7565b80636ecd23061461040157806370a082311461041d578063715018a61461045a576101b7565b806328d7b276116101595780633549345e116101335780633549345e146103685780633ccfd60b1461039157806342842e0e146103a85780636352211e146103c4576101b7565b806328d7b276146102ed57806330176e13146103165780633497d1651461033f576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461027d5780631a0ef8a9146102a857806323b872dd146102d1576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190611fa5565b610622565b6040516101f09190611fed565b60405180910390f35b34801561020557600080fd5b5061020e6106b4565b60405161021b9190612098565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906120f0565b610746565b604051610258919061215e565b60405180910390f35b61027b600480360381019061027691906121a5565b6107c5565b005b34801561028957600080fd5b50610292610909565b60405161029f91906121f4565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612248565b610920565b005b6102eb60048036038101906102e69190612275565b610946565b005b3480156102f957600080fd5b50610314600480360381019061030f91906122fe565b610c68565b005b34801561032257600080fd5b5061033d60048036038101906103389190612460565b610c7a565b005b34801561034b57600080fd5b5061036660048036038101906103619190612248565b610c95565b005b34801561037457600080fd5b5061038f600480360381019061038a91906120f0565b610d01565b005b34801561039d57600080fd5b506103a6610d13565b005b6103c260048036038101906103bd9190612275565b610d3e565b005b3480156103d057600080fd5b506103eb60048036038101906103e691906120f0565b610d5e565b6040516103f8919061215e565b60405180910390f35b61041b60048036038101906104169190612248565b610d70565b005b34801561042957600080fd5b50610444600480360381019061043f91906124a9565b610e74565b60405161045191906121f4565b60405180910390f35b34801561046657600080fd5b5061046f610f2c565b005b34801561047d57600080fd5b50610486610f40565b005b34801561049457600080fd5b5061049d610f65565b6040516104aa919061215e565b60405180910390f35b3480156104bf57600080fd5b506104c8610f8f565b6040516104d59190612098565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190612502565b611021565b005b610521600480360381019061051c91906125e3565b61112c565b005b34801561052f57600080fd5b5061054a600480360381019061054591906120f0565b61119f565b6040516105579190612098565b60405180910390f35b61057a6004803603810190610575919061272e565b61123d565b005b34801561058857600080fd5b506105916113fd565b005b34801561059f57600080fd5b506105ba60048036038101906105b5919061278a565b611422565b6040516105c79190611fed565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f291906124a9565b6114b6565b005b34801561060557600080fd5b50610620600480360381019061061b91906120f0565b611539565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106ad5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106c3906127f9565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef906127f9565b801561073c5780601f106107115761010080835404028352916020019161073c565b820191906000526020600020905b81548152906001019060200180831161071f57829003601f168201915b5050505050905090565b60006107518261154b565b610787576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107d082610d5e565b90508073ffffffffffffffffffffffffffffffffffffffff166107f16115aa565b73ffffffffffffffffffffffffffffffffffffffff16146108545761081d816108186115aa565b611422565b610853576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109136115b2565b6001546000540303905090565b6109286115b7565b80600a60026101000a81548160ff021916908360ff16021790555050565b600061095182611635565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109b8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109c484611701565b915091506109da81876109d56115aa565b611728565b610a26576109ef866109ea6115aa565b611422565b610a25576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610a8c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a99868686600161176c565b8015610aa457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b7285610b4e888887611772565b7c02000000000000000000000000000000000000000000000000000000001761179a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610bf85760006001850190506000600460008381526020019081526020016000205403610bf6576000548114610bf5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c6086868660016117c5565b505050505050565b610c706115b7565b80600e8190555050565b610c826115b7565b80600d9081610c9191906129d6565b5050565b610c9d6115b7565b609661ffff168160ff16610caf610909565b610cb99190612ad7565b1115610cf1576040517f5c9a0abb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cfe338260ff166117cb565b50565b610d096115b7565b80600b8190555050565b610d1b6115b7565b610d23611986565b610d34610d2e610f65565b476119d5565b610d3c611ac9565b565b610d598383836040518060200160405280600081525061112c565b505050565b6000610d6982611635565b9050919050565b610d78611986565b600a60019054906101000a900460ff16610dbe576040517fb35ba98d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060ff16600c54610dcf9190612b0b565b341015610e08576040517fcd1c886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b609661ffff168160ff16610e1a610909565b610e249190612ad7565b1115610e5c576040517f5c9a0abb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e69338260ff166117cb565b610e71611ac9565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610edb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f346115b7565b610f3e6000611ad3565b565b610f486115b7565b6000600a60016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f9e906127f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610fca906127f9565b80156110175780601f10610fec57610100808354040283529160200191611017565b820191906000526020600020905b815481529060010190602001808311610ffa57829003601f168201915b5050505050905090565b806007600061102e6115aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110db6115aa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111209190611fed565b60405180910390a35050565b611137848484610946565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111995761116284848484611b99565b611198576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606111aa8261154b565b6111e0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111ea611ce9565b9050600081510361120a5760405180602001604052806000815250611235565b8061121484611d7b565b604051602001611225929190612b89565b6040516020818303038152906040525b915050919050565b611245611986565b600a60009054906101000a900460ff16158061126d5750600a60019054906101000a900460ff165b156112a4576040517fd23cd50900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060ff16600b546112b59190612b0b565b3410156112ee576040517fcd1c886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061ffff168160ff16611300610909565b61130a9190612ad7565b1115611342576040517f5c9a0abb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60029054906101000a900460ff1660ff168160ff1661136233611dcb565b61136c9190612ad7565b11156113a4576040517fd900aa8a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113ae8233611e22565b6113e4576040517f5b0aa2ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113f1338260ff166117cb565b6113f9611ac9565b5050565b6114056115b7565b6000600a60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114be6115b7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490612c1f565b60405180910390fd5b61153681611ad3565b50565b6115416115b7565b80600c8190555050565b6000816115566115b2565b11158015611565575060005482105b80156115a3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6115bf611e69565b73ffffffffffffffffffffffffffffffffffffffff166115dd610f65565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90612c8b565b60405180910390fd5b565b600080829050806116446115b2565b116116ca576000548110156116c95760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036116c7575b600081036116bd576004600083600190039350838152602001908152602001600020549050611693565b80925050506116fc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611789868684611e71565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000805490506000820361180b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611818600084838561176c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061188f836118806000866000611772565b61188985611e7a565b1761179a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461193057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506118f5565b506000820361196b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061198160008483856117c5565b505050565b6002600954036119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290612cf7565b60405180910390fd5b6002600981905550565b80471015611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90612d63565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611a3e90612db4565b60006040518083038185875af1925050503d8060008114611a7b576040519150601f19603f3d011682016040523d82523d6000602084013e611a80565b606091505b5050905080611ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abb90612e3b565b60405180910390fd5b505050565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bbf6115aa565b8786866040518563ffffffff1660e01b8152600401611be19493929190612eb0565b6020604051808303816000875af1925050508015611c1d57506040513d601f19601f82011682018060405250810190611c1a9190612f11565b60015b611c96573d8060008114611c4d576040519150601f19603f3d011682016040523d82523d6000602084013e611c52565b606091505b506000815103611c8e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611cf8906127f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611d24906127f9565b8015611d715780601f10611d4657610100808354040283529160200191611d71565b820191906000526020600020905b815481529060010190602001808311611d5457829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611db657600184039350600a81066030018453600a8104905080611d94575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000611e61600e5483604051602001611e3b9190612f86565b6040516020818303038152906040528051906020012085611e8a9092919063ffffffff16565b905092915050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b600082611e978584611ea1565b1490509392505050565b60008082905060005b8451811015611eec57611ed782868381518110611eca57611ec9612fa1565b5b6020026020010151611ef7565b91508080611ee490612fd0565b915050611eaa565b508091505092915050565b6000818310611f0f57611f0a8284611f22565b611f1a565b611f198383611f22565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f8281611f4d565b8114611f8d57600080fd5b50565b600081359050611f9f81611f79565b92915050565b600060208284031215611fbb57611fba611f43565b5b6000611fc984828501611f90565b91505092915050565b60008115159050919050565b611fe781611fd2565b82525050565b60006020820190506120026000830184611fde565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612042578082015181840152602081019050612027565b60008484015250505050565b6000601f19601f8301169050919050565b600061206a82612008565b6120748185612013565b9350612084818560208601612024565b61208d8161204e565b840191505092915050565b600060208201905081810360008301526120b2818461205f565b905092915050565b6000819050919050565b6120cd816120ba565b81146120d857600080fd5b50565b6000813590506120ea816120c4565b92915050565b60006020828403121561210657612105611f43565b5b6000612114848285016120db565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121488261211d565b9050919050565b6121588161213d565b82525050565b6000602082019050612173600083018461214f565b92915050565b6121828161213d565b811461218d57600080fd5b50565b60008135905061219f81612179565b92915050565b600080604083850312156121bc576121bb611f43565b5b60006121ca85828601612190565b92505060206121db858286016120db565b9150509250929050565b6121ee816120ba565b82525050565b600060208201905061220960008301846121e5565b92915050565b600060ff82169050919050565b6122258161220f565b811461223057600080fd5b50565b6000813590506122428161221c565b92915050565b60006020828403121561225e5761225d611f43565b5b600061226c84828501612233565b91505092915050565b60008060006060848603121561228e5761228d611f43565b5b600061229c86828701612190565b93505060206122ad86828701612190565b92505060406122be868287016120db565b9150509250925092565b6000819050919050565b6122db816122c8565b81146122e657600080fd5b50565b6000813590506122f8816122d2565b92915050565b60006020828403121561231457612313611f43565b5b6000612322848285016122e9565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61236d8261204e565b810181811067ffffffffffffffff8211171561238c5761238b612335565b5b80604052505050565b600061239f611f39565b90506123ab8282612364565b919050565b600067ffffffffffffffff8211156123cb576123ca612335565b5b6123d48261204e565b9050602081019050919050565b82818337600083830152505050565b60006124036123fe846123b0565b612395565b90508281526020810184848401111561241f5761241e612330565b5b61242a8482856123e1565b509392505050565b600082601f8301126124475761244661232b565b5b81356124578482602086016123f0565b91505092915050565b60006020828403121561247657612475611f43565b5b600082013567ffffffffffffffff81111561249457612493611f48565b5b6124a084828501612432565b91505092915050565b6000602082840312156124bf576124be611f43565b5b60006124cd84828501612190565b91505092915050565b6124df81611fd2565b81146124ea57600080fd5b50565b6000813590506124fc816124d6565b92915050565b6000806040838503121561251957612518611f43565b5b600061252785828601612190565b9250506020612538858286016124ed565b9150509250929050565b600067ffffffffffffffff82111561255d5761255c612335565b5b6125668261204e565b9050602081019050919050565b600061258661258184612542565b612395565b9050828152602081018484840111156125a2576125a1612330565b5b6125ad8482856123e1565b509392505050565b600082601f8301126125ca576125c961232b565b5b81356125da848260208601612573565b91505092915050565b600080600080608085870312156125fd576125fc611f43565b5b600061260b87828801612190565b945050602061261c87828801612190565b935050604061262d878288016120db565b925050606085013567ffffffffffffffff81111561264e5761264d611f48565b5b61265a878288016125b5565b91505092959194509250565b600067ffffffffffffffff82111561268157612680612335565b5b602082029050602081019050919050565b600080fd5b60006126aa6126a584612666565b612395565b905080838252602082019050602084028301858111156126cd576126cc612692565b5b835b818110156126f657806126e288826122e9565b8452602084019350506020810190506126cf565b5050509392505050565b600082601f8301126127155761271461232b565b5b8135612725848260208601612697565b91505092915050565b6000806040838503121561274557612744611f43565b5b600083013567ffffffffffffffff81111561276357612762611f48565b5b61276f85828601612700565b925050602061278085828601612233565b9150509250929050565b600080604083850312156127a1576127a0611f43565b5b60006127af85828601612190565b92505060206127c085828601612190565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061281157607f821691505b602082108103612824576128236127ca565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261288c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261284f565b612896868361284f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006128d36128ce6128c9846120ba565b6128ae565b6120ba565b9050919050565b6000819050919050565b6128ed836128b8565b6129016128f9826128da565b84845461285c565b825550505050565b600090565b612916612909565b6129218184846128e4565b505050565b5b818110156129455761293a60008261290e565b600181019050612927565b5050565b601f82111561298a5761295b8161282a565b6129648461283f565b81016020851015612973578190505b61298761297f8561283f565b830182612926565b50505b505050565b600082821c905092915050565b60006129ad6000198460080261298f565b1980831691505092915050565b60006129c6838361299c565b9150826002028217905092915050565b6129df82612008565b67ffffffffffffffff8111156129f8576129f7612335565b5b612a0282546127f9565b612a0d828285612949565b600060209050601f831160018114612a405760008415612a2e578287015190505b612a3885826129ba565b865550612aa0565b601f198416612a4e8661282a565b60005b82811015612a7657848901518255600182019150602085019450602081019050612a51565b86831015612a935784890151612a8f601f89168261299c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ae2826120ba565b9150612aed836120ba565b9250828201905080821115612b0557612b04612aa8565b5b92915050565b6000612b16826120ba565b9150612b21836120ba565b9250828202612b2f816120ba565b91508282048414831517612b4657612b45612aa8565b5b5092915050565b600081905092915050565b6000612b6382612008565b612b6d8185612b4d565b9350612b7d818560208601612024565b80840191505092915050565b6000612b958285612b58565b9150612ba18284612b58565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c09602683612013565b9150612c1482612bad565b604082019050919050565b60006020820190508181036000830152612c3881612bfc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c75602083612013565b9150612c8082612c3f565b602082019050919050565b60006020820190508181036000830152612ca481612c68565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612ce1601f83612013565b9150612cec82612cab565b602082019050919050565b60006020820190508181036000830152612d1081612cd4565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000612d4d601d83612013565b9150612d5882612d17565b602082019050919050565b60006020820190508181036000830152612d7c81612d40565b9050919050565b600081905092915050565b50565b6000612d9e600083612d83565b9150612da982612d8e565b600082019050919050565b6000612dbf82612d91565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000612e25603a83612013565b9150612e3082612dc9565b604082019050919050565b60006020820190508181036000830152612e5481612e18565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612e8282612e5b565b612e8c8185612e66565b9350612e9c818560208601612024565b612ea58161204e565b840191505092915050565b6000608082019050612ec5600083018761214f565b612ed2602083018661214f565b612edf60408301856121e5565b8181036060830152612ef18184612e77565b905095945050505050565b600081519050612f0b81611f79565b92915050565b600060208284031215612f2757612f26611f43565b5b6000612f3584828501612efc565b91505092915050565b60008160601b9050919050565b6000612f5682612f3e565b9050919050565b6000612f6882612f4b565b9050919050565b612f80612f7b8261213d565b612f5d565b82525050565b6000612f928284612f6f565b60148201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612fdb826120ba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361300d5761300c612aa8565b5b60018201905091905056fea26469706673582212207f3a1c8bb0346888ded2fa973dd36ed25a241809154c8d55ebc63e59efa6cb9964736f6c63430008120033

Deployed Bytecode Sourcemap

78075:3375:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44787:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45689:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52180:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51613:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41440:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81005:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55819:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81339:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80667:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79047:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81133:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80375:129;;;;;;;;;;;;;:::i;:::-;;58740:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47082:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79813:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42624:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25566:103;;;;;;;;;;;;;:::i;:::-;;80907:90;;;;;;;;;;;;;:::i;:::-;;24925:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45865:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52738:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59531:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46075:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79269:504;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80807:92;;;;;;;;;;;;;:::i;:::-;;53129:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25824:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81239:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44787:639;44872:4;45211:10;45196:25;;:11;:25;;;;:102;;;;45288:10;45273:25;;:11;:25;;;;45196:102;:179;;;;45365:10;45350:25;;:11;:25;;;;45196:179;45176:199;;44787:639;;;:::o;45689:100::-;45743:13;45776:5;45769:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45689:100;:::o;52180:218::-;52256:7;52281:16;52289:7;52281;:16::i;:::-;52276:64;;52306:34;;;;;;;;;;;;;;52276:64;52360:15;:24;52376:7;52360:24;;;;;;;;;;;:30;;;;;;;;;;;;52353:37;;52180:218;;;:::o;51613:408::-;51702:13;51718:16;51726:7;51718;:16::i;:::-;51702:32;;51774:5;51751:28;;:19;:17;:19::i;:::-;:28;;;51747:175;;51799:44;51816:5;51823:19;:17;:19::i;:::-;51799:16;:44::i;:::-;51794:128;;51871:35;;;;;;;;;;;;;;51794:128;51747:175;51967:2;51934:15;:24;51950:7;51934:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;52005:7;52001:2;51985:28;;51994:5;51985:28;;;;;;;;;;;;51691:330;51613:408;;:::o;41440:323::-;41501:7;41729:15;:13;:15::i;:::-;41714:12;;41698:13;;:28;:46;41691:53;;41440:323;:::o;81005:120::-;24811:13;:11;:13::i;:::-;81112:5:::1;81085:24;;:32;;;;;;;;;;;;;;;;;;81005:120:::0;:::o;55819:2825::-;55961:27;55991;56010:7;55991:18;:27::i;:::-;55961:57;;56076:4;56035:45;;56051:19;56035:45;;;56031:86;;56089:28;;;;;;;;;;;;;;56031:86;56131:27;56160:23;56187:35;56214:7;56187:26;:35::i;:::-;56130:92;;;;56322:68;56347:15;56364:4;56370:19;:17;:19::i;:::-;56322:24;:68::i;:::-;56317:180;;56410:43;56427:4;56433:19;:17;:19::i;:::-;56410:16;:43::i;:::-;56405:92;;56462:35;;;;;;;;;;;;;;56405:92;56317:180;56528:1;56514:16;;:2;:16;;;56510:52;;56539:23;;;;;;;;;;;;;;56510:52;56575:43;56597:4;56603:2;56607:7;56616:1;56575:21;:43::i;:::-;56711:15;56708:160;;;56851:1;56830:19;56823:30;56708:160;57248:18;:24;57267:4;57248:24;;;;;;;;;;;;;;;;57246:26;;;;;;;;;;;;57317:18;:22;57336:2;57317:22;;;;;;;;;;;;;;;;57315:24;;;;;;;;;;;57639:146;57676:2;57725:45;57740:4;57746:2;57750:19;57725:14;:45::i;:::-;37839:8;57697:73;57639:18;:146::i;:::-;57610:17;:26;57628:7;57610:26;;;;;;;;;;;:175;;;;57956:1;37839:8;57905:19;:47;:52;57901:627;;57978:19;58010:1;58000:7;:11;57978:33;;58167:1;58133:17;:30;58151:11;58133:30;;;;;;;;;;;;:35;58129:384;;58271:13;;58256:11;:28;58252:242;;58451:19;58418:17;:30;58436:11;58418:30;;;;;;;;;;;:52;;;;58252:242;58129:384;57959:569;57901:627;58575:7;58571:2;58556:27;;58565:4;58556:27;;;;;;;;;;;;58594:42;58615:4;58621:2;58625:7;58634:1;58594:20;:42::i;:::-;55950:2694;;;55819:2825;;;:::o;81339:108::-;24811:13;:11;:13::i;:::-;81434:5:::1;81414:17;:25;;;;81339:108:::0;:::o;80667:104::-;24811:13;:11;:13::i;:::-;80758:5:::1;80743:12;:20;;;;;;:::i;:::-;;80667:104:::0;:::o;79047:181::-;24811:13;:11;:13::i;:::-;78235:3:::1;79113:36;;79129:8;79113:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;79110:62;;;79158:14;;;;;;;;;;;;;;79110:62;79185:27;79191:10;79203:8;79185:27;;:5;:27::i;:::-;79047:181:::0;:::o;81133:98::-;24811:13;:11;:13::i;:::-;81218:5:::1;81203:12;:20;;;;81133:98:::0;:::o;80375:129::-;24811:13;:11;:13::i;:::-;12269:21:::1;:19;:21::i;:::-;80438:58:::2;80464:7;:5;:7::i;:::-;80474:21;80438:17;:58::i;:::-;12313:20:::1;:18;:20::i;:::-;80375:129::o:0;58740:193::-;58886:39;58903:4;58909:2;58913:7;58886:39;;;;;;;;;;;;:16;:39::i;:::-;58740:193;;;:::o;47082:152::-;47154:7;47197:27;47216:7;47197:18;:27::i;:::-;47174:52;;47082:152;;;:::o;79813:287::-;12269:21;:19;:21::i;:::-;78942:17:::1;;;;;;;;;;;78937:53;;78968:22;;;;;;;;;;;;;;78937:53;79926:8:::2;79914:20;;:9;;:20;;;;:::i;:::-;79902:9;:32;79899:65;;;79943:21;;;;;;;;;;;;;;79899:65;78320:3;79978:43;;79994:8;79978:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:43;79975:69;;;80030:14;;;;;;;;;;;;;;79975:69;80057:27;80063:10;80075:8;80057:27;;:5;:27::i;:::-;12313:20:::0;:18;:20::i;:::-;79813:287;:::o;42624:233::-;42696:7;42737:1;42720:19;;:5;:19;;;42716:60;;42748:28;;;;;;;;;;;;;;42716:60;36783:13;42794:18;:25;42813:5;42794:25;;;;;;;;;;;;;;;;:55;42787:62;;42624:233;;;:::o;25566:103::-;24811:13;:11;:13::i;:::-;25631:30:::1;25658:1;25631:18;:30::i;:::-;25566:103::o:0;80907:90::-;24811:13;:11;:13::i;:::-;80984:5:::1;80964:17;;:25;;;;;;;;;;;;;;;;;;80907:90::o:0;24925:87::-;24971:7;24998:6;;;;;;;;;;;24991:13;;24925:87;:::o;45865:104::-;45921:13;45954:7;45947:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45865:104;:::o;52738:234::-;52885:8;52833:18;:39;52852:19;:17;:19::i;:::-;52833:39;;;;;;;;;;;;;;;:49;52873:8;52833:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;52945:8;52909:55;;52924:19;:17;:19::i;:::-;52909:55;;;52955:8;52909:55;;;;;;:::i;:::-;;;;;;;;52738:234;;:::o;59531:407::-;59706:31;59719:4;59725:2;59729:7;59706:12;:31::i;:::-;59770:1;59752:2;:14;;;:19;59748:183;;59791:56;59822:4;59828:2;59832:7;59841:5;59791:30;:56::i;:::-;59786:145;;59875:40;;;;;;;;;;;;;;59786:145;59748:183;59531:407;;;;:::o;46075:318::-;46148:13;46179:16;46187:7;46179;:16::i;:::-;46174:59;;46204:29;;;;;;;;;;;;;;46174:59;46246:21;46270:10;:8;:10::i;:::-;46246:34;;46323:1;46304:7;46298:21;:26;:87;;;;;;;;;;;;;;;;;46351:7;46360:18;46370:7;46360:9;:18::i;:::-;46334:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46298:87;46291:94;;;46075:318;;;:::o;79269:504::-;12269:21;:19;:21::i;:::-;78801:18:::1;;;;;;;;;;;78800:19;:40;;;;78823:17;;;;;;;;;;;78800:40;78796:76;;;78849:23;;;;;;;;;;;;;;78796:76;79417:8:::2;79402:23;;:12;;:23;;;;:::i;:::-;79390:9;:35;79387:68;;;79434:21;;;;;;;;;;;;;;79387:68;78277:1;79469:40;;79485:8;79469:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;79466:66;;;79518:14;;;;;;;;;;;;;;79466:66;79585:24;;;;;;;;;;;79546:63;;79574:8;79546:36;;:25;79560:10;79546:13;:25::i;:::-;:36;;;;:::i;:::-;:63;79543:95;;;79618:20;;;;;;;;;;;;;;79543:95;79653:39;79674:5;79681:10;79653:20;:39::i;:::-;79649:68;;79701:16;;;;;;;;;;;;;;79649:68;79730:27;79736:10;79748:8;79730:27;;:5;:27::i;:::-;12313:20:::0;:18;:20::i;:::-;79269:504;;:::o;80807:92::-;24811:13;:11;:13::i;:::-;80886:5:::1;80865:18;;:26;;;;;;;;;;;;;;;;;;80807:92::o:0;53129:164::-;53226:4;53250:18;:25;53269:5;53250:25;;;;;;;;;;;;;;;:35;53276:8;53250:35;;;;;;;;;;;;;;;;;;;;;;;;;53243:42;;53129:164;;;;:::o;25824:201::-;24811:13;:11;:13::i;:::-;25933:1:::1;25913:22;;:8;:22;;::::0;25905:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;25989:28;26008:8;25989:18;:28::i;:::-;25824:201:::0;:::o;81239:92::-;24811:13;:11;:13::i;:::-;81318:5:::1;81306:9;:17;;;;81239:92:::0;:::o;53551:282::-;53616:4;53672:7;53653:15;:13;:15::i;:::-;:26;;:66;;;;;53706:13;;53696:7;:23;53653:66;:153;;;;;53805:1;37559:8;53757:17;:26;53775:7;53757:26;;;;;;;;;;;;:44;:49;53653:153;53633:173;;53551:282;;;:::o;75859:105::-;75919:7;75946:10;75939:17;;75859:105;:::o;40956:92::-;41012:7;40956:92;:::o;25090:132::-;25165:12;:10;:12::i;:::-;25154:23;;:7;:5;:7::i;:::-;:23;;;25146:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25090:132::o;48237:1275::-;48304:7;48324:12;48339:7;48324:22;;48407:4;48388:15;:13;:15::i;:::-;:23;48384:1061;;48441:13;;48434:4;:20;48430:1015;;;48479:14;48496:17;:23;48514:4;48496:23;;;;;;;;;;;;48479:40;;48613:1;37559:8;48585:6;:24;:29;48581:845;;49250:113;49267:1;49257:6;:11;49250:113;;49310:17;:25;49328:6;;;;;;;49310:25;;;;;;;;;;;;49301:34;;49250:113;;;49396:6;49389:13;;;;;;48581:845;48456:989;48430:1015;48384:1061;49473:31;;;;;;;;;;;;;;48237:1275;;;;:::o;54714:485::-;54816:27;54845:23;54886:38;54927:15;:24;54943:7;54927:24;;;;;;;;;;;54886:65;;55104:18;55081:41;;55161:19;55155:26;55136:45;;55066:126;54714:485;;;:::o;53942:659::-;54091:11;54256:16;54249:5;54245:28;54236:37;;54416:16;54405:9;54401:32;54388:45;;54566:15;54555:9;54552:30;54544:5;54533:9;54530:20;54527:56;54517:66;;53942:659;;;;;:::o;60600:159::-;;;;;:::o;75168:311::-;75303:7;75323:16;37963:3;75349:19;:41;;75323:68;;37963:3;75417:31;75428:4;75434:2;75438:9;75417:10;:31::i;:::-;75409:40;;:62;;75402:69;;;75168:311;;;;;:::o;50060:450::-;50140:14;50308:16;50301:5;50297:28;50288:37;;50485:5;50471:11;50446:23;50442:41;50439:52;50432:5;50429:63;50419:73;;50060:450;;;;:::o;61424:158::-;;;;;:::o;63200:2966::-;63273:20;63296:13;;63273:36;;63336:1;63324:8;:13;63320:44;;63346:18;;;;;;;;;;;;;;63320:44;63377:61;63407:1;63411:2;63415:12;63429:8;63377:21;:61::i;:::-;63921:1;36921:2;63891:1;:26;;63890:32;63878:8;:45;63852:18;:22;63871:2;63852:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;64200:139;64237:2;64291:33;64314:1;64318:2;64322:1;64291:14;:33::i;:::-;64258:30;64279:8;64258:20;:30::i;:::-;:66;64200:18;:139::i;:::-;64166:17;:31;64184:12;64166:31;;;;;;;;;;;:173;;;;64356:16;64387:11;64416:8;64401:12;:23;64387:37;;64937:16;64933:2;64929:25;64917:37;;65309:12;65269:8;65228:1;65166:25;65107:1;65046;65019:335;65680:1;65666:12;65662:20;65620:346;65721:3;65712:7;65709:16;65620:346;;65939:7;65929:8;65926:1;65899:25;65896:1;65893;65888:59;65774:1;65765:7;65761:15;65750:26;;65620:346;;;65624:77;66011:1;65999:8;:13;65995:45;;66021:19;;;;;;;;;;;;;;65995:45;66073:3;66057:13;:19;;;;63626:2462;;66098:60;66127:1;66131:2;66135:12;66149:8;66098:20;:60::i;:::-;63262:2904;63200:2966;;:::o;12349:293::-;11751:1;12483:7;;:19;12475:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;11751:1;12616:7;:18;;;;12349:293::o;15897:317::-;16012:6;15987:21;:31;;15979:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16066:12;16084:9;:14;;16106:6;16084:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16065:52;;;16136:7;16128:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;15968:246;15897:317;;:::o;12650:213::-;11707:1;12833:7;:22;;;;12650:213::o;26185:191::-;26259:16;26278:6;;;;;;;;;;;26259:25;;26304:8;26295:6;;:17;;;;;;;;;;;;;;;;;;26359:8;26328:40;;26349:8;26328:40;;;;;;;;;;;;26248:128;26185:191;:::o;62022:716::-;62185:4;62231:2;62206:45;;;62252:19;:17;:19::i;:::-;62273:4;62279:7;62288:5;62206:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;62202:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62506:1;62489:6;:13;:18;62485:235;;62535:40;;;;;;;;;;;;;;62485:235;62678:6;62672:13;62663:6;62659:2;62655:15;62648:38;62202:529;62375:54;;;62365:64;;;:6;:64;;;;62358:71;;;62022:716;;;;;;:::o;80545:114::-;80606:13;80639:12;80632:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80545:114;:::o;76066:1745::-;76131:17;76565:4;76558;76552:11;76548:22;76657:1;76651:4;76644:15;76732:4;76729:1;76725:12;76718:19;;76814:1;76809:3;76802:14;76918:3;77157:5;77139:428;77165:1;77139:428;;;77205:1;77200:3;77196:11;77189:18;;77376:2;77370:4;77366:13;77362:2;77358:22;77353:3;77345:36;77470:2;77464:4;77460:13;77452:21;;77537:4;77139:428;77527:25;77139:428;77143:21;77606:3;77601;77597:13;77721:4;77716:3;77712:14;77705:21;;77786:6;77781:3;77774:19;76170:1634;;;76066:1745;;;:::o;42939:178::-;43000:7;36783:13;36921:2;43028:18;:25;43047:5;43028:25;;;;;;;;;;;;;;;;:50;;43027:82;43020:89;;42939:178;;;:::o;80141:197::-;80236:4;80260:70;80273:17;;80319:8;80302:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;80292:37;;;;;;80260:5;:12;;:70;;;;;:::i;:::-;80253:77;;80141:197;;;;:::o;23476:98::-;23529:7;23556:10;23549:17;;23476:98;:::o;74869:147::-;75006:6;74869:147;;;;;:::o;50612:324::-;50682:14;50915:1;50905:8;50902:15;50876:24;50872:46;50862:56;;50612:324;;;:::o;1255:156::-;1346:4;1399;1370:25;1383:5;1390:4;1370:12;:25::i;:::-;:33;1363:40;;1255:156;;;;;:::o;2054:296::-;2137:7;2157:20;2180:4;2157:27;;2200:9;2195:118;2219:5;:12;2215:1;:16;2195:118;;;2268:33;2278:12;2292:5;2298:1;2292:8;;;;;;;;:::i;:::-;;;;;;;;2268:9;:33::i;:::-;2253:48;;2233:3;;;;;:::i;:::-;;;;2195:118;;;;2330:12;2323:19;;;2054:296;;;;:::o;9492:149::-;9555:7;9586:1;9582;:5;:51;;9613:20;9628:1;9631;9613:14;:20::i;:::-;9582:51;;;9590:20;9605:1;9608;9590:14;:20::i;:::-;9582:51;9575:58;;9492:149;;;;:::o;9649:268::-;9717:13;9824:1;9818:4;9811:15;9853:1;9847:4;9840:15;9894:4;9888;9878:21;9869:30;;9649:268;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:86::-;5277:7;5317:4;5310:5;5306:16;5295:27;;5242:86;;;:::o;5334:118::-;5405:22;5421:5;5405:22;:::i;:::-;5398:5;5395:33;5385:61;;5442:1;5439;5432:12;5385:61;5334:118;:::o;5458:135::-;5502:5;5540:6;5527:20;5518:29;;5556:31;5581:5;5556:31;:::i;:::-;5458:135;;;;:::o;5599:325::-;5656:6;5705:2;5693:9;5684:7;5680:23;5676:32;5673:119;;;5711:79;;:::i;:::-;5673:119;5831:1;5856:51;5899:7;5890:6;5879:9;5875:22;5856:51;:::i;:::-;5846:61;;5802:115;5599:325;;;;:::o;5930:619::-;6007:6;6015;6023;6072:2;6060:9;6051:7;6047:23;6043:32;6040:119;;;6078:79;;:::i;:::-;6040:119;6198:1;6223:53;6268:7;6259:6;6248:9;6244:22;6223:53;:::i;:::-;6213:63;;6169:117;6325:2;6351:53;6396:7;6387:6;6376:9;6372:22;6351:53;:::i;:::-;6341:63;;6296:118;6453:2;6479:53;6524:7;6515:6;6504:9;6500:22;6479:53;:::i;:::-;6469:63;;6424:118;5930:619;;;;;:::o;6555:77::-;6592:7;6621:5;6610:16;;6555:77;;;:::o;6638:122::-;6711:24;6729:5;6711:24;:::i;:::-;6704:5;6701:35;6691:63;;6750:1;6747;6740:12;6691:63;6638:122;:::o;6766:139::-;6812:5;6850:6;6837:20;6828:29;;6866:33;6893:5;6866:33;:::i;:::-;6766:139;;;;:::o;6911:329::-;6970:6;7019:2;7007:9;6998:7;6994:23;6990:32;6987:119;;;7025:79;;:::i;:::-;6987:119;7145:1;7170:53;7215:7;7206:6;7195:9;7191:22;7170:53;:::i;:::-;7160:63;;7116:117;6911:329;;;;:::o;7246:117::-;7355:1;7352;7345:12;7369:117;7478:1;7475;7468:12;7492:180;7540:77;7537:1;7530:88;7637:4;7634:1;7627:15;7661:4;7658:1;7651:15;7678:281;7761:27;7783:4;7761:27;:::i;:::-;7753:6;7749:40;7891:6;7879:10;7876:22;7855:18;7843:10;7840:34;7837:62;7834:88;;;7902:18;;:::i;:::-;7834:88;7942:10;7938:2;7931:22;7721:238;7678:281;;:::o;7965:129::-;7999:6;8026:20;;:::i;:::-;8016:30;;8055:33;8083:4;8075:6;8055:33;:::i;:::-;7965:129;;;:::o;8100:308::-;8162:4;8252:18;8244:6;8241:30;8238:56;;;8274:18;;:::i;:::-;8238:56;8312:29;8334:6;8312:29;:::i;:::-;8304:37;;8396:4;8390;8386:15;8378:23;;8100:308;;;:::o;8414:146::-;8511:6;8506:3;8501;8488:30;8552:1;8543:6;8538:3;8534:16;8527:27;8414:146;;;:::o;8566:425::-;8644:5;8669:66;8685:49;8727:6;8685:49;:::i;:::-;8669:66;:::i;:::-;8660:75;;8758:6;8751:5;8744:21;8796:4;8789:5;8785:16;8834:3;8825:6;8820:3;8816:16;8813:25;8810:112;;;8841:79;;:::i;:::-;8810:112;8931:54;8978:6;8973:3;8968;8931:54;:::i;:::-;8650:341;8566:425;;;;;:::o;9011:340::-;9067:5;9116:3;9109:4;9101:6;9097:17;9093:27;9083:122;;9124:79;;:::i;:::-;9083:122;9241:6;9228:20;9266:79;9341:3;9333:6;9326:4;9318:6;9314:17;9266:79;:::i;:::-;9257:88;;9073:278;9011:340;;;;:::o;9357:509::-;9426:6;9475:2;9463:9;9454:7;9450:23;9446:32;9443:119;;;9481:79;;:::i;:::-;9443:119;9629:1;9618:9;9614:17;9601:31;9659:18;9651:6;9648:30;9645:117;;;9681:79;;:::i;:::-;9645:117;9786:63;9841:7;9832:6;9821:9;9817:22;9786:63;:::i;:::-;9776:73;;9572:287;9357:509;;;;:::o;9872:329::-;9931:6;9980:2;9968:9;9959:7;9955:23;9951:32;9948:119;;;9986:79;;:::i;:::-;9948:119;10106:1;10131:53;10176:7;10167:6;10156:9;10152:22;10131:53;:::i;:::-;10121:63;;10077:117;9872:329;;;;:::o;10207:116::-;10277:21;10292:5;10277:21;:::i;:::-;10270:5;10267:32;10257:60;;10313:1;10310;10303:12;10257:60;10207:116;:::o;10329:133::-;10372:5;10410:6;10397:20;10388:29;;10426:30;10450:5;10426:30;:::i;:::-;10329:133;;;;:::o;10468:468::-;10533:6;10541;10590:2;10578:9;10569:7;10565:23;10561:32;10558:119;;;10596:79;;:::i;:::-;10558:119;10716:1;10741:53;10786:7;10777:6;10766:9;10762:22;10741:53;:::i;:::-;10731:63;;10687:117;10843:2;10869:50;10911:7;10902:6;10891:9;10887:22;10869:50;:::i;:::-;10859:60;;10814:115;10468:468;;;;;:::o;10942:307::-;11003:4;11093:18;11085:6;11082:30;11079:56;;;11115:18;;:::i;:::-;11079:56;11153:29;11175:6;11153:29;:::i;:::-;11145:37;;11237:4;11231;11227:15;11219:23;;10942:307;;;:::o;11255:423::-;11332:5;11357:65;11373:48;11414:6;11373:48;:::i;:::-;11357:65;:::i;:::-;11348:74;;11445:6;11438:5;11431:21;11483:4;11476:5;11472:16;11521:3;11512:6;11507:3;11503:16;11500:25;11497:112;;;11528:79;;:::i;:::-;11497:112;11618:54;11665:6;11660:3;11655;11618:54;:::i;:::-;11338:340;11255:423;;;;;:::o;11697:338::-;11752:5;11801:3;11794:4;11786:6;11782:17;11778:27;11768:122;;11809:79;;:::i;:::-;11768:122;11926:6;11913:20;11951:78;12025:3;12017:6;12010:4;12002:6;11998:17;11951:78;:::i;:::-;11942:87;;11758:277;11697:338;;;;:::o;12041:943::-;12136:6;12144;12152;12160;12209:3;12197:9;12188:7;12184:23;12180:33;12177:120;;;12216:79;;:::i;:::-;12177:120;12336:1;12361:53;12406:7;12397:6;12386:9;12382:22;12361:53;:::i;:::-;12351:63;;12307:117;12463:2;12489:53;12534:7;12525:6;12514:9;12510:22;12489:53;:::i;:::-;12479:63;;12434:118;12591:2;12617:53;12662:7;12653:6;12642:9;12638:22;12617:53;:::i;:::-;12607:63;;12562:118;12747:2;12736:9;12732:18;12719:32;12778:18;12770:6;12767:30;12764:117;;;12800:79;;:::i;:::-;12764:117;12905:62;12959:7;12950:6;12939:9;12935:22;12905:62;:::i;:::-;12895:72;;12690:287;12041:943;;;;;;;:::o;12990:311::-;13067:4;13157:18;13149:6;13146:30;13143:56;;;13179:18;;:::i;:::-;13143:56;13229:4;13221:6;13217:17;13209:25;;13289:4;13283;13279:15;13271:23;;12990:311;;;:::o;13307:117::-;13416:1;13413;13406:12;13447:710;13543:5;13568:81;13584:64;13641:6;13584:64;:::i;:::-;13568:81;:::i;:::-;13559:90;;13669:5;13698:6;13691:5;13684:21;13732:4;13725:5;13721:16;13714:23;;13785:4;13777:6;13773:17;13765:6;13761:30;13814:3;13806:6;13803:15;13800:122;;;13833:79;;:::i;:::-;13800:122;13948:6;13931:220;13965:6;13960:3;13957:15;13931:220;;;14040:3;14069:37;14102:3;14090:10;14069:37;:::i;:::-;14064:3;14057:50;14136:4;14131:3;14127:14;14120:21;;14007:144;13991:4;13986:3;13982:14;13975:21;;13931:220;;;13935:21;13549:608;;13447:710;;;;;:::o;14180:370::-;14251:5;14300:3;14293:4;14285:6;14281:17;14277:27;14267:122;;14308:79;;:::i;:::-;14267:122;14425:6;14412:20;14450:94;14540:3;14532:6;14525:4;14517:6;14513:17;14450:94;:::i;:::-;14441:103;;14257:293;14180:370;;;;:::o;14556:680::-;14647:6;14655;14704:2;14692:9;14683:7;14679:23;14675:32;14672:119;;;14710:79;;:::i;:::-;14672:119;14858:1;14847:9;14843:17;14830:31;14888:18;14880:6;14877:30;14874:117;;;14910:79;;:::i;:::-;14874:117;15015:78;15085:7;15076:6;15065:9;15061:22;15015:78;:::i;:::-;15005:88;;14801:302;15142:2;15168:51;15211:7;15202:6;15191:9;15187:22;15168:51;:::i;:::-;15158:61;;15113:116;14556:680;;;;;:::o;15242:474::-;15310:6;15318;15367:2;15355:9;15346:7;15342:23;15338:32;15335:119;;;15373:79;;:::i;:::-;15335:119;15493:1;15518:53;15563:7;15554:6;15543:9;15539:22;15518:53;:::i;:::-;15508:63;;15464:117;15620:2;15646:53;15691:7;15682:6;15671:9;15667:22;15646:53;:::i;:::-;15636:63;;15591:118;15242:474;;;;;:::o;15722:180::-;15770:77;15767:1;15760:88;15867:4;15864:1;15857:15;15891:4;15888:1;15881:15;15908:320;15952:6;15989:1;15983:4;15979:12;15969:22;;16036:1;16030:4;16026:12;16057:18;16047:81;;16113:4;16105:6;16101:17;16091:27;;16047:81;16175:2;16167:6;16164:14;16144:18;16141:38;16138:84;;16194:18;;:::i;:::-;16138:84;15959:269;15908:320;;;:::o;16234:141::-;16283:4;16306:3;16298:11;;16329:3;16326:1;16319:14;16363:4;16360:1;16350:18;16342:26;;16234:141;;;:::o;16381:93::-;16418:6;16465:2;16460;16453:5;16449:14;16445:23;16435:33;;16381:93;;;:::o;16480:107::-;16524:8;16574:5;16568:4;16564:16;16543:37;;16480:107;;;;:::o;16593:393::-;16662:6;16712:1;16700:10;16696:18;16735:97;16765:66;16754:9;16735:97;:::i;:::-;16853:39;16883:8;16872:9;16853:39;:::i;:::-;16841:51;;16925:4;16921:9;16914:5;16910:21;16901:30;;16974:4;16964:8;16960:19;16953:5;16950:30;16940:40;;16669:317;;16593:393;;;;;:::o;16992:60::-;17020:3;17041:5;17034:12;;16992:60;;;:::o;17058:142::-;17108:9;17141:53;17159:34;17168:24;17186:5;17168:24;:::i;:::-;17159:34;:::i;:::-;17141:53;:::i;:::-;17128:66;;17058:142;;;:::o;17206:75::-;17249:3;17270:5;17263:12;;17206:75;;;:::o;17287:269::-;17397:39;17428:7;17397:39;:::i;:::-;17458:91;17507:41;17531:16;17507:41;:::i;:::-;17499:6;17492:4;17486:11;17458:91;:::i;:::-;17452:4;17445:105;17363:193;17287:269;;;:::o;17562:73::-;17607:3;17562:73;:::o;17641:189::-;17718:32;;:::i;:::-;17759:65;17817:6;17809;17803:4;17759:65;:::i;:::-;17694:136;17641:189;;:::o;17836:186::-;17896:120;17913:3;17906:5;17903:14;17896:120;;;17967:39;18004:1;17997:5;17967:39;:::i;:::-;17940:1;17933:5;17929:13;17920:22;;17896:120;;;17836:186;;:::o;18028:543::-;18129:2;18124:3;18121:11;18118:446;;;18163:38;18195:5;18163:38;:::i;:::-;18247:29;18265:10;18247:29;:::i;:::-;18237:8;18233:44;18430:2;18418:10;18415:18;18412:49;;;18451:8;18436:23;;18412:49;18474:80;18530:22;18548:3;18530:22;:::i;:::-;18520:8;18516:37;18503:11;18474:80;:::i;:::-;18133:431;;18118:446;18028:543;;;:::o;18577:117::-;18631:8;18681:5;18675:4;18671:16;18650:37;;18577:117;;;;:::o;18700:169::-;18744:6;18777:51;18825:1;18821:6;18813:5;18810:1;18806:13;18777:51;:::i;:::-;18773:56;18858:4;18852;18848:15;18838:25;;18751:118;18700:169;;;;:::o;18874:295::-;18950:4;19096:29;19121:3;19115:4;19096:29;:::i;:::-;19088:37;;19158:3;19155:1;19151:11;19145:4;19142:21;19134:29;;18874:295;;;;:::o;19174:1395::-;19291:37;19324:3;19291:37;:::i;:::-;19393:18;19385:6;19382:30;19379:56;;;19415:18;;:::i;:::-;19379:56;19459:38;19491:4;19485:11;19459:38;:::i;:::-;19544:67;19604:6;19596;19590:4;19544:67;:::i;:::-;19638:1;19662:4;19649:17;;19694:2;19686:6;19683:14;19711:1;19706:618;;;;20368:1;20385:6;20382:77;;;20434:9;20429:3;20425:19;20419:26;20410:35;;20382:77;20485:67;20545:6;20538:5;20485:67;:::i;:::-;20479:4;20472:81;20341:222;19676:887;;19706:618;19758:4;19754:9;19746:6;19742:22;19792:37;19824:4;19792:37;:::i;:::-;19851:1;19865:208;19879:7;19876:1;19873:14;19865:208;;;19958:9;19953:3;19949:19;19943:26;19935:6;19928:42;20009:1;20001:6;19997:14;19987:24;;20056:2;20045:9;20041:18;20028:31;;19902:4;19899:1;19895:12;19890:17;;19865:208;;;20101:6;20092:7;20089:19;20086:179;;;20159:9;20154:3;20150:19;20144:26;20202:48;20244:4;20236:6;20232:17;20221:9;20202:48;:::i;:::-;20194:6;20187:64;20109:156;20086:179;20311:1;20307;20299:6;20295:14;20291:22;20285:4;20278:36;19713:611;;;19676:887;;19266:1303;;;19174:1395;;:::o;20575:180::-;20623:77;20620:1;20613:88;20720:4;20717:1;20710:15;20744:4;20741:1;20734:15;20761:191;20801:3;20820:20;20838:1;20820:20;:::i;:::-;20815:25;;20854:20;20872:1;20854:20;:::i;:::-;20849:25;;20897:1;20894;20890:9;20883:16;;20918:3;20915:1;20912:10;20909:36;;;20925:18;;:::i;:::-;20909:36;20761:191;;;;:::o;20958:410::-;20998:7;21021:20;21039:1;21021:20;:::i;:::-;21016:25;;21055:20;21073:1;21055:20;:::i;:::-;21050:25;;21110:1;21107;21103:9;21132:30;21150:11;21132:30;:::i;:::-;21121:41;;21311:1;21302:7;21298:15;21295:1;21292:22;21272:1;21265:9;21245:83;21222:139;;21341:18;;:::i;:::-;21222:139;21006:362;20958:410;;;;:::o;21374:148::-;21476:11;21513:3;21498:18;;21374:148;;;;:::o;21528:390::-;21634:3;21662:39;21695:5;21662:39;:::i;:::-;21717:89;21799:6;21794:3;21717:89;:::i;:::-;21710:96;;21815:65;21873:6;21868:3;21861:4;21854:5;21850:16;21815:65;:::i;:::-;21905:6;21900:3;21896:16;21889:23;;21638:280;21528:390;;;;:::o;21924:435::-;22104:3;22126:95;22217:3;22208:6;22126:95;:::i;:::-;22119:102;;22238:95;22329:3;22320:6;22238:95;:::i;:::-;22231:102;;22350:3;22343:10;;21924:435;;;;;:::o;22365:225::-;22505:34;22501:1;22493:6;22489:14;22482:58;22574:8;22569:2;22561:6;22557:15;22550:33;22365:225;:::o;22596:366::-;22738:3;22759:67;22823:2;22818:3;22759:67;:::i;:::-;22752:74;;22835:93;22924:3;22835:93;:::i;:::-;22953:2;22948:3;22944:12;22937:19;;22596:366;;;:::o;22968:419::-;23134:4;23172:2;23161:9;23157:18;23149:26;;23221:9;23215:4;23211:20;23207:1;23196:9;23192:17;23185:47;23249:131;23375:4;23249:131;:::i;:::-;23241:139;;22968:419;;;:::o;23393:182::-;23533:34;23529:1;23521:6;23517:14;23510:58;23393:182;:::o;23581:366::-;23723:3;23744:67;23808:2;23803:3;23744:67;:::i;:::-;23737:74;;23820:93;23909:3;23820:93;:::i;:::-;23938:2;23933:3;23929:12;23922:19;;23581:366;;;:::o;23953:419::-;24119:4;24157:2;24146:9;24142:18;24134:26;;24206:9;24200:4;24196:20;24192:1;24181:9;24177:17;24170:47;24234:131;24360:4;24234:131;:::i;:::-;24226:139;;23953:419;;;:::o;24378:181::-;24518:33;24514:1;24506:6;24502:14;24495:57;24378:181;:::o;24565:366::-;24707:3;24728:67;24792:2;24787:3;24728:67;:::i;:::-;24721:74;;24804:93;24893:3;24804:93;:::i;:::-;24922:2;24917:3;24913:12;24906:19;;24565:366;;;:::o;24937:419::-;25103:4;25141:2;25130:9;25126:18;25118:26;;25190:9;25184:4;25180:20;25176:1;25165:9;25161:17;25154:47;25218:131;25344:4;25218:131;:::i;:::-;25210:139;;24937:419;;;:::o;25362:179::-;25502:31;25498:1;25490:6;25486:14;25479:55;25362:179;:::o;25547:366::-;25689:3;25710:67;25774:2;25769:3;25710:67;:::i;:::-;25703:74;;25786:93;25875:3;25786:93;:::i;:::-;25904:2;25899:3;25895:12;25888:19;;25547:366;;;:::o;25919:419::-;26085:4;26123:2;26112:9;26108:18;26100:26;;26172:9;26166:4;26162:20;26158:1;26147:9;26143:17;26136:47;26200:131;26326:4;26200:131;:::i;:::-;26192:139;;25919:419;;;:::o;26344:147::-;26445:11;26482:3;26467:18;;26344:147;;;;:::o;26497:114::-;;:::o;26617:398::-;26776:3;26797:83;26878:1;26873:3;26797:83;:::i;:::-;26790:90;;26889:93;26978:3;26889:93;:::i;:::-;27007:1;27002:3;26998:11;26991:18;;26617:398;;;:::o;27021:379::-;27205:3;27227:147;27370:3;27227:147;:::i;:::-;27220:154;;27391:3;27384:10;;27021:379;;;:::o;27406:245::-;27546:34;27542:1;27534:6;27530:14;27523:58;27615:28;27610:2;27602:6;27598:15;27591:53;27406:245;:::o;27657:366::-;27799:3;27820:67;27884:2;27879:3;27820:67;:::i;:::-;27813:74;;27896:93;27985:3;27896:93;:::i;:::-;28014:2;28009:3;28005:12;27998:19;;27657:366;;;:::o;28029:419::-;28195:4;28233:2;28222:9;28218:18;28210:26;;28282:9;28276:4;28272:20;28268:1;28257:9;28253:17;28246:47;28310:131;28436:4;28310:131;:::i;:::-;28302:139;;28029:419;;;:::o;28454:98::-;28505:6;28539:5;28533:12;28523:22;;28454:98;;;:::o;28558:168::-;28641:11;28675:6;28670:3;28663:19;28715:4;28710:3;28706:14;28691:29;;28558:168;;;;:::o;28732:373::-;28818:3;28846:38;28878:5;28846:38;:::i;:::-;28900:70;28963:6;28958:3;28900:70;:::i;:::-;28893:77;;28979:65;29037:6;29032:3;29025:4;29018:5;29014:16;28979:65;:::i;:::-;29069:29;29091:6;29069:29;:::i;:::-;29064:3;29060:39;29053:46;;28822:283;28732:373;;;;:::o;29111:640::-;29306:4;29344:3;29333:9;29329:19;29321:27;;29358:71;29426:1;29415:9;29411:17;29402:6;29358:71;:::i;:::-;29439:72;29507:2;29496:9;29492:18;29483:6;29439:72;:::i;:::-;29521;29589:2;29578:9;29574:18;29565:6;29521:72;:::i;:::-;29640:9;29634:4;29630:20;29625:2;29614:9;29610:18;29603:48;29668:76;29739:4;29730:6;29668:76;:::i;:::-;29660:84;;29111:640;;;;;;;:::o;29757:141::-;29813:5;29844:6;29838:13;29829:22;;29860:32;29886:5;29860:32;:::i;:::-;29757:141;;;;:::o;29904:349::-;29973:6;30022:2;30010:9;30001:7;29997:23;29993:32;29990:119;;;30028:79;;:::i;:::-;29990:119;30148:1;30173:63;30228:7;30219:6;30208:9;30204:22;30173:63;:::i;:::-;30163:73;;30119:127;29904:349;;;;:::o;30259:94::-;30292:8;30340:5;30336:2;30332:14;30311:35;;30259:94;;;:::o;30359:::-;30398:7;30427:20;30441:5;30427:20;:::i;:::-;30416:31;;30359:94;;;:::o;30459:100::-;30498:7;30527:26;30547:5;30527:26;:::i;:::-;30516:37;;30459:100;;;:::o;30565:157::-;30670:45;30690:24;30708:5;30690:24;:::i;:::-;30670:45;:::i;:::-;30665:3;30658:58;30565:157;;:::o;30728:256::-;30840:3;30855:75;30926:3;30917:6;30855:75;:::i;:::-;30955:2;30950:3;30946:12;30939:19;;30975:3;30968:10;;30728:256;;;;:::o;30990:180::-;31038:77;31035:1;31028:88;31135:4;31132:1;31125:15;31159:4;31156:1;31149:15;31176:233;31215:3;31238:24;31256:5;31238:24;:::i;:::-;31229:33;;31284:66;31277:5;31274:77;31271:103;;31354:18;;:::i;:::-;31271:103;31401:1;31394:5;31390:13;31383:20;;31176:233;;;:::o

Swarm Source

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