ETH Price: $3,407.54 (+1.47%)
Gas: 7 Gwei

Token

The Chosen Kid (TCK)
 

Overview

Max Total Supply

5,366 TCK

Holders

3,791

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 TCK
0x410788a2ff8b2a984f10d493b0e9043252c82660
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:
TheChosenKid

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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.
 */
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 proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _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}
     *
     * _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 the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild 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 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 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 for 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) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild 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 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 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 for 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) {
            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/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.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: 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/Thechosenkid.sol



pragma solidity >=0.8.9 <0.9.0;







contract TheChosenKid is ERC721A, Ownable, ReentrancyGuard {

   using Strings for uint256;

  mapping(address => uint256) public mintCounter;
  mapping (address => uint256) public WalletMint;  

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.0035 ether; 
  uint public freeMint = 1;
  uint256 public maxSupply;
  uint256 public maxMintAmountPerTx;
  uint256 public maxMintAmountPerW; 
  
  bool public publicM = false;
  bool public revealed = false;
  

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


modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(
        mintCounter[_msgSender()] + _mintAmount <= maxMintAmountPerW,
        "exceeds max per address"
        );
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    mintCounter[_msgSender()] = mintCounter[_msgSender()] + _mintAmount;
    _;
}


modifier onlyAccounts () {
    require(msg.sender == tx.origin, "Not allowed origin");
    _;   
}


function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(publicM, "PublicSale is OFF");
    if(WalletMint[_msgSender()] < freeMint) 
        {
            if(_mintAmount < freeMint) _mintAmount = freeMint;
           require(msg.value >= (_mintAmount - freeMint) * cost,"Notice:Claim Free NFT");
            WalletMint[_msgSender()] += _mintAmount;
           _safeMint(_msgSender(), _mintAmount);
        }
        else
        {
           require(msg.value >= _mintAmount * cost,"Notice:Fund not enough");
            WalletMint[_msgSender()] += _mintAmount;
         _safeMint(_msgSender(), _mintAmount);
    }
}
  
function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupply, "reached Max Supply");
    _safeMint(_receiver, _mintAmount);
}

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

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

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

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

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

function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
}
function setMaxMintAmountPerW(uint256 _maxMintAmountPerW) public onlyOwner {
      maxMintAmountPerW = _maxMintAmountPerW;
}
function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
}

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

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

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


function togglePublicSale() public onlyOwner {
    publicM = !publicM;
}

function withdraw() public onlyOwner nonReentrant {
   
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerW","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"","type":"address"}],"name":"WalletMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerW","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerW","type":"uint256"}],"name":"setMaxMintAmountPerW","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600c90805190602001906200002b9291906200039f565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000799291906200039f565b50660c6f3b40b6c000600f5560016010556000601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff021916908315150217905550348015620000cd57600080fd5b506040516200400f3803806200400f8339818101604052810190620000f3919062000627565b858581600290805190602001906200010d9291906200039f565b508060039080519060200190620001269291906200039f565b5062000137620001ad60201b60201c565b60008190555050506200015f62000153620001b660201b60201c565b620001be60201b60201c565b6001600981905550836011819055506200017f836200028460201b60201c565b62000190826200029e60201b60201c565b620001a181620002b860201b60201c565b50505050505062000808565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000294620002e460201b60201c565b8060128190555050565b620002ae620002e460201b60201c565b8060138190555050565b620002c8620002e460201b60201c565b80600e9080519060200190620002e09291906200039f565b5050565b620002f4620001b660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200031a6200037560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000373576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036a9062000781565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003ad90620007d2565b90600052602060002090601f016020900481019282620003d157600085556200041d565b82601f10620003ec57805160ff19168380011785556200041d565b828001600101855582156200041d579182015b828111156200041c578251825591602001919060010190620003ff565b5b5090506200042c919062000430565b5090565b5b808211156200044b57600081600090555060010162000431565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004b8826200046d565b810181811067ffffffffffffffff82111715620004da57620004d96200047e565b5b80604052505050565b6000620004ef6200044f565b9050620004fd8282620004ad565b919050565b600067ffffffffffffffff82111562000520576200051f6200047e565b5b6200052b826200046d565b9050602081019050919050565b60005b83811015620005585780820151818401526020810190506200053b565b8381111562000568576000848401525b50505050565b6000620005856200057f8462000502565b620004e3565b905082815260208101848484011115620005a457620005a362000468565b5b620005b184828562000538565b509392505050565b600082601f830112620005d157620005d062000463565b5b8151620005e38482602086016200056e565b91505092915050565b6000819050919050565b6200060181620005ec565b81146200060d57600080fd5b50565b6000815190506200062181620005f6565b92915050565b60008060008060008060c0878903121562000647576200064662000459565b5b600087015167ffffffffffffffff8111156200066857620006676200045e565b5b6200067689828a01620005b9565b965050602087015167ffffffffffffffff8111156200069a57620006996200045e565b5b620006a889828a01620005b9565b9550506040620006bb89828a0162000610565b9450506060620006ce89828a0162000610565b9350506080620006e189828a0162000610565b92505060a087015167ffffffffffffffff8111156200070557620007046200045e565b5b6200071389828a01620005b9565b9150509295509295509295565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200076960208362000720565b9150620007768262000731565b602082019050919050565b600060208201905081810360008301526200079c816200075a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007eb57607f821691505b60208210811415620008025762000801620007a3565b5b50919050565b6137f780620008186000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063b071401b116100ab578063e222c7f91161006f578063e222c7f91461080a578063e645f70814610821578063e985e9c51461085e578063efbd73f41461089b578063f2fde38b146108c45761023b565b8063b071401b14610734578063b88d4fde1461075d578063c87b56dd14610779578063d5abeb01146107b6578063e0a80853146107e15761023b565b806395d89b41116100f257806395d89b411461066e578063a0712d6814610699578063a22cb465146106b5578063a45063c0146106de578063a45ba8e7146107095761023b565b8063715018a6146105ad5780637ec4a659146105c4578063867cb30e146105ed5780638da5cb5b1461061857806394354fd0146106435761023b565b80633ccfd60b116101bc5780635503a0e8116101805780635503a0e8146104b25780635b70ea9f146104dd57806362b99ad4146105085780636352211e1461053357806370a08231146105705761023b565b80633ccfd60b1461040257806342842e0e1461041957806344a0d68a146104355780634fdd43cb1461045e57806351830227146104875761023b565b806316ba10e01161020357806316ba10e01461032c57806318160ddd146103555780631cdce9fe1461038057806323b872dd146103bd57806326b092df146103d95761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede614610301575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061277c565b6108ed565b60405161027491906127c4565b60405180910390f35b34801561028957600080fd5b5061029261097f565b60405161029f9190612878565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906128d0565b610a11565b6040516102dc919061293e565b60405180910390f35b6102ff60048036038101906102fa9190612985565b610a90565b005b34801561030d57600080fd5b50610316610bd4565b60405161032391906129d4565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612b24565b610bda565b005b34801561036157600080fd5b5061036a610bfc565b60405161037791906129d4565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612b6d565b610c13565b6040516103b491906129d4565b60405180910390f35b6103d760048036038101906103d29190612b9a565b610c2b565b005b3480156103e557600080fd5b5061040060048036038101906103fb91906128d0565b610f50565b005b34801561040e57600080fd5b50610417610f62565b005b610433600480360381019061042e9190612b9a565b611040565b005b34801561044157600080fd5b5061045c600480360381019061045791906128d0565b611060565b005b34801561046a57600080fd5b5061048560048036038101906104809190612b24565b611072565b005b34801561049357600080fd5b5061049c611094565b6040516104a991906127c4565b60405180910390f35b3480156104be57600080fd5b506104c76110a7565b6040516104d49190612878565b60405180910390f35b3480156104e957600080fd5b506104f2611135565b6040516104ff91906129d4565b60405180910390f35b34801561051457600080fd5b5061051d61113b565b60405161052a9190612878565b60405180910390f35b34801561053f57600080fd5b5061055a600480360381019061055591906128d0565b6111c9565b604051610567919061293e565b60405180910390f35b34801561057c57600080fd5b5061059760048036038101906105929190612b6d565b6111db565b6040516105a491906129d4565b60405180910390f35b3480156105b957600080fd5b506105c2611294565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190612b24565b6112a8565b005b3480156105f957600080fd5b506106026112ca565b60405161060f91906129d4565b60405180910390f35b34801561062457600080fd5b5061062d6112d0565b60405161063a919061293e565b60405180910390f35b34801561064f57600080fd5b506106586112fa565b60405161066591906129d4565b60405180910390f35b34801561067a57600080fd5b50610683611300565b6040516106909190612878565b60405180910390f35b6106b360048036038101906106ae91906128d0565b611392565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190612c19565b6117af565b005b3480156106ea57600080fd5b506106f36118ba565b60405161070091906127c4565b60405180910390f35b34801561071557600080fd5b5061071e6118cd565b60405161072b9190612878565b60405180910390f35b34801561074057600080fd5b5061075b600480360381019061075691906128d0565b61195b565b005b61077760048036038101906107729190612cfa565b61196d565b005b34801561078557600080fd5b506107a0600480360381019061079b91906128d0565b6119e0565b6040516107ad9190612878565b60405180910390f35b3480156107c257600080fd5b506107cb611b39565b6040516107d891906129d4565b60405180910390f35b3480156107ed57600080fd5b5061080860048036038101906108039190612d7d565b611b3f565b005b34801561081657600080fd5b5061081f611b64565b005b34801561082d57600080fd5b5061084860048036038101906108439190612b6d565b611b98565b60405161085591906129d4565b60405180910390f35b34801561086a57600080fd5b5061088560048036038101906108809190612daa565b611bb0565b60405161089291906127c4565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190612dea565b611c44565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190612b6d565b611cb1565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109785750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461098e90612e59565b80601f01602080910402602001604051908101604052809291908181526020018280546109ba90612e59565b8015610a075780601f106109dc57610100808354040283529160200191610a07565b820191906000526020600020905b8154815290600101906020018083116109ea57829003601f168201915b5050505050905090565b6000610a1c82611d35565b610a52576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9b826111c9565b90508073ffffffffffffffffffffffffffffffffffffffff16610abc611d94565b73ffffffffffffffffffffffffffffffffffffffff1614610b1f57610ae881610ae3611d94565b611bb0565b610b1e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b610be2611d9c565b80600d9080519060200190610bf892919061266d565b5050565b6000610c06611e1a565b6001546000540303905090565b600a6020528060005260406000206000915090505481565b6000610c3682611e23565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c9d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ca984611ef1565b91509150610cbf8187610cba611d94565b611f18565b610d0b57610cd486610ccf611d94565b611bb0565b610d0a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d72576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d7f8686866001611f5c565b8015610d8a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5885610e34888887611f62565b7c020000000000000000000000000000000000000000000000000000000017611f8a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ee0576000600185019050600060046000838152602001908152602001600020541415610ede576000548114610edd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f488686866001611fb5565b505050505050565b610f58611d9c565b8060138190555050565b610f6a611d9c565b60026009541415610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa790612ed7565b60405180910390fd5b60026009819055506000610fc26112d0565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fe590612f28565b60006040518083038185875af1925050503d8060008114611022576040519150601f19603f3d011682016040523d82523d6000602084013e611027565b606091505b505090508061103557600080fd5b506001600981905550565b61105b8383836040518060200160405280600081525061196d565b505050565b611068611d9c565b80600f8190555050565b61107a611d9c565b80600e908051906020019061109092919061266d565b5050565b601460019054906101000a900460ff1681565b600d80546110b490612e59565b80601f01602080910402602001604051908101604052809291908181526020018280546110e090612e59565b801561112d5780601f106111025761010080835404028352916020019161112d565b820191906000526020600020905b81548152906001019060200180831161111057829003601f168201915b505050505081565b60105481565b600c805461114890612e59565b80601f016020809104026020016040519081016040528092919081815260200182805461117490612e59565b80156111c15780601f10611196576101008083540402835291602001916111c1565b820191906000526020600020905b8154815290600101906020018083116111a457829003601f168201915b505050505081565b60006111d482611e23565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611243576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61129c611d9c565b6112a66000611fbb565b565b6112b0611d9c565b80600c90805190602001906112c692919061266d565b5050565b60135481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b60606003805461130f90612e59565b80601f016020809104026020016040519081016040528092919081815260200182805461133b90612e59565b80156113885780601f1061135d57610100808354040283529160200191611388565b820191906000526020600020905b81548152906001019060200180831161136b57829003601f168201915b5050505050905090565b806000811180156113a557506012548111155b6113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90612f89565b60405180910390fd5b60135481600a60006113f4612081565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114399190612fd8565b111561147a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114719061307a565b60405180910390fd5b60115481611486610bfc565b6114909190612fd8565b11156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c8906130e6565b60405180910390fd5b80600a60006114de612081565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115239190612fd8565b600a600061152f612081565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601460009054906101000a900460ff166115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390613152565b60405180910390fd5b601054600b60006115cb612081565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156116ec5760105482101561161c5760105491505b600f546010548361162d9190613172565b61163791906131a6565b341015611679576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116709061324c565b60405180910390fd5b81600b6000611686612081565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116cf9190612fd8565b925050819055506116e76116e1612081565b83612089565b6117ab565b600f54826116fa91906131a6565b34101561173c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611733906132b8565b60405180910390fd5b81600b6000611749612081565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117929190612fd8565b925050819055506117aa6117a4612081565b83612089565b5b5050565b80600760006117bc611d94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611869611d94565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118ae91906127c4565b60405180910390a35050565b601460009054906101000a900460ff1681565b600e80546118da90612e59565b80601f016020809104026020016040519081016040528092919081815260200182805461190690612e59565b80156119535780601f1061192857610100808354040283529160200191611953565b820191906000526020600020905b81548152906001019060200180831161193657829003601f168201915b505050505081565b611963611d9c565b8060128190555050565b611978848484610c2b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119da576119a3848484846120a7565b6119d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606119eb82611d35565b611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a219061334a565b60405180910390fd5b60001515601460019054906101000a900460ff1615151415611ad857600e8054611a5390612e59565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7f90612e59565b8015611acc5780601f10611aa157610100808354040283529160200191611acc565b820191906000526020600020905b815481529060010190602001808311611aaf57829003601f168201915b50505050509050611b34565b6000611ae2612207565b90506000815111611b025760405180602001604052806000815250611b30565b80611b0c84612299565b600d604051602001611b209392919061343a565b6040516020818303038152906040525b9150505b919050565b60115481565b611b47611d9c565b80601460016101000a81548160ff02191690831515021790555050565b611b6c611d9c565b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b600b6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c4c611d9c565b60115482611c58610bfc565b611c629190612fd8565b1115611ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9a906134b7565b60405180910390fd5b611cad8183612089565b5050565b611cb9611d9c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2090613549565b60405180910390fd5b611d3281611fbb565b50565b600081611d40611e1a565b11158015611d4f575060005482105b8015611d8d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611da4612081565b73ffffffffffffffffffffffffffffffffffffffff16611dc26112d0565b73ffffffffffffffffffffffffffffffffffffffff1614611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f906135b5565b60405180910390fd5b565b60006001905090565b60008082905080611e32611e1a565b11611eba57600054811015611eb95760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611eb7575b6000811415611ead576004600083600190039350838152602001908152602001600020549050611e82565b8092505050611eec565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f798686846123fa565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6120a3828260405180602001604052806000815250612403565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120cd611d94565b8786866040518563ffffffff1660e01b81526004016120ef949392919061362a565b602060405180830381600087803b15801561210957600080fd5b505af192505050801561213a57506040513d601f19601f82011682018060405250810190612137919061368b565b60015b6121b4573d806000811461216a576040519150601f19603f3d011682016040523d82523d6000602084013e61216f565b606091505b506000815114156121ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461221690612e59565b80601f016020809104026020016040519081016040528092919081815260200182805461224290612e59565b801561228f5780601f106122645761010080835404028352916020019161228f565b820191906000526020600020905b81548152906001019060200180831161227257829003601f168201915b5050505050905090565b606060008214156122e1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123f5565b600082905060005b600082146123135780806122fc906136b8565b915050600a8261230c9190613730565b91506122e9565b60008167ffffffffffffffff81111561232f5761232e6129f9565b5b6040519080825280601f01601f1916602001820160405280156123615781602001600182028036833780820191505090505b5090505b600085146123ee5760018261237a9190613172565b9150600a856123899190613761565b60306123959190612fd8565b60f81b8183815181106123ab576123aa613792565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123e79190613730565b9450612365565b8093505050505b919050565b60009392505050565b61240d83836124a0565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461249b57600080549050600083820390505b61244d60008683806001019450866120a7565b612483576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061243a57816000541461249857600080fd5b50505b505050565b60008054905060008214156124e1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124ee6000848385611f5c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612565836125566000866000611f62565b61255f8561265d565b17611f8a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461260657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506125cb565b506000821415612642576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126586000848385611fb5565b505050565b60006001821460e11b9050919050565b82805461267990612e59565b90600052602060002090601f01602090048101928261269b57600085556126e2565b82601f106126b457805160ff19168380011785556126e2565b828001600101855582156126e2579182015b828111156126e15782518255916020019190600101906126c6565b5b5090506126ef91906126f3565b5090565b5b8082111561270c5760008160009055506001016126f4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61275981612724565b811461276457600080fd5b50565b60008135905061277681612750565b92915050565b6000602082840312156127925761279161271a565b5b60006127a084828501612767565b91505092915050565b60008115159050919050565b6127be816127a9565b82525050565b60006020820190506127d960008301846127b5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128195780820151818401526020810190506127fe565b83811115612828576000848401525b50505050565b6000601f19601f8301169050919050565b600061284a826127df565b61285481856127ea565b93506128648185602086016127fb565b61286d8161282e565b840191505092915050565b60006020820190508181036000830152612892818461283f565b905092915050565b6000819050919050565b6128ad8161289a565b81146128b857600080fd5b50565b6000813590506128ca816128a4565b92915050565b6000602082840312156128e6576128e561271a565b5b60006128f4848285016128bb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612928826128fd565b9050919050565b6129388161291d565b82525050565b6000602082019050612953600083018461292f565b92915050565b6129628161291d565b811461296d57600080fd5b50565b60008135905061297f81612959565b92915050565b6000806040838503121561299c5761299b61271a565b5b60006129aa85828601612970565b92505060206129bb858286016128bb565b9150509250929050565b6129ce8161289a565b82525050565b60006020820190506129e960008301846129c5565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a318261282e565b810181811067ffffffffffffffff82111715612a5057612a4f6129f9565b5b80604052505050565b6000612a63612710565b9050612a6f8282612a28565b919050565b600067ffffffffffffffff821115612a8f57612a8e6129f9565b5b612a988261282e565b9050602081019050919050565b82818337600083830152505050565b6000612ac7612ac284612a74565b612a59565b905082815260208101848484011115612ae357612ae26129f4565b5b612aee848285612aa5565b509392505050565b600082601f830112612b0b57612b0a6129ef565b5b8135612b1b848260208601612ab4565b91505092915050565b600060208284031215612b3a57612b3961271a565b5b600082013567ffffffffffffffff811115612b5857612b5761271f565b5b612b6484828501612af6565b91505092915050565b600060208284031215612b8357612b8261271a565b5b6000612b9184828501612970565b91505092915050565b600080600060608486031215612bb357612bb261271a565b5b6000612bc186828701612970565b9350506020612bd286828701612970565b9250506040612be3868287016128bb565b9150509250925092565b612bf6816127a9565b8114612c0157600080fd5b50565b600081359050612c1381612bed565b92915050565b60008060408385031215612c3057612c2f61271a565b5b6000612c3e85828601612970565b9250506020612c4f85828601612c04565b9150509250929050565b600067ffffffffffffffff821115612c7457612c736129f9565b5b612c7d8261282e565b9050602081019050919050565b6000612c9d612c9884612c59565b612a59565b905082815260208101848484011115612cb957612cb86129f4565b5b612cc4848285612aa5565b509392505050565b600082601f830112612ce157612ce06129ef565b5b8135612cf1848260208601612c8a565b91505092915050565b60008060008060808587031215612d1457612d1361271a565b5b6000612d2287828801612970565b9450506020612d3387828801612970565b9350506040612d44878288016128bb565b925050606085013567ffffffffffffffff811115612d6557612d6461271f565b5b612d7187828801612ccc565b91505092959194509250565b600060208284031215612d9357612d9261271a565b5b6000612da184828501612c04565b91505092915050565b60008060408385031215612dc157612dc061271a565b5b6000612dcf85828601612970565b9250506020612de085828601612970565b9150509250929050565b60008060408385031215612e0157612e0061271a565b5b6000612e0f858286016128bb565b9250506020612e2085828601612970565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e7157607f821691505b60208210811415612e8557612e84612e2a565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612ec1601f836127ea565b9150612ecc82612e8b565b602082019050919050565b60006020820190508181036000830152612ef081612eb4565b9050919050565b600081905092915050565b50565b6000612f12600083612ef7565b9150612f1d82612f02565b600082019050919050565b6000612f3382612f05565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612f736014836127ea565b9150612f7e82612f3d565b602082019050919050565b60006020820190508181036000830152612fa281612f66565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fe38261289a565b9150612fee8361289a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561302357613022612fa9565b5b828201905092915050565b7f65786365656473206d6178207065722061646472657373000000000000000000600082015250565b60006130646017836127ea565b915061306f8261302e565b602082019050919050565b6000602082019050818103600083015261309381613057565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006130d06014836127ea565b91506130db8261309a565b602082019050919050565b600060208201905081810360008301526130ff816130c3565b9050919050565b7f5075626c696353616c65206973204f4646000000000000000000000000000000600082015250565b600061313c6011836127ea565b915061314782613106565b602082019050919050565b6000602082019050818103600083015261316b8161312f565b9050919050565b600061317d8261289a565b91506131888361289a565b92508282101561319b5761319a612fa9565b5b828203905092915050565b60006131b18261289a565b91506131bc8361289a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131f5576131f4612fa9565b5b828202905092915050565b7f4e6f746963653a436c61696d2046726565204e46540000000000000000000000600082015250565b60006132366015836127ea565b915061324182613200565b602082019050919050565b6000602082019050818103600083015261326581613229565b9050919050565b7f4e6f746963653a46756e64206e6f7420656e6f75676800000000000000000000600082015250565b60006132a26016836127ea565b91506132ad8261326c565b602082019050919050565b600060208201905081810360008301526132d181613295565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613334602f836127ea565b915061333f826132d8565b604082019050919050565b6000602082019050818103600083015261336381613327565b9050919050565b600081905092915050565b6000613380826127df565b61338a818561336a565b935061339a8185602086016127fb565b80840191505092915050565b60008190508160005260206000209050919050565b600081546133c881612e59565b6133d2818661336a565b945060018216600081146133ed57600181146133fe57613431565b60ff19831686528186019350613431565b613407856133a6565b60005b838110156134295781548189015260018201915060208101905061340a565b838801955050505b50505092915050565b60006134468286613375565b91506134528285613375565b915061345e82846133bb565b9150819050949350505050565b7f72656163686564204d617820537570706c790000000000000000000000000000600082015250565b60006134a16012836127ea565b91506134ac8261346b565b602082019050919050565b600060208201905081810360008301526134d081613494565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135336026836127ea565b915061353e826134d7565b604082019050919050565b6000602082019050818103600083015261356281613526565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061359f6020836127ea565b91506135aa82613569565b602082019050919050565b600060208201905081810360008301526135ce81613592565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135fc826135d5565b61360681856135e0565b93506136168185602086016127fb565b61361f8161282e565b840191505092915050565b600060808201905061363f600083018761292f565b61364c602083018661292f565b61365960408301856129c5565b818103606083015261366b81846135f1565b905095945050505050565b60008151905061368581612750565b92915050565b6000602082840312156136a1576136a061271a565b5b60006136af84828501613676565b91505092915050565b60006136c38261289a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136f6576136f5612fa9565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061373b8261289a565b91506137468361289a565b92508261375657613755613701565b5b828204905092915050565b600061376c8261289a565b91506137778361289a565b92508261378757613786613701565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122060f5668a94ebaf82f4a937861e275b5fcc16a9633242e9363a22cd3f93fd238264736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001a0a000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000e5468652043686f73656e204b6964000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354434b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d563570697273456b7853396151364b39567742523342445738586e725238673344524e454a3141524b6b56712f556e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063715018a61161012e578063b071401b116100ab578063e222c7f91161006f578063e222c7f91461080a578063e645f70814610821578063e985e9c51461085e578063efbd73f41461089b578063f2fde38b146108c45761023b565b8063b071401b14610734578063b88d4fde1461075d578063c87b56dd14610779578063d5abeb01146107b6578063e0a80853146107e15761023b565b806395d89b41116100f257806395d89b411461066e578063a0712d6814610699578063a22cb465146106b5578063a45063c0146106de578063a45ba8e7146107095761023b565b8063715018a6146105ad5780637ec4a659146105c4578063867cb30e146105ed5780638da5cb5b1461061857806394354fd0146106435761023b565b80633ccfd60b116101bc5780635503a0e8116101805780635503a0e8146104b25780635b70ea9f146104dd57806362b99ad4146105085780636352211e1461053357806370a08231146105705761023b565b80633ccfd60b1461040257806342842e0e1461041957806344a0d68a146104355780634fdd43cb1461045e57806351830227146104875761023b565b806316ba10e01161020357806316ba10e01461032c57806318160ddd146103555780631cdce9fe1461038057806323b872dd146103bd57806326b092df146103d95761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede614610301575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061277c565b6108ed565b60405161027491906127c4565b60405180910390f35b34801561028957600080fd5b5061029261097f565b60405161029f9190612878565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906128d0565b610a11565b6040516102dc919061293e565b60405180910390f35b6102ff60048036038101906102fa9190612985565b610a90565b005b34801561030d57600080fd5b50610316610bd4565b60405161032391906129d4565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612b24565b610bda565b005b34801561036157600080fd5b5061036a610bfc565b60405161037791906129d4565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612b6d565b610c13565b6040516103b491906129d4565b60405180910390f35b6103d760048036038101906103d29190612b9a565b610c2b565b005b3480156103e557600080fd5b5061040060048036038101906103fb91906128d0565b610f50565b005b34801561040e57600080fd5b50610417610f62565b005b610433600480360381019061042e9190612b9a565b611040565b005b34801561044157600080fd5b5061045c600480360381019061045791906128d0565b611060565b005b34801561046a57600080fd5b5061048560048036038101906104809190612b24565b611072565b005b34801561049357600080fd5b5061049c611094565b6040516104a991906127c4565b60405180910390f35b3480156104be57600080fd5b506104c76110a7565b6040516104d49190612878565b60405180910390f35b3480156104e957600080fd5b506104f2611135565b6040516104ff91906129d4565b60405180910390f35b34801561051457600080fd5b5061051d61113b565b60405161052a9190612878565b60405180910390f35b34801561053f57600080fd5b5061055a600480360381019061055591906128d0565b6111c9565b604051610567919061293e565b60405180910390f35b34801561057c57600080fd5b5061059760048036038101906105929190612b6d565b6111db565b6040516105a491906129d4565b60405180910390f35b3480156105b957600080fd5b506105c2611294565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190612b24565b6112a8565b005b3480156105f957600080fd5b506106026112ca565b60405161060f91906129d4565b60405180910390f35b34801561062457600080fd5b5061062d6112d0565b60405161063a919061293e565b60405180910390f35b34801561064f57600080fd5b506106586112fa565b60405161066591906129d4565b60405180910390f35b34801561067a57600080fd5b50610683611300565b6040516106909190612878565b60405180910390f35b6106b360048036038101906106ae91906128d0565b611392565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190612c19565b6117af565b005b3480156106ea57600080fd5b506106f36118ba565b60405161070091906127c4565b60405180910390f35b34801561071557600080fd5b5061071e6118cd565b60405161072b9190612878565b60405180910390f35b34801561074057600080fd5b5061075b600480360381019061075691906128d0565b61195b565b005b61077760048036038101906107729190612cfa565b61196d565b005b34801561078557600080fd5b506107a0600480360381019061079b91906128d0565b6119e0565b6040516107ad9190612878565b60405180910390f35b3480156107c257600080fd5b506107cb611b39565b6040516107d891906129d4565b60405180910390f35b3480156107ed57600080fd5b5061080860048036038101906108039190612d7d565b611b3f565b005b34801561081657600080fd5b5061081f611b64565b005b34801561082d57600080fd5b5061084860048036038101906108439190612b6d565b611b98565b60405161085591906129d4565b60405180910390f35b34801561086a57600080fd5b5061088560048036038101906108809190612daa565b611bb0565b60405161089291906127c4565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190612dea565b611c44565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190612b6d565b611cb1565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109785750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461098e90612e59565b80601f01602080910402602001604051908101604052809291908181526020018280546109ba90612e59565b8015610a075780601f106109dc57610100808354040283529160200191610a07565b820191906000526020600020905b8154815290600101906020018083116109ea57829003601f168201915b5050505050905090565b6000610a1c82611d35565b610a52576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9b826111c9565b90508073ffffffffffffffffffffffffffffffffffffffff16610abc611d94565b73ffffffffffffffffffffffffffffffffffffffff1614610b1f57610ae881610ae3611d94565b611bb0565b610b1e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b610be2611d9c565b80600d9080519060200190610bf892919061266d565b5050565b6000610c06611e1a565b6001546000540303905090565b600a6020528060005260406000206000915090505481565b6000610c3682611e23565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c9d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ca984611ef1565b91509150610cbf8187610cba611d94565b611f18565b610d0b57610cd486610ccf611d94565b611bb0565b610d0a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d72576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d7f8686866001611f5c565b8015610d8a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5885610e34888887611f62565b7c020000000000000000000000000000000000000000000000000000000017611f8a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ee0576000600185019050600060046000838152602001908152602001600020541415610ede576000548114610edd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f488686866001611fb5565b505050505050565b610f58611d9c565b8060138190555050565b610f6a611d9c565b60026009541415610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa790612ed7565b60405180910390fd5b60026009819055506000610fc26112d0565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fe590612f28565b60006040518083038185875af1925050503d8060008114611022576040519150601f19603f3d011682016040523d82523d6000602084013e611027565b606091505b505090508061103557600080fd5b506001600981905550565b61105b8383836040518060200160405280600081525061196d565b505050565b611068611d9c565b80600f8190555050565b61107a611d9c565b80600e908051906020019061109092919061266d565b5050565b601460019054906101000a900460ff1681565b600d80546110b490612e59565b80601f01602080910402602001604051908101604052809291908181526020018280546110e090612e59565b801561112d5780601f106111025761010080835404028352916020019161112d565b820191906000526020600020905b81548152906001019060200180831161111057829003601f168201915b505050505081565b60105481565b600c805461114890612e59565b80601f016020809104026020016040519081016040528092919081815260200182805461117490612e59565b80156111c15780601f10611196576101008083540402835291602001916111c1565b820191906000526020600020905b8154815290600101906020018083116111a457829003601f168201915b505050505081565b60006111d482611e23565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611243576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61129c611d9c565b6112a66000611fbb565b565b6112b0611d9c565b80600c90805190602001906112c692919061266d565b5050565b60135481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b60606003805461130f90612e59565b80601f016020809104026020016040519081016040528092919081815260200182805461133b90612e59565b80156113885780601f1061135d57610100808354040283529160200191611388565b820191906000526020600020905b81548152906001019060200180831161136b57829003601f168201915b5050505050905090565b806000811180156113a557506012548111155b6113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90612f89565b60405180910390fd5b60135481600a60006113f4612081565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114399190612fd8565b111561147a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114719061307a565b60405180910390fd5b60115481611486610bfc565b6114909190612fd8565b11156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c8906130e6565b60405180910390fd5b80600a60006114de612081565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115239190612fd8565b600a600061152f612081565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601460009054906101000a900460ff166115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390613152565b60405180910390fd5b601054600b60006115cb612081565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156116ec5760105482101561161c5760105491505b600f546010548361162d9190613172565b61163791906131a6565b341015611679576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116709061324c565b60405180910390fd5b81600b6000611686612081565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116cf9190612fd8565b925050819055506116e76116e1612081565b83612089565b6117ab565b600f54826116fa91906131a6565b34101561173c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611733906132b8565b60405180910390fd5b81600b6000611749612081565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117929190612fd8565b925050819055506117aa6117a4612081565b83612089565b5b5050565b80600760006117bc611d94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611869611d94565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118ae91906127c4565b60405180910390a35050565b601460009054906101000a900460ff1681565b600e80546118da90612e59565b80601f016020809104026020016040519081016040528092919081815260200182805461190690612e59565b80156119535780601f1061192857610100808354040283529160200191611953565b820191906000526020600020905b81548152906001019060200180831161193657829003601f168201915b505050505081565b611963611d9c565b8060128190555050565b611978848484610c2b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119da576119a3848484846120a7565b6119d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606119eb82611d35565b611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a219061334a565b60405180910390fd5b60001515601460019054906101000a900460ff1615151415611ad857600e8054611a5390612e59565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7f90612e59565b8015611acc5780601f10611aa157610100808354040283529160200191611acc565b820191906000526020600020905b815481529060010190602001808311611aaf57829003601f168201915b50505050509050611b34565b6000611ae2612207565b90506000815111611b025760405180602001604052806000815250611b30565b80611b0c84612299565b600d604051602001611b209392919061343a565b6040516020818303038152906040525b9150505b919050565b60115481565b611b47611d9c565b80601460016101000a81548160ff02191690831515021790555050565b611b6c611d9c565b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b600b6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c4c611d9c565b60115482611c58610bfc565b611c629190612fd8565b1115611ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9a906134b7565b60405180910390fd5b611cad8183612089565b5050565b611cb9611d9c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2090613549565b60405180910390fd5b611d3281611fbb565b50565b600081611d40611e1a565b11158015611d4f575060005482105b8015611d8d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611da4612081565b73ffffffffffffffffffffffffffffffffffffffff16611dc26112d0565b73ffffffffffffffffffffffffffffffffffffffff1614611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f906135b5565b60405180910390fd5b565b60006001905090565b60008082905080611e32611e1a565b11611eba57600054811015611eb95760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611eb7575b6000811415611ead576004600083600190039350838152602001908152602001600020549050611e82565b8092505050611eec565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f798686846123fa565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6120a3828260405180602001604052806000815250612403565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120cd611d94565b8786866040518563ffffffff1660e01b81526004016120ef949392919061362a565b602060405180830381600087803b15801561210957600080fd5b505af192505050801561213a57506040513d601f19601f82011682018060405250810190612137919061368b565b60015b6121b4573d806000811461216a576040519150601f19603f3d011682016040523d82523d6000602084013e61216f565b606091505b506000815114156121ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461221690612e59565b80601f016020809104026020016040519081016040528092919081815260200182805461224290612e59565b801561228f5780601f106122645761010080835404028352916020019161228f565b820191906000526020600020905b81548152906001019060200180831161227257829003601f168201915b5050505050905090565b606060008214156122e1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123f5565b600082905060005b600082146123135780806122fc906136b8565b915050600a8261230c9190613730565b91506122e9565b60008167ffffffffffffffff81111561232f5761232e6129f9565b5b6040519080825280601f01601f1916602001820160405280156123615781602001600182028036833780820191505090505b5090505b600085146123ee5760018261237a9190613172565b9150600a856123899190613761565b60306123959190612fd8565b60f81b8183815181106123ab576123aa613792565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123e79190613730565b9450612365565b8093505050505b919050565b60009392505050565b61240d83836124a0565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461249b57600080549050600083820390505b61244d60008683806001019450866120a7565b612483576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061243a57816000541461249857600080fd5b50505b505050565b60008054905060008214156124e1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124ee6000848385611f5c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612565836125566000866000611f62565b61255f8561265d565b17611f8a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461260657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506125cb565b506000821415612642576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126586000848385611fb5565b505050565b60006001821460e11b9050919050565b82805461267990612e59565b90600052602060002090601f01602090048101928261269b57600085556126e2565b82601f106126b457805160ff19168380011785556126e2565b828001600101855582156126e2579182015b828111156126e15782518255916020019190600101906126c6565b5b5090506126ef91906126f3565b5090565b5b8082111561270c5760008160009055506001016126f4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61275981612724565b811461276457600080fd5b50565b60008135905061277681612750565b92915050565b6000602082840312156127925761279161271a565b5b60006127a084828501612767565b91505092915050565b60008115159050919050565b6127be816127a9565b82525050565b60006020820190506127d960008301846127b5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128195780820151818401526020810190506127fe565b83811115612828576000848401525b50505050565b6000601f19601f8301169050919050565b600061284a826127df565b61285481856127ea565b93506128648185602086016127fb565b61286d8161282e565b840191505092915050565b60006020820190508181036000830152612892818461283f565b905092915050565b6000819050919050565b6128ad8161289a565b81146128b857600080fd5b50565b6000813590506128ca816128a4565b92915050565b6000602082840312156128e6576128e561271a565b5b60006128f4848285016128bb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612928826128fd565b9050919050565b6129388161291d565b82525050565b6000602082019050612953600083018461292f565b92915050565b6129628161291d565b811461296d57600080fd5b50565b60008135905061297f81612959565b92915050565b6000806040838503121561299c5761299b61271a565b5b60006129aa85828601612970565b92505060206129bb858286016128bb565b9150509250929050565b6129ce8161289a565b82525050565b60006020820190506129e960008301846129c5565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a318261282e565b810181811067ffffffffffffffff82111715612a5057612a4f6129f9565b5b80604052505050565b6000612a63612710565b9050612a6f8282612a28565b919050565b600067ffffffffffffffff821115612a8f57612a8e6129f9565b5b612a988261282e565b9050602081019050919050565b82818337600083830152505050565b6000612ac7612ac284612a74565b612a59565b905082815260208101848484011115612ae357612ae26129f4565b5b612aee848285612aa5565b509392505050565b600082601f830112612b0b57612b0a6129ef565b5b8135612b1b848260208601612ab4565b91505092915050565b600060208284031215612b3a57612b3961271a565b5b600082013567ffffffffffffffff811115612b5857612b5761271f565b5b612b6484828501612af6565b91505092915050565b600060208284031215612b8357612b8261271a565b5b6000612b9184828501612970565b91505092915050565b600080600060608486031215612bb357612bb261271a565b5b6000612bc186828701612970565b9350506020612bd286828701612970565b9250506040612be3868287016128bb565b9150509250925092565b612bf6816127a9565b8114612c0157600080fd5b50565b600081359050612c1381612bed565b92915050565b60008060408385031215612c3057612c2f61271a565b5b6000612c3e85828601612970565b9250506020612c4f85828601612c04565b9150509250929050565b600067ffffffffffffffff821115612c7457612c736129f9565b5b612c7d8261282e565b9050602081019050919050565b6000612c9d612c9884612c59565b612a59565b905082815260208101848484011115612cb957612cb86129f4565b5b612cc4848285612aa5565b509392505050565b600082601f830112612ce157612ce06129ef565b5b8135612cf1848260208601612c8a565b91505092915050565b60008060008060808587031215612d1457612d1361271a565b5b6000612d2287828801612970565b9450506020612d3387828801612970565b9350506040612d44878288016128bb565b925050606085013567ffffffffffffffff811115612d6557612d6461271f565b5b612d7187828801612ccc565b91505092959194509250565b600060208284031215612d9357612d9261271a565b5b6000612da184828501612c04565b91505092915050565b60008060408385031215612dc157612dc061271a565b5b6000612dcf85828601612970565b9250506020612de085828601612970565b9150509250929050565b60008060408385031215612e0157612e0061271a565b5b6000612e0f858286016128bb565b9250506020612e2085828601612970565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e7157607f821691505b60208210811415612e8557612e84612e2a565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612ec1601f836127ea565b9150612ecc82612e8b565b602082019050919050565b60006020820190508181036000830152612ef081612eb4565b9050919050565b600081905092915050565b50565b6000612f12600083612ef7565b9150612f1d82612f02565b600082019050919050565b6000612f3382612f05565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612f736014836127ea565b9150612f7e82612f3d565b602082019050919050565b60006020820190508181036000830152612fa281612f66565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fe38261289a565b9150612fee8361289a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561302357613022612fa9565b5b828201905092915050565b7f65786365656473206d6178207065722061646472657373000000000000000000600082015250565b60006130646017836127ea565b915061306f8261302e565b602082019050919050565b6000602082019050818103600083015261309381613057565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006130d06014836127ea565b91506130db8261309a565b602082019050919050565b600060208201905081810360008301526130ff816130c3565b9050919050565b7f5075626c696353616c65206973204f4646000000000000000000000000000000600082015250565b600061313c6011836127ea565b915061314782613106565b602082019050919050565b6000602082019050818103600083015261316b8161312f565b9050919050565b600061317d8261289a565b91506131888361289a565b92508282101561319b5761319a612fa9565b5b828203905092915050565b60006131b18261289a565b91506131bc8361289a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131f5576131f4612fa9565b5b828202905092915050565b7f4e6f746963653a436c61696d2046726565204e46540000000000000000000000600082015250565b60006132366015836127ea565b915061324182613200565b602082019050919050565b6000602082019050818103600083015261326581613229565b9050919050565b7f4e6f746963653a46756e64206e6f7420656e6f75676800000000000000000000600082015250565b60006132a26016836127ea565b91506132ad8261326c565b602082019050919050565b600060208201905081810360008301526132d181613295565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613334602f836127ea565b915061333f826132d8565b604082019050919050565b6000602082019050818103600083015261336381613327565b9050919050565b600081905092915050565b6000613380826127df565b61338a818561336a565b935061339a8185602086016127fb565b80840191505092915050565b60008190508160005260206000209050919050565b600081546133c881612e59565b6133d2818661336a565b945060018216600081146133ed57600181146133fe57613431565b60ff19831686528186019350613431565b613407856133a6565b60005b838110156134295781548189015260018201915060208101905061340a565b838801955050505b50505092915050565b60006134468286613375565b91506134528285613375565b915061345e82846133bb565b9150819050949350505050565b7f72656163686564204d617820537570706c790000000000000000000000000000600082015250565b60006134a16012836127ea565b91506134ac8261346b565b602082019050919050565b600060208201905081810360008301526134d081613494565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135336026836127ea565b915061353e826134d7565b604082019050919050565b6000602082019050818103600083015261356281613526565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061359f6020836127ea565b91506135aa82613569565b602082019050919050565b600060208201905081810360008301526135ce81613592565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135fc826135d5565b61360681856135e0565b93506136168185602086016127fb565b61361f8161282e565b840191505092915050565b600060808201905061363f600083018761292f565b61364c602083018661292f565b61365960408301856129c5565b818103606083015261366b81846135f1565b905095945050505050565b60008151905061368581612750565b92915050565b6000602082840312156136a1576136a061271a565b5b60006136af84828501613676565b91505092915050565b60006136c38261289a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136f6576136f5612fa9565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061373b8261289a565b91506137468361289a565b92508261375657613755613701565b5b828204905092915050565b600061376c8261289a565b91506137778361289a565b92508261378757613786613701565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122060f5668a94ebaf82f4a937861e275b5fcc16a9633242e9363a22cd3f93fd238264736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001a0a000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000e5468652043686f73656e204b6964000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354434b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d563570697273456b7853396151364b39567742523342445738586e725238673344524e454a3141524b6b56712f556e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): The Chosen Kid
Arg [1] : _tokenSymbol (string): TCK
Arg [2] : _maxSupply (uint256): 6666
Arg [3] : _maxMintAmountPerTx (uint256): 3
Arg [4] : _maxMintAmountPerW (uint256): 3
Arg [5] : _hiddenMetadataUri (string): ipfs://QmV5pirsEkxS9aQ6K9VwBR3BDW8XnrR8g3DRNEJ1ARKkVq/Unrevealed.json

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000001a0a
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [7] : 5468652043686f73656e204b6964000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 54434b0000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000045
Arg [11] : 697066733a2f2f516d563570697273456b7853396151364b3956774252334244
Arg [12] : 5738586e725238673344524e454a3141524b6b56712f556e72657665616c6564
Arg [13] : 2e6a736f6e000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

69099:4063:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35978:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36880:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43371:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42804:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69415:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72718:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32631:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69198:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47010:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72222:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72900:153;;;;;;;;;;;;;:::i;:::-;;49931:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72148:72;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72482:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69625:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69337:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69455:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69304:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38273:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33815:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16757:103;;;;;;;;;;;;;:::i;:::-;;72616:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69551:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16109:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69513:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37056:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70642:666;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43929:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69593:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69375:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72350:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50722:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71618:443;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69484:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72065:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72822:74;;;;;;;;;;;;;:::i;:::-;;69249:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44320:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71314:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17015:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35978:639;36063:4;36402:10;36387:25;;:11;:25;;;;:102;;;;36479:10;36464:25;;:11;:25;;;;36387:102;:179;;;;36556:10;36541:25;;:11;:25;;;;36387:179;36367:199;;35978:639;;;:::o;36880:100::-;36934:13;36967:5;36960:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36880:100;:::o;43371:218::-;43447:7;43472:16;43480:7;43472;:16::i;:::-;43467:64;;43497:34;;;;;;;;;;;;;;43467:64;43551:15;:24;43567:7;43551:24;;;;;;;;;;;:30;;;;;;;;;;;;43544:37;;43371:218;;;:::o;42804:408::-;42893:13;42909:16;42917:7;42909;:16::i;:::-;42893:32;;42965:5;42942:28;;:19;:17;:19::i;:::-;:28;;;42938:175;;42990:44;43007:5;43014:19;:17;:19::i;:::-;42990:16;:44::i;:::-;42985:128;;43062:35;;;;;;;;;;;;;;42985:128;42938:175;43158:2;43125:15;:24;43141:7;43125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43196:7;43192:2;43176:28;;43185:5;43176:28;;;;;;;;;;;;42882:330;42804:408;;:::o;69415:34::-;;;;:::o;72718:98::-;15995:13;:11;:13::i;:::-;72802:10:::1;72790:9;:22;;;;;;;;;;;;:::i;:::-;;72718:98:::0;:::o;32631:323::-;32692:7;32920:15;:13;:15::i;:::-;32905:12;;32889:13;;:28;:46;32882:53;;32631:323;:::o;69198:46::-;;;;;;;;;;;;;;;;;:::o;47010:2825::-;47152:27;47182;47201:7;47182:18;:27::i;:::-;47152:57;;47267:4;47226:45;;47242:19;47226:45;;;47222:86;;47280:28;;;;;;;;;;;;;;47222:86;47322:27;47351:23;47378:35;47405:7;47378:26;:35::i;:::-;47321:92;;;;47513:68;47538:15;47555:4;47561:19;:17;:19::i;:::-;47513:24;:68::i;:::-;47508:180;;47601:43;47618:4;47624:19;:17;:19::i;:::-;47601:16;:43::i;:::-;47596:92;;47653:35;;;;;;;;;;;;;;47596:92;47508:180;47719:1;47705:16;;:2;:16;;;47701:52;;;47730:23;;;;;;;;;;;;;;47701:52;47766:43;47788:4;47794:2;47798:7;47807:1;47766:21;:43::i;:::-;47902:15;47899:160;;;48042:1;48021:19;48014:30;47899:160;48439:18;:24;48458:4;48439:24;;;;;;;;;;;;;;;;48437:26;;;;;;;;;;;;48508:18;:22;48527:2;48508:22;;;;;;;;;;;;;;;;48506:24;;;;;;;;;;;48830:146;48867:2;48916:45;48931:4;48937:2;48941:19;48916:14;:45::i;:::-;29030:8;48888:73;48830:18;:146::i;:::-;48801:17;:26;48819:7;48801:26;;;;;;;;;;;:175;;;;49147:1;29030:8;49096:19;:47;:52;49092:627;;;49169:19;49201:1;49191:7;:11;49169:33;;49358:1;49324:17;:30;49342:11;49324:30;;;;;;;;;;;;:35;49320:384;;;49462:13;;49447:11;:28;49443:242;;49642:19;49609:17;:30;49627:11;49609:30;;;;;;;;;;;:52;;;;49443:242;49320:384;49150:569;49092:627;49766:7;49762:2;49747:27;;49756:4;49747:27;;;;;;;;;;;;49785:42;49806:4;49812:2;49816:7;49825:1;49785:20;:42::i;:::-;47141:2694;;;47010:2825;;;:::o;72222:126::-;15995:13;:11;:13::i;:::-;72326:18:::1;72306:17;:38;;;;72222:126:::0;:::o;72900:153::-;15995:13;:11;:13::i;:::-;4309:1:::1;4907:7;;:19;;4899:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4309:1;5040:7;:18;;;;72963:7:::2;72984;:5;:7::i;:::-;72976:21;;73005;72976:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72962:69;;;73046:2;73038:11;;;::::0;::::2;;72950:103;4265:1:::1;5219:7;:22;;;;72900:153::o:0;49931:193::-;50077:39;50094:4;50100:2;50104:7;50077:39;;;;;;;;;;;;:16;:39::i;:::-;49931:193;;;:::o;72148:72::-;15995:13;:11;:13::i;:::-;72211:5:::1;72204:4;:12;;;;72148:72:::0;:::o;72482:130::-;15995:13;:11;:13::i;:::-;72590:18:::1;72570:17;:38;;;;;;;;;;;;:::i;:::-;;72482:130:::0;:::o;69625:28::-;;;;;;;;;;;;;:::o;69337:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69455:24::-;;;;:::o;69304:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38273:152::-;38345:7;38388:27;38407:7;38388:18;:27::i;:::-;38365:52;;38273:152;;;:::o;33815:233::-;33887:7;33928:1;33911:19;;:5;:19;;;33907:60;;;33939:28;;;;;;;;;;;;;;33907:60;27974:13;33985:18;:25;34004:5;33985:25;;;;;;;;;;;;;;;;:55;33978:62;;33815:233;;;:::o;16757:103::-;15995:13;:11;:13::i;:::-;16822:30:::1;16849:1;16822:18;:30::i;:::-;16757:103::o:0;72616:98::-;15995:13;:11;:13::i;:::-;72700:10:::1;72688:9;:22;;;;;;;;;;;;:::i;:::-;;72616:98:::0;:::o;69551:32::-;;;;:::o;16109:87::-;16155:7;16182:6;;;;;;;;;;;16175:13;;16109:87;:::o;69513:33::-;;;;:::o;37056:104::-;37112:13;37145:7;37138:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37056:104;:::o;70642:666::-;70707:11;70168:1;70154:11;:15;:52;;;;;70188:18;;70173:11;:33;;70154:52;70146:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;70299:17;;70284:11;70256;:25;70268:12;:10;:12::i;:::-;70256:25;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:60;;70238:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;70409:9;;70394:11;70378:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;70370:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;70506:11;70478;:25;70490:12;:10;:12::i;:::-;70478:25;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;70450:11;:25;70462:12;:10;:12::i;:::-;70450:25;;;;;;;;;;;;;;;:67;;;;70735:7:::1;;;;;;;;;;;70727:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;70801:8;;70774:10;:24;70785:12;:10;:12::i;:::-;70774:24;;;;;;;;;;;;;;;;:35;70771:534;;;70853:8;;70839:11;:22;70836:49;;;70877:8;;70863:22;;70836:49;70947:4;;70935:8;;70921:11;:22;;;;:::i;:::-;70920:31;;;;:::i;:::-;70907:9;:44;;70899:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;71019:11;70991:10;:24;71002:12;:10;:12::i;:::-;70991:24;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;71044:36;71054:12;:10;:12::i;:::-;71068:11;71044:9;:36::i;:::-;70771:534;;;71165:4;;71151:11;:18;;;;:::i;:::-;71138:9;:31;;71130:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;71238:11;71210:10;:24;71221:12;:10;:12::i;:::-;71210:24;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;71261:36;71271:12;:10;:12::i;:::-;71285:11;71261:9;:36::i;:::-;70771:534;70642:666:::0;;:::o;43929:234::-;44076:8;44024:18;:39;44043:19;:17;:19::i;:::-;44024:39;;;;;;;;;;;;;;;:49;44064:8;44024:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;44136:8;44100:55;;44115:19;:17;:19::i;:::-;44100:55;;;44146:8;44100:55;;;;;;:::i;:::-;;;;;;;;43929:234;;:::o;69593:27::-;;;;;;;;;;;;;:::o;69375:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72350:128::-;15995:13;:11;:13::i;:::-;72455:19:::1;72434:18;:40;;;;72350:128:::0;:::o;50722:407::-;50897:31;50910:4;50916:2;50920:7;50897:12;:31::i;:::-;50961:1;50943:2;:14;;;:19;50939:183;;50982:56;51013:4;51019:2;51023:7;51032:5;50982:30;:56::i;:::-;50977:145;;51066:40;;;;;;;;;;;;;;50977:145;50939:183;50722:407;;;;:::o;71618:443::-;71692:13;71722:17;71730:8;71722:7;:17::i;:::-;71714:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;71816:5;71804:17;;:8;;;;;;;;;;;:17;;;71800:64;;;71839:17;71832:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71800:64;71872:28;71903:10;:8;:10::i;:::-;71872:41;;71958:1;71933:14;71927:28;:32;:130;;;;;;;;;;;;;;;;;71995:14;72011:19;:8;:17;:19::i;:::-;72032:9;71978:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71927:130;71920:137;;;71618:443;;;;:::o;69484:24::-;;;;:::o;72065:79::-;15995:13;:11;:13::i;:::-;72134:6:::1;72123:8;;:17;;;;;;;;;;;;;;;;;;72065:79:::0;:::o;72822:74::-;15995:13;:11;:13::i;:::-;72885:7:::1;;;;;;;;;;;72884:8;72874:7;;:18;;;;;;;;;;;;;;;;;;72822:74::o:0;69249:46::-;;;;;;;;;;;;;;;;;:::o;44320:164::-;44417:4;44441:18;:25;44460:5;44441:25;;;;;;;;;;;;;;;:35;44467:8;44441:35;;;;;;;;;;;;;;;;;;;;;;;;;44434:42;;44320:164;;;;:::o;71314:203::-;15995:13;:11;:13::i;:::-;71441:9:::1;;71426:11;71410:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;71402:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;71480:33;71490:9;71501:11;71480:9;:33::i;:::-;71314:203:::0;;:::o;17015:201::-;15995:13;:11;:13::i;:::-;17124:1:::1;17104:22;;:8;:22;;;;17096:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17180:28;17199:8;17180:18;:28::i;:::-;17015:201:::0;:::o;44742:282::-;44807:4;44863:7;44844:15;:13;:15::i;:::-;:26;;:66;;;;;44897:13;;44887:7;:23;44844:66;:153;;;;;44996:1;28750:8;44948:17;:26;44966:7;44948:26;;;;;;;;;;;;:44;:49;44844:153;44824:173;;44742:282;;;:::o;67050:105::-;67110:7;67137:10;67130:17;;67050:105;:::o;16274:132::-;16349:12;:10;:12::i;:::-;16338:23;;:7;:5;:7::i;:::-;:23;;;16330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16274:132::o;71521:93::-;71586:7;71609:1;71602:8;;71521:93;:::o;39428:1275::-;39495:7;39515:12;39530:7;39515:22;;39598:4;39579:15;:13;:15::i;:::-;:23;39575:1061;;39632:13;;39625:4;:20;39621:1015;;;39670:14;39687:17;:23;39705:4;39687:23;;;;;;;;;;;;39670:40;;39804:1;28750:8;39776:6;:24;:29;39772:845;;;40441:113;40458:1;40448:6;:11;40441:113;;;40501:17;:25;40519:6;;;;;;;40501:25;;;;;;;;;;;;40492:34;;40441:113;;;40587:6;40580:13;;;;;;39772:845;39647:989;39621:1015;39575:1061;40664:31;;;;;;;;;;;;;;39428:1275;;;;:::o;45905:485::-;46007:27;46036:23;46077:38;46118:15;:24;46134:7;46118:24;;;;;;;;;;;46077:65;;46295:18;46272:41;;46352:19;46346:26;46327:45;;46257:126;45905:485;;;:::o;45133:659::-;45282:11;45447:16;45440:5;45436:28;45427:37;;45607:16;45596:9;45592:32;45579:45;;45757:15;45746:9;45743:30;45735:5;45724:9;45721:20;45718:56;45708:66;;45133:659;;;;;:::o;51791:159::-;;;;;:::o;66359:311::-;66494:7;66514:16;29154:3;66540:19;:41;;66514:68;;29154:3;66608:31;66619:4;66625:2;66629:9;66608:10;:31::i;:::-;66600:40;;:62;;66593:69;;;66359:311;;;;;:::o;41251:450::-;41331:14;41499:16;41492:5;41488:28;41479:37;;41676:5;41662:11;41637:23;41633:41;41630:52;41623:5;41620:63;41610:73;;41251:450;;;;:::o;52615:158::-;;;;;:::o;17376:191::-;17450:16;17469:6;;;;;;;;;;;17450:25;;17495:8;17486:6;;:17;;;;;;;;;;;;;;;;;;17550:8;17519:40;;17540:8;17519:40;;;;;;;;;;;;17439:128;17376:191;:::o;14660:98::-;14713:7;14740:10;14733:17;;14660:98;:::o;60882:112::-;60959:27;60969:2;60973:8;60959:27;;;;;;;;;;;;:9;:27::i;:::-;60882:112;;:::o;53213:716::-;53376:4;53422:2;53397:45;;;53443:19;:17;:19::i;:::-;53464:4;53470:7;53479:5;53397:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53393:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53697:1;53680:6;:13;:18;53676:235;;;53726:40;;;;;;;;;;;;;;53676:235;53869:6;53863:13;53854:6;53850:2;53846:15;53839:38;53393:529;53566:54;;;53556:64;;;:6;:64;;;;53549:71;;;53213:716;;;;;;:::o;73057:102::-;73117:13;73146:9;73139:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73057:102;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;66060:147::-;66197:6;66060:147;;;;;:::o;60109:689::-;60240:19;60246:2;60250:8;60240:5;:19::i;:::-;60319:1;60301:2;:14;;;:19;60297:483;;60341:11;60355:13;;60341:27;;60387:13;60409:8;60403:3;:14;60387:30;;60436:233;60467:62;60506:1;60510:2;60514:7;;;;;;60523:5;60467:30;:62::i;:::-;60462:167;;60565:40;;;;;;;;;;;;;;60462:167;60664:3;60656:5;:11;60436:233;;60751:3;60734:13;;:20;60730:34;;60756:8;;;60730:34;60322:458;;60297:483;60109:689;;;:::o;54391:2966::-;54464:20;54487:13;;54464:36;;54527:1;54515:8;:13;54511:44;;;54537:18;;;;;;;;;;;;;;54511:44;54568:61;54598:1;54602:2;54606:12;54620:8;54568:21;:61::i;:::-;55112:1;28112:2;55082:1;:26;;55081:32;55069:8;:45;55043:18;:22;55062:2;55043:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;55391:139;55428:2;55482:33;55505:1;55509:2;55513:1;55482:14;:33::i;:::-;55449:30;55470:8;55449:20;:30::i;:::-;:66;55391:18;:139::i;:::-;55357:17;:31;55375:12;55357:31;;;;;;;;;;;:173;;;;55547:16;55578:11;55607:8;55592:12;:23;55578:37;;56128:16;56124:2;56120:25;56108:37;;56500:12;56460:8;56419:1;56357:25;56298:1;56237;56210:335;56871:1;56857:12;56853:20;56811:346;56912:3;56903:7;56900:16;56811:346;;57130:7;57120:8;57117:1;57090:25;57087:1;57084;57079:59;56965:1;56956:7;56952:15;56941:26;;56811:346;;;56815:77;57202:1;57190:8;:13;57186:45;;;57212:19;;;;;;;;;;;;;;57186:45;57264:3;57248:13;:19;;;;54817:2462;;57289:60;57318:1;57322:2;57326:12;57340:8;57289:20;:60::i;:::-;54453:2904;54391:2966;;:::o;41803:324::-;41873:14;42106:1;42096:8;42093:15;42067:24;42063:46;42053:56;;41803:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:329::-;7970:6;8019:2;8007:9;7998:7;7994:23;7990:32;7987:119;;;8025:79;;:::i;:::-;7987:119;8145:1;8170:53;8215:7;8206:6;8195:9;8191:22;8170:53;:::i;:::-;8160:63;;8116:117;7911:329;;;;:::o;8246:619::-;8323:6;8331;8339;8388:2;8376:9;8367:7;8363:23;8359:32;8356:119;;;8394:79;;:::i;:::-;8356:119;8514:1;8539:53;8584:7;8575:6;8564:9;8560:22;8539:53;:::i;:::-;8529:63;;8485:117;8641:2;8667:53;8712:7;8703:6;8692:9;8688:22;8667:53;:::i;:::-;8657:63;;8612:118;8769:2;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8740:118;8246:619;;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:323::-;11697:6;11746:2;11734:9;11725:7;11721:23;11717:32;11714:119;;;11752:79;;:::i;:::-;11714:119;11872:1;11897:50;11939:7;11930:6;11919:9;11915:22;11897:50;:::i;:::-;11887:60;;11843:114;11641:323;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:181::-;13582:33;13578:1;13570:6;13566:14;13559:57;13442:181;:::o;13629:366::-;13771:3;13792:67;13856:2;13851:3;13792:67;:::i;:::-;13785:74;;13868:93;13957:3;13868:93;:::i;:::-;13986:2;13981:3;13977:12;13970:19;;13629:366;;;:::o;14001:419::-;14167:4;14205:2;14194:9;14190:18;14182:26;;14254:9;14248:4;14244:20;14240:1;14229:9;14225:17;14218:47;14282:131;14408:4;14282:131;:::i;:::-;14274:139;;14001:419;;;:::o;14426:147::-;14527:11;14564:3;14549:18;;14426:147;;;;:::o;14579:114::-;;:::o;14699:398::-;14858:3;14879:83;14960:1;14955:3;14879:83;:::i;:::-;14872:90;;14971:93;15060:3;14971:93;:::i;:::-;15089:1;15084:3;15080:11;15073:18;;14699:398;;;:::o;15103:379::-;15287:3;15309:147;15452:3;15309:147;:::i;:::-;15302:154;;15473:3;15466:10;;15103:379;;;:::o;15488:170::-;15628:22;15624:1;15616:6;15612:14;15605:46;15488:170;:::o;15664:366::-;15806:3;15827:67;15891:2;15886:3;15827:67;:::i;:::-;15820:74;;15903:93;15992:3;15903:93;:::i;:::-;16021:2;16016:3;16012:12;16005:19;;15664:366;;;:::o;16036:419::-;16202:4;16240:2;16229:9;16225:18;16217:26;;16289:9;16283:4;16279:20;16275:1;16264:9;16260:17;16253:47;16317:131;16443:4;16317:131;:::i;:::-;16309:139;;16036:419;;;:::o;16461:180::-;16509:77;16506:1;16499:88;16606:4;16603:1;16596:15;16630:4;16627:1;16620:15;16647:305;16687:3;16706:20;16724:1;16706:20;:::i;:::-;16701:25;;16740:20;16758:1;16740:20;:::i;:::-;16735:25;;16894:1;16826:66;16822:74;16819:1;16816:81;16813:107;;;16900:18;;:::i;:::-;16813:107;16944:1;16941;16937:9;16930:16;;16647:305;;;;:::o;16958:173::-;17098:25;17094:1;17086:6;17082:14;17075:49;16958:173;:::o;17137:366::-;17279:3;17300:67;17364:2;17359:3;17300:67;:::i;:::-;17293:74;;17376:93;17465:3;17376:93;:::i;:::-;17494:2;17489:3;17485:12;17478:19;;17137:366;;;:::o;17509:419::-;17675:4;17713:2;17702:9;17698:18;17690:26;;17762:9;17756:4;17752:20;17748:1;17737:9;17733:17;17726:47;17790:131;17916:4;17790:131;:::i;:::-;17782:139;;17509:419;;;:::o;17934:170::-;18074:22;18070:1;18062:6;18058:14;18051:46;17934:170;:::o;18110:366::-;18252:3;18273:67;18337:2;18332:3;18273:67;:::i;:::-;18266:74;;18349:93;18438:3;18349:93;:::i;:::-;18467:2;18462:3;18458:12;18451:19;;18110:366;;;:::o;18482:419::-;18648:4;18686:2;18675:9;18671:18;18663:26;;18735:9;18729:4;18725:20;18721:1;18710:9;18706:17;18699:47;18763:131;18889:4;18763:131;:::i;:::-;18755:139;;18482:419;;;:::o;18907:167::-;19047:19;19043:1;19035:6;19031:14;19024:43;18907:167;:::o;19080:366::-;19222:3;19243:67;19307:2;19302:3;19243:67;:::i;:::-;19236:74;;19319:93;19408:3;19319:93;:::i;:::-;19437:2;19432:3;19428:12;19421:19;;19080:366;;;:::o;19452:419::-;19618:4;19656:2;19645:9;19641:18;19633:26;;19705:9;19699:4;19695:20;19691:1;19680:9;19676:17;19669:47;19733:131;19859:4;19733:131;:::i;:::-;19725:139;;19452:419;;;:::o;19877:191::-;19917:4;19937:20;19955:1;19937:20;:::i;:::-;19932:25;;19971:20;19989:1;19971:20;:::i;:::-;19966:25;;20010:1;20007;20004:8;20001:34;;;20015:18;;:::i;:::-;20001:34;20060:1;20057;20053:9;20045:17;;19877:191;;;;:::o;20074:348::-;20114:7;20137:20;20155:1;20137:20;:::i;:::-;20132:25;;20171:20;20189:1;20171:20;:::i;:::-;20166:25;;20359:1;20291:66;20287:74;20284:1;20281:81;20276:1;20269:9;20262:17;20258:105;20255:131;;;20366:18;;:::i;:::-;20255:131;20414:1;20411;20407:9;20396:20;;20074:348;;;;:::o;20428:171::-;20568:23;20564:1;20556:6;20552:14;20545:47;20428:171;:::o;20605:366::-;20747:3;20768:67;20832:2;20827:3;20768:67;:::i;:::-;20761:74;;20844:93;20933:3;20844:93;:::i;:::-;20962:2;20957:3;20953:12;20946:19;;20605:366;;;:::o;20977:419::-;21143:4;21181:2;21170:9;21166:18;21158:26;;21230:9;21224:4;21220:20;21216:1;21205:9;21201:17;21194:47;21258:131;21384:4;21258:131;:::i;:::-;21250:139;;20977:419;;;:::o;21402:172::-;21542:24;21538:1;21530:6;21526:14;21519:48;21402:172;:::o;21580:366::-;21722:3;21743:67;21807:2;21802:3;21743:67;:::i;:::-;21736:74;;21819:93;21908:3;21819:93;:::i;:::-;21937:2;21932:3;21928:12;21921:19;;21580:366;;;:::o;21952:419::-;22118:4;22156:2;22145:9;22141:18;22133:26;;22205:9;22199:4;22195:20;22191:1;22180:9;22176:17;22169:47;22233:131;22359:4;22233:131;:::i;:::-;22225:139;;21952:419;;;:::o;22377:234::-;22517:34;22513:1;22505:6;22501:14;22494:58;22586:17;22581:2;22573:6;22569:15;22562:42;22377:234;:::o;22617:366::-;22759:3;22780:67;22844:2;22839:3;22780:67;:::i;:::-;22773:74;;22856:93;22945:3;22856:93;:::i;:::-;22974:2;22969:3;22965:12;22958:19;;22617:366;;;:::o;22989:419::-;23155:4;23193:2;23182:9;23178:18;23170:26;;23242:9;23236:4;23232:20;23228:1;23217:9;23213:17;23206:47;23270:131;23396:4;23270:131;:::i;:::-;23262:139;;22989:419;;;:::o;23414:148::-;23516:11;23553:3;23538:18;;23414:148;;;;:::o;23568:377::-;23674:3;23702:39;23735:5;23702:39;:::i;:::-;23757:89;23839:6;23834:3;23757:89;:::i;:::-;23750:96;;23855:52;23900:6;23895:3;23888:4;23881:5;23877:16;23855:52;:::i;:::-;23932:6;23927:3;23923:16;23916:23;;23678:267;23568:377;;;;:::o;23951:141::-;24000:4;24023:3;24015:11;;24046:3;24043:1;24036:14;24080:4;24077:1;24067:18;24059:26;;23951:141;;;:::o;24122:845::-;24225:3;24262:5;24256:12;24291:36;24317:9;24291:36;:::i;:::-;24343:89;24425:6;24420:3;24343:89;:::i;:::-;24336:96;;24463:1;24452:9;24448:17;24479:1;24474:137;;;;24625:1;24620:341;;;;24441:520;;24474:137;24558:4;24554:9;24543;24539:25;24534:3;24527:38;24594:6;24589:3;24585:16;24578:23;;24474:137;;24620:341;24687:38;24719:5;24687:38;:::i;:::-;24747:1;24761:154;24775:6;24772:1;24769:13;24761:154;;;24849:7;24843:14;24839:1;24834:3;24830:11;24823:35;24899:1;24890:7;24886:15;24875:26;;24797:4;24794:1;24790:12;24785:17;;24761:154;;;24944:6;24939:3;24935:16;24928:23;;24627:334;;24441:520;;24229:738;;24122:845;;;;:::o;24973:589::-;25198:3;25220:95;25311:3;25302:6;25220:95;:::i;:::-;25213:102;;25332:95;25423:3;25414:6;25332:95;:::i;:::-;25325:102;;25444:92;25532:3;25523:6;25444:92;:::i;:::-;25437:99;;25553:3;25546:10;;24973:589;;;;;;:::o;25568:168::-;25708:20;25704:1;25696:6;25692:14;25685:44;25568:168;:::o;25742:366::-;25884:3;25905:67;25969:2;25964:3;25905:67;:::i;:::-;25898:74;;25981:93;26070:3;25981:93;:::i;:::-;26099:2;26094:3;26090:12;26083:19;;25742:366;;;:::o;26114:419::-;26280:4;26318:2;26307:9;26303:18;26295:26;;26367:9;26361:4;26357:20;26353:1;26342:9;26338:17;26331:47;26395:131;26521:4;26395:131;:::i;:::-;26387:139;;26114:419;;;:::o;26539:225::-;26679:34;26675:1;26667:6;26663:14;26656:58;26748:8;26743:2;26735:6;26731:15;26724:33;26539:225;:::o;26770:366::-;26912:3;26933:67;26997:2;26992:3;26933:67;:::i;:::-;26926:74;;27009:93;27098:3;27009:93;:::i;:::-;27127:2;27122:3;27118:12;27111:19;;26770:366;;;:::o;27142:419::-;27308:4;27346:2;27335:9;27331:18;27323:26;;27395:9;27389:4;27385:20;27381:1;27370:9;27366:17;27359:47;27423:131;27549:4;27423:131;:::i;:::-;27415:139;;27142:419;;;:::o;27567:182::-;27707:34;27703:1;27695:6;27691:14;27684:58;27567:182;:::o;27755:366::-;27897:3;27918:67;27982:2;27977:3;27918:67;:::i;:::-;27911:74;;27994:93;28083:3;27994:93;:::i;:::-;28112:2;28107:3;28103:12;28096:19;;27755:366;;;:::o;28127:419::-;28293:4;28331:2;28320:9;28316:18;28308:26;;28380:9;28374:4;28370:20;28366:1;28355:9;28351:17;28344:47;28408:131;28534:4;28408:131;:::i;:::-;28400:139;;28127:419;;;:::o;28552:98::-;28603:6;28637:5;28631:12;28621:22;;28552:98;;;:::o;28656:168::-;28739:11;28773:6;28768:3;28761:19;28813:4;28808:3;28804:14;28789:29;;28656:168;;;;:::o;28830:360::-;28916:3;28944:38;28976:5;28944:38;:::i;:::-;28998:70;29061:6;29056:3;28998:70;:::i;:::-;28991:77;;29077:52;29122:6;29117:3;29110:4;29103:5;29099:16;29077:52;:::i;:::-;29154:29;29176:6;29154:29;:::i;:::-;29149:3;29145:39;29138:46;;28920:270;28830:360;;;;:::o;29196:640::-;29391:4;29429:3;29418:9;29414:19;29406:27;;29443:71;29511:1;29500:9;29496:17;29487:6;29443:71;:::i;:::-;29524:72;29592:2;29581:9;29577:18;29568:6;29524:72;:::i;:::-;29606;29674:2;29663:9;29659:18;29650:6;29606:72;:::i;:::-;29725:9;29719:4;29715:20;29710:2;29699:9;29695:18;29688:48;29753:76;29824:4;29815:6;29753:76;:::i;:::-;29745:84;;29196:640;;;;;;;:::o;29842:141::-;29898:5;29929:6;29923:13;29914:22;;29945:32;29971:5;29945:32;:::i;:::-;29842:141;;;;:::o;29989:349::-;30058:6;30107:2;30095:9;30086:7;30082:23;30078:32;30075:119;;;30113:79;;:::i;:::-;30075:119;30233:1;30258:63;30313:7;30304:6;30293:9;30289:22;30258:63;:::i;:::-;30248:73;;30204:127;29989:349;;;;:::o;30344:233::-;30383:3;30406:24;30424:5;30406:24;:::i;:::-;30397:33;;30452:66;30445:5;30442:77;30439:103;;;30522:18;;:::i;:::-;30439:103;30569:1;30562:5;30558:13;30551:20;;30344:233;;;:::o;30583:180::-;30631:77;30628:1;30621:88;30728:4;30725:1;30718:15;30752:4;30749:1;30742:15;30769:185;30809:1;30826:20;30844:1;30826:20;:::i;:::-;30821:25;;30860:20;30878:1;30860:20;:::i;:::-;30855:25;;30899:1;30889:35;;30904:18;;:::i;:::-;30889:35;30946:1;30943;30939:9;30934:14;;30769:185;;;;:::o;30960:176::-;30992:1;31009:20;31027:1;31009:20;:::i;:::-;31004:25;;31043:20;31061:1;31043:20;:::i;:::-;31038:25;;31082:1;31072:35;;31087:18;;:::i;:::-;31072:35;31128:1;31125;31121:9;31116:14;;30960:176;;;;:::o;31142:180::-;31190:77;31187:1;31180:88;31287:4;31284:1;31277:15;31311:4;31308:1;31301:15

Swarm Source

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