ETH Price: $3,457.62 (+6.48%)
Gas: 7 Gwei

Token

CryptoPunksBack (CPB)
 

Overview

Max Total Supply

1,830 CPB

Holders

976

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 CPB
0x2b281c99509d02a9025da0f10e6f9ec4099b3f12
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Crypto Punks Back is the product to come from collaboration, and it was a huge team effort, resulting in the creation of 10,000 unique views of the backs of crypto punks. The completion of this project felt more like a miracle than anything else.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoPunksBack

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: operator-filter-registry/src/lib/Constants.sol


pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

// File: operator-filter-registry/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

// File: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: operator-filter-registry/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

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

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

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

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

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 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 from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

// File: contracts/CryptoPunksBackV2.sol



//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel

pragma solidity >=0.7.0 <0.9.0;






contract CryptoPunksBack is
    ERC721A,
    Ownable,
    ReentrancyGuard,
    DefaultOperatorFilterer
{
    string public baseURI;
    string public notRevealedUri = "ipfs://bafkreidehu5kbpeefoabvnypbiolyhremrfzzoata4oqbhpnrv6jnwxghu";
    uint256 public cost = 0.0079 ether;
    uint256 public maxSupply = 10000;
    uint256 public MaxPerWallet = 10;
    uint256 public FreePerWallet = 2;
    bool public paused = false;
    bool public revealed = false;
    bool public preSale = true;
    bytes32 public merkleRoot;
    mapping(address => uint256) public FreeClaimed;

    constructor() ERC721A("CryptoPunksBack", "CPB") {}

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

    // public
    /// @dev Public mint
    function mint(uint256 tokens) public payable nonReentrant {
        require(tx.origin == _msgSenderERC721A(), "BTOS NOT ALLOWED");
        require(!paused, "CPB: oops contract is paused");
        require(!preSale, "CPB: Sale Hasn't started yet");
        require(
            tokens <= MaxPerWallet,
            "CPB: max mint amount per tx exceeded"
        );
        require(
            numberMinted(_msgSenderERC721A()) + tokens <= MaxPerWallet,
            "CPB: max NFT per Wallet exceeded"
        );
        require(totalSupply() + tokens <= maxSupply, "CPB: We Soldout");
        require(msg.value >= cost * tokens, "CPB: insufficient funds");
        _safeMint(_msgSenderERC721A(), tokens);
    }

    /// @dev presale mint for whitelisted
    function presalemint(uint256 tokens, bytes32[] calldata merkleProof)
        public
        payable
        nonReentrant
    {
        require(!paused, "CPB: oops contract is paused");
        require(preSale, "CPB: Presale Hasn't started yet");
        require(
            MerkleProof.verify(
                merkleProof,
                merkleRoot,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "CPB: You are not Whitelisted"
        );
        require(tokens <= FreePerWallet, "CPB: max mint per Tx exceeded");
        require(
            numberMinted(_msgSenderERC721A()) + tokens <= MaxPerWallet,
            "CPB: max NFT per Wallet exceeded"
        );
        require(
            FreeClaimed[_msgSenderERC721A()] + tokens <= FreePerWallet,
            "CPB: You have minted your Free NFTs"
        );

        FreeClaimed[_msgSenderERC721A()] += tokens;
        _safeMint(_msgSenderERC721A(), tokens);
    }

    /// @dev use it for giveaway and team mint
    function airdrop(uint256 _mintAmount, address destination)
        public
        onlyOwner
        nonReentrant
    {
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "max NFT limit exceeded"
        );

        _safeMint(destination, _mintAmount);
    }

    /// @notice returns metadata link of tokenid
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721AMetadata: URI query for nonexistent token"
        );

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

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        _toString(tokenId),
                        ".json"
                    )
                )
                : "";
    }

    /// @notice return the number minted by an address
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    /// @notice return the tokens owned by an address
    function tokensOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (
                uint256 i = _startTokenId();
                tokenIdsIdx != tokenIdsLength;
                ++i
            ) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }

    //only owner
    function reveal(bool _state) public onlyOwner {
        revealed = _state;
    }

    /// @dev change the merkle root for the whitelist phase
    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    /// @dev change the public price(amount need to be in wei)
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    /// @dev cut the supply if we dont sold out
    function setMaxsupply(uint256 _newsupply) public onlyOwner {
        maxSupply = _newsupply;
    }

    function setMaxPerWallet(uint256 _newwallet) public onlyOwner {
        MaxPerWallet = _newwallet;
    }

        function setFreePerWallet(uint256 _newfree) public onlyOwner {
        FreePerWallet = _newfree;
    }

    /// @dev set your baseuri
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    /// @dev set hidden uri
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    /// @dev to pause and unpause your contract(use booleans true or false)
    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    /// @dev activate whitelist sale(use booleans true or false)
    function togglepreSale(bool _state) external onlyOwner {
        preSale = _state;
    }

    /// @dev withdraw funds from contract
    function withdraw() public payable onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        payable(_msgSenderERC721A()).transfer(balance);
    }

    /// Opensea Royalties
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"FreeClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"presalemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","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":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfree","type":"uint256"}],"name":"setFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newwallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepreSale","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

61010060405260426080818152906200288460a039600b9062000023908262000334565b50661c110215b9c000600c55612710600d55600a600e556002600f556010805462ffffff1916620100001790553480156200005d57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600f81526020016e43727970746f50756e6b734261636b60881b8152506040518060400160405280600381526020016221a82160e91b8152508160029081620000ca919062000334565b506003620000d9828262000334565b50506000805550620000eb336200023d565b60016009556daaeb6d7670e522a718067333cd4e3b15620002355780156200018357604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200016457600080fd5b505af115801562000179573d6000803e3d6000fd5b5050505062000235565b6001600160a01b03821615620001d45760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000149565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200021b57600080fd5b505af115801562000230573d6000803e3d6000fd5b505050505b505062000400565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002ba57607f821691505b602082108103620002db57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200032f57600081815260208120601f850160051c810160208610156200030a5750805b601f850160051c820191505b818110156200032b5782815560010162000316565b5050505b505050565b81516001600160401b038111156200035057620003506200028f565b6200036881620003618454620002a5565b84620002e1565b602080601f831160018114620003a05760008415620003875750858301515b600019600386901b1c1916600185901b1785556200032b565b600085815260208120601f198616915b82811015620003d157888601518255948401946001909101908401620003b0565b5085821015620003f05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61247480620004106000396000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063a0712d68116100c1578063dc33e6811161007a578063dc33e681146106de578063e268e4d3146106fe578063e985e9c51461071e578063f2c4ce1e1461073e578063f2fde38b1461075e578063fea0e0581461077e57600080fd5b8063a0712d6814610642578063a22cb46514610655578063b88d4fde14610675578063bc63f02e14610688578063c87b56dd146106a8578063d5abeb01146106c857600080fd5b80638462151c116101135780638462151c146105965780638bec1c6d146105c35780638da5cb5b146105d9578063940cd05b146105f757806395d89b41146106175780639769383d1461062c57600080fd5b80636352211e1461050c5780636c0360eb1461052c57806370a0823114610541578063715018a6146105615780637cb647591461057657600080fd5b80632eb4a7ab116101e857806344a0d68a116101ac57806344a0d68a146104535780635183022714610473578063536307451461049257806355f804b3146104b25780635a7adf7f146104d25780635c975abb146104f257600080fd5b80632eb4a7ab146103d357806339bd1767146103e95780633ccfd60b1461041657806341f434341461041e57806342842e0e1461044057600080fd5b8063081c8c441161023a578063081c8c441461033b578063095ea7b31461035057806313faede614610363578063149835a01461038757806318160ddd146103a757806323b872dd146103c057600080fd5b806301ffc9a71461027757806302329a29146102ac578063036e4cb5146102ce57806306fdde03146102e1578063081812fc14610303575b600080fd5b34801561028357600080fd5b50610297610292366004611de3565b61079e565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004611e0e565b6107f0565b005b6102cc6102dc366004611e2b565b61080b565b3480156102ed57600080fd5b506102f6610af1565b6040516102a39190611efa565b34801561030f57600080fd5b5061032361031e366004611f0d565b610b83565b6040516001600160a01b0390911681526020016102a3565b34801561034757600080fd5b506102f6610bc7565b6102cc61035e366004611f42565b610c55565b34801561036f57600080fd5b50610379600c5481565b6040519081526020016102a3565b34801561039357600080fd5b506102cc6103a2366004611f0d565b610cf5565b3480156103b357600080fd5b5060015460005403610379565b6102cc6103ce366004611f6c565b610d02565b3480156103df57600080fd5b5061037960115481565b3480156103f557600080fd5b50610379610404366004611fa8565b60126020526000908152604090205481565b6102cc610d2d565b34801561042a57600080fd5b506103236daaeb6d7670e522a718067333cd4e81565b6102cc61044e366004611f6c565b610d7a565b34801561045f57600080fd5b506102cc61046e366004611f0d565b610d9f565b34801561047f57600080fd5b5060105461029790610100900460ff1681565b34801561049e57600080fd5b506102cc6104ad366004611f0d565b610dac565b3480156104be57600080fd5b506102cc6104cd36600461204f565b610db9565b3480156104de57600080fd5b506010546102979062010000900460ff1681565b3480156104fe57600080fd5b506010546102979060ff1681565b34801561051857600080fd5b50610323610527366004611f0d565b610dd1565b34801561053857600080fd5b506102f6610ddc565b34801561054d57600080fd5b5061037961055c366004611fa8565b610de9565b34801561056d57600080fd5b506102cc610e38565b34801561058257600080fd5b506102cc610591366004611f0d565b610e4a565b3480156105a257600080fd5b506105b66105b1366004611fa8565b610e57565b6040516102a39190612098565b3480156105cf57600080fd5b50610379600e5481565b3480156105e557600080fd5b506008546001600160a01b0316610323565b34801561060357600080fd5b506102cc610612366004611e0e565b610f60565b34801561062357600080fd5b506102f6610f82565b34801561063857600080fd5b50610379600f5481565b6102cc610650366004611f0d565b610f91565b34801561066157600080fd5b506102cc6106703660046120d0565b611219565b6102cc610683366004612107565b611285565b34801561069457600080fd5b506102cc6106a3366004612183565b6112b2565b3480156106b457600080fd5b506102f66106c3366004611f0d565b611338565b3480156106d457600080fd5b50610379600d5481565b3480156106ea57600080fd5b506103796106f9366004611fa8565b6114aa565b34801561070a57600080fd5b506102cc610719366004611f0d565b6114d5565b34801561072a57600080fd5b506102976107393660046121af565b6114e2565b34801561074a57600080fd5b506102cc61075936600461204f565b611510565b34801561076a57600080fd5b506102cc610779366004611fa8565b611524565b34801561078a57600080fd5b506102cc610799366004611e0e565b61159a565b60006301ffc9a760e01b6001600160e01b0319831614806107cf57506380ac58cd60e01b6001600160e01b03198316145b806107ea5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6107f86115be565b6010805460ff1916911515919091179055565b610813611618565b60105460ff161561086b5760405162461bcd60e51b815260206004820152601c60248201527f4350423a206f6f707320636f6e7472616374206973207061757365640000000060448201526064015b60405180910390fd5b60105462010000900460ff166108c35760405162461bcd60e51b815260206004820152601f60248201527f4350423a2050726573616c65204861736e2774207374617274656420796574006044820152606401610862565b610938828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611671565b6109845760405162461bcd60e51b815260206004820152601c60248201527f4350423a20596f7520617265206e6f742057686974656c6973746564000000006044820152606401610862565b600f548311156109d65760405162461bcd60e51b815260206004820152601d60248201527f4350423a206d6178206d696e74207065722054782065786365656465640000006044820152606401610862565b600e54836109e3336114aa565b6109ed91906121ef565b1115610a3b5760405162461bcd60e51b815260206004820181905260248201527f4350423a206d6178204e4654207065722057616c6c65742065786365656465646044820152606401610862565b600f5433600090815260126020526040902054610a599085906121ef565b1115610ab35760405162461bcd60e51b815260206004820152602360248201527f4350423a20596f752068617665206d696e74656420796f75722046726565204e60448201526246547360e81b6064820152608401610862565b3360009081526012602052604081208054859290610ad29084906121ef565b90915550610ae290503384611687565b610aec6001600955565b505050565b606060028054610b0090612202565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2c90612202565b8015610b795780601f10610b4e57610100808354040283529160200191610b79565b820191906000526020600020905b815481529060010190602001808311610b5c57829003601f168201915b5050505050905090565b6000610b8e826116a1565b610bab576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b8054610bd490612202565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0090612202565b8015610c4d5780601f10610c2257610100808354040283529160200191610c4d565b820191906000526020600020905b815481529060010190602001808311610c3057829003601f168201915b505050505081565b6000610c6082610dd1565b9050336001600160a01b03821614610c9957610c7c81336114e2565b610c99576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610cfd6115be565b600d55565b826001600160a01b0381163314610d1c57610d1c336116c8565b610d27848484611781565b50505050565b610d356115be565b610d3d611618565b6040514790339082156108fc029083906000818181858888f19350505050158015610d6c573d6000803e3d6000fd5b5050610d786001600955565b565b826001600160a01b0381163314610d9457610d94336116c8565b610d2784848461191a565b610da76115be565b600c55565b610db46115be565b600f55565b610dc16115be565b600a610dcd8282612282565b5050565b60006107ea82611935565b600a8054610bd490612202565b60006001600160a01b038216610e12576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610e406115be565b610d78600061199c565b610e526115be565b601155565b60606000806000610e6785610de9565b905060008167ffffffffffffffff811115610e8457610e84611fc3565b604051908082528060200260200182016040528015610ead578160200160208202803683370190505b509050610eda60408051608081018252600080825260208201819052918101829052606081019190915290565b60005b838614610f5457610eed816119ee565b91508160400151610f4c5781516001600160a01b031615610f0d57815194505b876001600160a01b0316856001600160a01b031603610f4c5780838780600101985081518110610f3f57610f3f612342565b6020026020010181815250505b600101610edd565b50909695505050505050565b610f686115be565b601080549115156101000261ff0019909216919091179055565b606060038054610b0090612202565b610f99611618565b323314610fdb5760405162461bcd60e51b815260206004820152601060248201526f109513d4c81393d50810531313d5d15160821b6044820152606401610862565b60105460ff161561102e5760405162461bcd60e51b815260206004820152601c60248201527f4350423a206f6f707320636f6e747261637420697320706175736564000000006044820152606401610862565b60105462010000900460ff16156110875760405162461bcd60e51b815260206004820152601c60248201527f4350423a2053616c65204861736e2774207374617274656420796574000000006044820152606401610862565b600e548111156110e55760405162461bcd60e51b8152602060048201526024808201527f4350423a206d6178206d696e7420616d6f756e742070657220747820657863656044820152631959195960e21b6064820152608401610862565b600e54816110f2336114aa565b6110fc91906121ef565b111561114a5760405162461bcd60e51b815260206004820181905260248201527f4350423a206d6178204e4654207065722057616c6c65742065786365656465646044820152606401610862565b600d548161115b6001546000540390565b61116591906121ef565b11156111a55760405162461bcd60e51b815260206004820152600f60248201526e10d4108e8815d94814dbdb191bdd5d608a1b6044820152606401610862565b80600c546111b39190612358565b3410156112025760405162461bcd60e51b815260206004820152601760248201527f4350423a20696e73756666696369656e742066756e64730000000000000000006044820152606401610862565b61120c3382611687565b6112166001600955565b50565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836001600160a01b038116331461129f5761129f336116c8565b6112ab85858585611a6d565b5050505050565b6112ba6115be565b6112c2611618565b600d54826112d36001546000540390565b6112dd91906121ef565b11156113245760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610862565b61132e8183611687565b610dcd6001600955565b6060611343826116a1565b6113a85760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610862565b601054610100900460ff16151560000361144e57600b80546113c990612202565b80601f01602080910402602001604051908101604052809291908181526020018280546113f590612202565b80156114425780601f1061141757610100808354040283529160200191611442565b820191906000526020600020905b81548152906001019060200180831161142557829003601f168201915b50505050509050919050565b6000611458611ab1565b9050600081511161147857604051806020016040528060008152506114a3565b8061148284611ac0565b60405160200161149392919061236f565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166107ea565b6114dd6115be565b600e55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6115186115be565b600b610dcd8282612282565b61152c6115be565b6001600160a01b0381166115915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610862565b6112168161199c565b6115a26115be565b60108054911515620100000262ff000019909216919091179055565b6008546001600160a01b03163314610d785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610862565b60026009540361166a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610862565b6002600955565b60008261167e8584611b04565b14949350505050565b610dcd828260405180602001604052806000815250611b51565b60008054821080156107ea575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b1561121657604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611735573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175991906123ae565b61121657604051633b79c77360e21b81526001600160a01b0382166004820152602401610862565b600061178c82611935565b9050836001600160a01b0316816001600160a01b0316146117bf5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761180c576117ef86336114e2565b61180c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661183357604051633a954ecd60e21b815260040160405180910390fd5b801561183e57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036118d0576001840160008181526004602052604081205490036118ce5760005481146118ce5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610aec83838360405180602001604052806000815250611285565b6000816000548110156119835760008181526004602052604081205490600160e01b82169003611981575b806000036114a3575060001901600081815260046020526040902054611960565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160808101825260008082526020820181905291810182905260608101919091526000828152600460205260409020546107ea90604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b611a78848484610d02565b6001600160a01b0383163b15610d2757611a9484848484611bb7565b610d27576040516368d2bf6b60e11b815260040160405180910390fd5b6060600a8054610b0090612202565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611ada5750819003601f19909101908152919050565b600081815b8451811015611b4957611b3582868381518110611b2857611b28612342565b6020026020010151611ca3565b915080611b41816123cb565b915050611b09565b509392505050565b611b5b8383611ccf565b6001600160a01b0383163b15610aec576000548281035b611b856000868380600101945086611bb7565b611ba2576040516368d2bf6b60e11b815260040160405180910390fd5b818110611b725781600054146112ab57600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bec9033908990889088906004016123e4565b6020604051808303816000875af1925050508015611c27575060408051601f3d908101601f19168201909252611c2491810190612421565b60015b611c85573d808015611c55576040519150601f19603f3d011682016040523d82523d6000602084013e611c5a565b606091505b508051600003611c7d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000818310611cbf5760008281526020849052604090206114a3565b5060009182526020526040902090565b6000805490829003611cf45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611da357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611d6b565b5081600003611dc457604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461121657600080fd5b600060208284031215611df557600080fd5b81356114a381611dcd565b801515811461121657600080fd5b600060208284031215611e2057600080fd5b81356114a381611e00565b600080600060408486031215611e4057600080fd5b83359250602084013567ffffffffffffffff80821115611e5f57600080fd5b818601915086601f830112611e7357600080fd5b813581811115611e8257600080fd5b8760208260051b8501011115611e9757600080fd5b6020830194508093505050509250925092565b60005b83811015611ec5578181015183820152602001611ead565b50506000910152565b60008151808452611ee6816020860160208601611eaa565b601f01601f19169290920160200192915050565b6020815260006114a36020830184611ece565b600060208284031215611f1f57600080fd5b5035919050565b80356001600160a01b0381168114611f3d57600080fd5b919050565b60008060408385031215611f5557600080fd5b611f5e83611f26565b946020939093013593505050565b600080600060608486031215611f8157600080fd5b611f8a84611f26565b9250611f9860208501611f26565b9150604084013590509250925092565b600060208284031215611fba57600080fd5b6114a382611f26565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ff457611ff4611fc3565b604051601f8501601f19908116603f0116810190828211818310171561201c5761201c611fc3565b8160405280935085815286868601111561203557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561206157600080fd5b813567ffffffffffffffff81111561207857600080fd5b8201601f8101841361208957600080fd5b611c9b84823560208401611fd9565b6020808252825182820181905260009190848201906040850190845b81811015610f54578351835292840192918401916001016120b4565b600080604083850312156120e357600080fd5b6120ec83611f26565b915060208301356120fc81611e00565b809150509250929050565b6000806000806080858703121561211d57600080fd5b61212685611f26565b935061213460208601611f26565b925060408501359150606085013567ffffffffffffffff81111561215757600080fd5b8501601f8101871361216857600080fd5b61217787823560208401611fd9565b91505092959194509250565b6000806040838503121561219657600080fd5b823591506121a660208401611f26565b90509250929050565b600080604083850312156121c257600080fd5b6121cb83611f26565b91506121a660208401611f26565b634e487b7160e01b600052601160045260246000fd5b808201808211156107ea576107ea6121d9565b600181811c9082168061221657607f821691505b60208210810361223657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610aec57600081815260208120601f850160051c810160208610156122635750805b601f850160051c820191505b818110156119125782815560010161226f565b815167ffffffffffffffff81111561229c5761229c611fc3565b6122b0816122aa8454612202565b8461223c565b602080601f8311600181146122e557600084156122cd5750858301515b600019600386901b1c1916600185901b178555611912565b600085815260208120601f198616915b82811015612314578886015182559484019460019091019084016122f5565b50858210156123325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b80820281158282048414176107ea576107ea6121d9565b60008351612381818460208801611eaa565b835190830190612395818360208801611eaa565b64173539b7b760d91b9101908152600501949350505050565b6000602082840312156123c057600080fd5b81516114a381611e00565b6000600182016123dd576123dd6121d9565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061241790830184611ece565b9695505050505050565b60006020828403121561243357600080fd5b81516114a381611dcd56fea2646970667358221220232c0ed09c73ccb4213ad32e9755d1b71f5c466a432821886947875cc3daa9e764736f6c63430008120033697066733a2f2f6261666b72656964656875356b62706565666f6162766e797062696f6c796872656d72667a7a6f617461346f716268706e7276366a6e7778676875

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636352211e1161014f578063a0712d68116100c1578063dc33e6811161007a578063dc33e681146106de578063e268e4d3146106fe578063e985e9c51461071e578063f2c4ce1e1461073e578063f2fde38b1461075e578063fea0e0581461077e57600080fd5b8063a0712d6814610642578063a22cb46514610655578063b88d4fde14610675578063bc63f02e14610688578063c87b56dd146106a8578063d5abeb01146106c857600080fd5b80638462151c116101135780638462151c146105965780638bec1c6d146105c35780638da5cb5b146105d9578063940cd05b146105f757806395d89b41146106175780639769383d1461062c57600080fd5b80636352211e1461050c5780636c0360eb1461052c57806370a0823114610541578063715018a6146105615780637cb647591461057657600080fd5b80632eb4a7ab116101e857806344a0d68a116101ac57806344a0d68a146104535780635183022714610473578063536307451461049257806355f804b3146104b25780635a7adf7f146104d25780635c975abb146104f257600080fd5b80632eb4a7ab146103d357806339bd1767146103e95780633ccfd60b1461041657806341f434341461041e57806342842e0e1461044057600080fd5b8063081c8c441161023a578063081c8c441461033b578063095ea7b31461035057806313faede614610363578063149835a01461038757806318160ddd146103a757806323b872dd146103c057600080fd5b806301ffc9a71461027757806302329a29146102ac578063036e4cb5146102ce57806306fdde03146102e1578063081812fc14610303575b600080fd5b34801561028357600080fd5b50610297610292366004611de3565b61079e565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004611e0e565b6107f0565b005b6102cc6102dc366004611e2b565b61080b565b3480156102ed57600080fd5b506102f6610af1565b6040516102a39190611efa565b34801561030f57600080fd5b5061032361031e366004611f0d565b610b83565b6040516001600160a01b0390911681526020016102a3565b34801561034757600080fd5b506102f6610bc7565b6102cc61035e366004611f42565b610c55565b34801561036f57600080fd5b50610379600c5481565b6040519081526020016102a3565b34801561039357600080fd5b506102cc6103a2366004611f0d565b610cf5565b3480156103b357600080fd5b5060015460005403610379565b6102cc6103ce366004611f6c565b610d02565b3480156103df57600080fd5b5061037960115481565b3480156103f557600080fd5b50610379610404366004611fa8565b60126020526000908152604090205481565b6102cc610d2d565b34801561042a57600080fd5b506103236daaeb6d7670e522a718067333cd4e81565b6102cc61044e366004611f6c565b610d7a565b34801561045f57600080fd5b506102cc61046e366004611f0d565b610d9f565b34801561047f57600080fd5b5060105461029790610100900460ff1681565b34801561049e57600080fd5b506102cc6104ad366004611f0d565b610dac565b3480156104be57600080fd5b506102cc6104cd36600461204f565b610db9565b3480156104de57600080fd5b506010546102979062010000900460ff1681565b3480156104fe57600080fd5b506010546102979060ff1681565b34801561051857600080fd5b50610323610527366004611f0d565b610dd1565b34801561053857600080fd5b506102f6610ddc565b34801561054d57600080fd5b5061037961055c366004611fa8565b610de9565b34801561056d57600080fd5b506102cc610e38565b34801561058257600080fd5b506102cc610591366004611f0d565b610e4a565b3480156105a257600080fd5b506105b66105b1366004611fa8565b610e57565b6040516102a39190612098565b3480156105cf57600080fd5b50610379600e5481565b3480156105e557600080fd5b506008546001600160a01b0316610323565b34801561060357600080fd5b506102cc610612366004611e0e565b610f60565b34801561062357600080fd5b506102f6610f82565b34801561063857600080fd5b50610379600f5481565b6102cc610650366004611f0d565b610f91565b34801561066157600080fd5b506102cc6106703660046120d0565b611219565b6102cc610683366004612107565b611285565b34801561069457600080fd5b506102cc6106a3366004612183565b6112b2565b3480156106b457600080fd5b506102f66106c3366004611f0d565b611338565b3480156106d457600080fd5b50610379600d5481565b3480156106ea57600080fd5b506103796106f9366004611fa8565b6114aa565b34801561070a57600080fd5b506102cc610719366004611f0d565b6114d5565b34801561072a57600080fd5b506102976107393660046121af565b6114e2565b34801561074a57600080fd5b506102cc61075936600461204f565b611510565b34801561076a57600080fd5b506102cc610779366004611fa8565b611524565b34801561078a57600080fd5b506102cc610799366004611e0e565b61159a565b60006301ffc9a760e01b6001600160e01b0319831614806107cf57506380ac58cd60e01b6001600160e01b03198316145b806107ea5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6107f86115be565b6010805460ff1916911515919091179055565b610813611618565b60105460ff161561086b5760405162461bcd60e51b815260206004820152601c60248201527f4350423a206f6f707320636f6e7472616374206973207061757365640000000060448201526064015b60405180910390fd5b60105462010000900460ff166108c35760405162461bcd60e51b815260206004820152601f60248201527f4350423a2050726573616c65204861736e2774207374617274656420796574006044820152606401610862565b610938828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611671565b6109845760405162461bcd60e51b815260206004820152601c60248201527f4350423a20596f7520617265206e6f742057686974656c6973746564000000006044820152606401610862565b600f548311156109d65760405162461bcd60e51b815260206004820152601d60248201527f4350423a206d6178206d696e74207065722054782065786365656465640000006044820152606401610862565b600e54836109e3336114aa565b6109ed91906121ef565b1115610a3b5760405162461bcd60e51b815260206004820181905260248201527f4350423a206d6178204e4654207065722057616c6c65742065786365656465646044820152606401610862565b600f5433600090815260126020526040902054610a599085906121ef565b1115610ab35760405162461bcd60e51b815260206004820152602360248201527f4350423a20596f752068617665206d696e74656420796f75722046726565204e60448201526246547360e81b6064820152608401610862565b3360009081526012602052604081208054859290610ad29084906121ef565b90915550610ae290503384611687565b610aec6001600955565b505050565b606060028054610b0090612202565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2c90612202565b8015610b795780601f10610b4e57610100808354040283529160200191610b79565b820191906000526020600020905b815481529060010190602001808311610b5c57829003601f168201915b5050505050905090565b6000610b8e826116a1565b610bab576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b8054610bd490612202565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0090612202565b8015610c4d5780601f10610c2257610100808354040283529160200191610c4d565b820191906000526020600020905b815481529060010190602001808311610c3057829003601f168201915b505050505081565b6000610c6082610dd1565b9050336001600160a01b03821614610c9957610c7c81336114e2565b610c99576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610cfd6115be565b600d55565b826001600160a01b0381163314610d1c57610d1c336116c8565b610d27848484611781565b50505050565b610d356115be565b610d3d611618565b6040514790339082156108fc029083906000818181858888f19350505050158015610d6c573d6000803e3d6000fd5b5050610d786001600955565b565b826001600160a01b0381163314610d9457610d94336116c8565b610d2784848461191a565b610da76115be565b600c55565b610db46115be565b600f55565b610dc16115be565b600a610dcd8282612282565b5050565b60006107ea82611935565b600a8054610bd490612202565b60006001600160a01b038216610e12576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610e406115be565b610d78600061199c565b610e526115be565b601155565b60606000806000610e6785610de9565b905060008167ffffffffffffffff811115610e8457610e84611fc3565b604051908082528060200260200182016040528015610ead578160200160208202803683370190505b509050610eda60408051608081018252600080825260208201819052918101829052606081019190915290565b60005b838614610f5457610eed816119ee565b91508160400151610f4c5781516001600160a01b031615610f0d57815194505b876001600160a01b0316856001600160a01b031603610f4c5780838780600101985081518110610f3f57610f3f612342565b6020026020010181815250505b600101610edd565b50909695505050505050565b610f686115be565b601080549115156101000261ff0019909216919091179055565b606060038054610b0090612202565b610f99611618565b323314610fdb5760405162461bcd60e51b815260206004820152601060248201526f109513d4c81393d50810531313d5d15160821b6044820152606401610862565b60105460ff161561102e5760405162461bcd60e51b815260206004820152601c60248201527f4350423a206f6f707320636f6e747261637420697320706175736564000000006044820152606401610862565b60105462010000900460ff16156110875760405162461bcd60e51b815260206004820152601c60248201527f4350423a2053616c65204861736e2774207374617274656420796574000000006044820152606401610862565b600e548111156110e55760405162461bcd60e51b8152602060048201526024808201527f4350423a206d6178206d696e7420616d6f756e742070657220747820657863656044820152631959195960e21b6064820152608401610862565b600e54816110f2336114aa565b6110fc91906121ef565b111561114a5760405162461bcd60e51b815260206004820181905260248201527f4350423a206d6178204e4654207065722057616c6c65742065786365656465646044820152606401610862565b600d548161115b6001546000540390565b61116591906121ef565b11156111a55760405162461bcd60e51b815260206004820152600f60248201526e10d4108e8815d94814dbdb191bdd5d608a1b6044820152606401610862565b80600c546111b39190612358565b3410156112025760405162461bcd60e51b815260206004820152601760248201527f4350423a20696e73756666696369656e742066756e64730000000000000000006044820152606401610862565b61120c3382611687565b6112166001600955565b50565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836001600160a01b038116331461129f5761129f336116c8565b6112ab85858585611a6d565b5050505050565b6112ba6115be565b6112c2611618565b600d54826112d36001546000540390565b6112dd91906121ef565b11156113245760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610862565b61132e8183611687565b610dcd6001600955565b6060611343826116a1565b6113a85760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610862565b601054610100900460ff16151560000361144e57600b80546113c990612202565b80601f01602080910402602001604051908101604052809291908181526020018280546113f590612202565b80156114425780601f1061141757610100808354040283529160200191611442565b820191906000526020600020905b81548152906001019060200180831161142557829003601f168201915b50505050509050919050565b6000611458611ab1565b9050600081511161147857604051806020016040528060008152506114a3565b8061148284611ac0565b60405160200161149392919061236f565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166107ea565b6114dd6115be565b600e55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6115186115be565b600b610dcd8282612282565b61152c6115be565b6001600160a01b0381166115915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610862565b6112168161199c565b6115a26115be565b60108054911515620100000262ff000019909216919091179055565b6008546001600160a01b03163314610d785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610862565b60026009540361166a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610862565b6002600955565b60008261167e8584611b04565b14949350505050565b610dcd828260405180602001604052806000815250611b51565b60008054821080156107ea575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b1561121657604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611735573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061175991906123ae565b61121657604051633b79c77360e21b81526001600160a01b0382166004820152602401610862565b600061178c82611935565b9050836001600160a01b0316816001600160a01b0316146117bf5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761180c576117ef86336114e2565b61180c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661183357604051633a954ecd60e21b815260040160405180910390fd5b801561183e57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036118d0576001840160008181526004602052604081205490036118ce5760005481146118ce5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610aec83838360405180602001604052806000815250611285565b6000816000548110156119835760008181526004602052604081205490600160e01b82169003611981575b806000036114a3575060001901600081815260046020526040902054611960565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160808101825260008082526020820181905291810182905260608101919091526000828152600460205260409020546107ea90604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b611a78848484610d02565b6001600160a01b0383163b15610d2757611a9484848484611bb7565b610d27576040516368d2bf6b60e11b815260040160405180910390fd5b6060600a8054610b0090612202565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611ada5750819003601f19909101908152919050565b600081815b8451811015611b4957611b3582868381518110611b2857611b28612342565b6020026020010151611ca3565b915080611b41816123cb565b915050611b09565b509392505050565b611b5b8383611ccf565b6001600160a01b0383163b15610aec576000548281035b611b856000868380600101945086611bb7565b611ba2576040516368d2bf6b60e11b815260040160405180910390fd5b818110611b725781600054146112ab57600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bec9033908990889088906004016123e4565b6020604051808303816000875af1925050508015611c27575060408051601f3d908101601f19168201909252611c2491810190612421565b60015b611c85573d808015611c55576040519150601f19603f3d011682016040523d82523d6000602084013e611c5a565b606091505b508051600003611c7d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000818310611cbf5760008281526020849052604090206114a3565b5060009182526020526040902090565b6000805490829003611cf45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611da357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611d6b565b5081600003611dc457604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461121657600080fd5b600060208284031215611df557600080fd5b81356114a381611dcd565b801515811461121657600080fd5b600060208284031215611e2057600080fd5b81356114a381611e00565b600080600060408486031215611e4057600080fd5b83359250602084013567ffffffffffffffff80821115611e5f57600080fd5b818601915086601f830112611e7357600080fd5b813581811115611e8257600080fd5b8760208260051b8501011115611e9757600080fd5b6020830194508093505050509250925092565b60005b83811015611ec5578181015183820152602001611ead565b50506000910152565b60008151808452611ee6816020860160208601611eaa565b601f01601f19169290920160200192915050565b6020815260006114a36020830184611ece565b600060208284031215611f1f57600080fd5b5035919050565b80356001600160a01b0381168114611f3d57600080fd5b919050565b60008060408385031215611f5557600080fd5b611f5e83611f26565b946020939093013593505050565b600080600060608486031215611f8157600080fd5b611f8a84611f26565b9250611f9860208501611f26565b9150604084013590509250925092565b600060208284031215611fba57600080fd5b6114a382611f26565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ff457611ff4611fc3565b604051601f8501601f19908116603f0116810190828211818310171561201c5761201c611fc3565b8160405280935085815286868601111561203557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561206157600080fd5b813567ffffffffffffffff81111561207857600080fd5b8201601f8101841361208957600080fd5b611c9b84823560208401611fd9565b6020808252825182820181905260009190848201906040850190845b81811015610f54578351835292840192918401916001016120b4565b600080604083850312156120e357600080fd5b6120ec83611f26565b915060208301356120fc81611e00565b809150509250929050565b6000806000806080858703121561211d57600080fd5b61212685611f26565b935061213460208601611f26565b925060408501359150606085013567ffffffffffffffff81111561215757600080fd5b8501601f8101871361216857600080fd5b61217787823560208401611fd9565b91505092959194509250565b6000806040838503121561219657600080fd5b823591506121a660208401611f26565b90509250929050565b600080604083850312156121c257600080fd5b6121cb83611f26565b91506121a660208401611f26565b634e487b7160e01b600052601160045260246000fd5b808201808211156107ea576107ea6121d9565b600181811c9082168061221657607f821691505b60208210810361223657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610aec57600081815260208120601f850160051c810160208610156122635750805b601f850160051c820191505b818110156119125782815560010161226f565b815167ffffffffffffffff81111561229c5761229c611fc3565b6122b0816122aa8454612202565b8461223c565b602080601f8311600181146122e557600084156122cd5750858301515b600019600386901b1c1916600185901b178555611912565b600085815260208120601f198616915b82811015612314578886015182559484019460019091019084016122f5565b50858210156123325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b80820281158282048414176107ea576107ea6121d9565b60008351612381818460208801611eaa565b835190830190612395818360208801611eaa565b64173539b7b760d91b9101908152600501949350505050565b6000602082840312156123c057600080fd5b81516114a381611e00565b6000600182016123dd576123dd6121d9565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061241790830184611ece565b9695505050505050565b60006020828403121561243357600080fd5b81516114a381611dcd56fea2646970667358221220232c0ed09c73ccb4213ad32e9755d1b71f5c466a432821886947875cc3daa9e764736f6c63430008120033

Deployed Bytecode Sourcemap

79193:7341:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46010:639;;;;;;;;;;-1:-1:-1;46010:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;46010:639:0;;;;;;;;85348:79;;;;;;;;;;-1:-1:-1;85348:79:0;;;;;:::i;:::-;;:::i;:::-;;80794:982;;;;;;:::i;:::-;;:::i;46912:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;53403:218::-;;;;;;;;;;-1:-1:-1;53403:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2754:32:1;;;2736:51;;2724:2;2709:18;53403:218:0;2590:203:1;79336:99:0;;;;;;;;;;;;;:::i;52836:408::-;;;;;;:::i;:::-;;:::i;79442:34::-;;;;;;;;;;;;;;;;;;;3381:25:1;;;3369:2;3354:18;79442:34:0;3235:177:1;84627:100:0;;;;;;;;;;-1:-1:-1;84627:100:0;;;;;:::i;:::-;;:::i;42663:323::-;;;;;;;;;;-1:-1:-1;42937:12:0;;42724:7;42921:13;:28;42663:323;;85850:205;;;;;;:::i;:::-;;:::i;79701:25::-;;;;;;;;;;;;;;;;79733:46;;;;;;;;;;-1:-1:-1;79733:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;85642:173;;;:::i;7770:143::-;;;;;;;;;;;;186:42;7770:143;;86063:213;;;;;;:::i;:::-;;:::i;84484:86::-;;;;;;;;;;-1:-1:-1;84484:86:0;;;;;:::i;:::-;;:::i;79633:28::-;;;;;;;;;;-1:-1:-1;79633:28:0;;;;;;;;;;;84853:104;;;;;;;;;;-1:-1:-1;84853:104:0;;;;;:::i;:::-;;:::i;84996:::-;;;;;;;;;;-1:-1:-1;84996:104:0;;;;;:::i;:::-;;:::i;79668:26::-;;;;;;;;;;-1:-1:-1;79668:26:0;;;;;;;;;;;79600;;;;;;;;;;-1:-1:-1;79600:26:0;;;;;;;;48305:152;;;;;;;;;;-1:-1:-1;48305:152:0;;;;;:::i;:::-;;:::i;79308:21::-;;;;;;;;;;;;;:::i;43847:233::-;;;;;;;;;;-1:-1:-1;43847:233:0;;;;;:::i;:::-;;:::i;26789:103::-;;;;;;;;;;;;;:::i;84306:106::-;;;;;;;;;;-1:-1:-1;84306:106:0;;;;;:::i;:::-;;:::i;83150:979::-;;;;;;;;;;-1:-1:-1;83150:979:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;79522:32::-;;;;;;;;;;;;;;;;26148:87;;;;;;;;;;-1:-1:-1;26221:6:0;;-1:-1:-1;;;;;26221:6:0;26148:87;;84155:82;;;;;;;;;;-1:-1:-1;84155:82:0;;;;;:::i;:::-;;:::i;47088:104::-;;;;;;;;;;;;;:::i;79561:32::-;;;;;;;;;;;;;;;;80020:723;;;;;;:::i;:::-;;:::i;53961:234::-;;;;;;;;;;-1:-1:-1;53961:234:0;;;;;:::i;:::-;;:::i;86284:247::-;;;;;;:::i;:::-;;:::i;81832:300::-;;;;;;;;;;-1:-1:-1;81832:300:0;;;;;:::i;:::-;;:::i;82190:720::-;;;;;;;;;;-1:-1:-1;82190:720:0;;;;;:::i;:::-;;:::i;79483:32::-;;;;;;;;;;;;;;;;82974:113;;;;;;;;;;-1:-1:-1;82974:113:0;;;;;:::i;:::-;;:::i;84735:106::-;;;;;;;;;;-1:-1:-1;84735:106:0;;;;;:::i;:::-;;:::i;54352:164::-;;;;;;;;;;-1:-1:-1;54352:164:0;;;;;:::i;:::-;;:::i;85137:126::-;;;;;;;;;;-1:-1:-1;85137:126:0;;;;;:::i;:::-;;:::i;27047:201::-;;;;;;;;;;-1:-1:-1;27047:201:0;;;;;:::i;:::-;;:::i;85501:90::-;;;;;;;;;;-1:-1:-1;85501:90:0;;;;;:::i;:::-;;:::i;46010:639::-;46095:4;-1:-1:-1;;;;;;;;;46419:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;46496:25:0;;;46419:102;:179;;;-1:-1:-1;;;;;;;;;;46573:25:0;;;46419:179;46399:199;46010:639;-1:-1:-1;;46010:639:0:o;85348:79::-;26034:13;:11;:13::i;:::-;85404:6:::1;:15:::0;;-1:-1:-1;;85404:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;85348:79::o;80794:982::-;23125:21;:19;:21::i;:::-;80943:6:::1;::::0;::::1;;80942:7;80934:48;;;::::0;-1:-1:-1;;;80934:48:0;;8127:2:1;80934:48:0::1;::::0;::::1;8109:21:1::0;8166:2;8146:18;;;8139:30;8205;8185:18;;;8178:58;8253:18;;80934:48:0::1;;;;;;;;;81001:7;::::0;;;::::1;;;80993:51;;;::::0;-1:-1:-1;;;80993:51:0;;8484:2:1;80993:51:0::1;::::0;::::1;8466:21:1::0;8523:2;8503:18;;;8496:30;8562:33;8542:18;;;8535:61;8613:18;;80993:51:0::1;8282:355:1::0;80993:51:0::1;81077:150;81114:11;;81077:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;81144:10:0::1;::::0;81183:28:::1;::::0;-1:-1:-1;;81200:10:0::1;8791:2:1::0;8787:15;8783:53;81183:28:0::1;::::0;::::1;8771:66:1::0;81144:10:0;;-1:-1:-1;8853:12:1;;;-1:-1:-1;81183:28:0::1;;;;;;;;;;;;81173:39;;;;;;81077:18;:150::i;:::-;81055:228;;;::::0;-1:-1:-1;;;81055:228:0;;9078:2:1;81055:228:0::1;::::0;::::1;9060:21:1::0;9117:2;9097:18;;;9090:30;9156;9136:18;;;9129:58;9204:18;;81055:228:0::1;8876:352:1::0;81055:228:0::1;81312:13;;81302:6;:23;;81294:65;;;::::0;-1:-1:-1;;;81294:65:0;;9435:2:1;81294:65:0::1;::::0;::::1;9417:21:1::0;9474:2;9454:18;;;9447:30;9513:31;9493:18;;;9486:59;9562:18;;81294:65:0::1;9233:353:1::0;81294:65:0::1;81438:12;::::0;81428:6;81392:33:::1;77169:10:::0;82974:113;:::i;81392:33::-:1;:42;;;;:::i;:::-;:58;;81370:140;;;::::0;-1:-1:-1;;;81370:140:0;;10055:2:1;81370:140:0::1;::::0;::::1;10037:21:1::0;;;10074:18;;;10067:30;10133:34;10113:18;;;10106:62;10185:18;;81370:140:0::1;9853:356:1::0;81370:140:0::1;81588:13;::::0;77169:10;81543:32:::1;::::0;;;:11:::1;:32;::::0;;;;;:41:::1;::::0;81578:6;;81543:41:::1;:::i;:::-;:58;;81521:143;;;::::0;-1:-1:-1;;;81521:143:0;;10416:2:1;81521:143:0::1;::::0;::::1;10398:21:1::0;10455:2;10435:18;;;10428:30;10494:34;10474:18;;;10467:62;-1:-1:-1;;;10545:18:1;;;10538:33;10588:19;;81521:143:0::1;10214:399:1::0;81521:143:0::1;77169:10:::0;81677:32:::1;::::0;;;:11:::1;:32;::::0;;;;:42;;81713:6;;81677:32;:42:::1;::::0;81713:6;;81677:42:::1;:::i;:::-;::::0;;;-1:-1:-1;81730:38:0::1;::::0;-1:-1:-1;77169:10:0;81761:6:::1;81730:9;:38::i;:::-;23169:20:::0;22563:1;23689:7;:22;23506:213;23169:20;80794:982;;;:::o;46912:100::-;46966:13;46999:5;46992:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46912:100;:::o;53403:218::-;53479:7;53504:16;53512:7;53504;:16::i;:::-;53499:64;;53529:34;;-1:-1:-1;;;53529:34:0;;;;;;;;;;;53499:64;-1:-1:-1;53583:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;53583:30:0;;53403:218::o;79336:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52836:408::-;52925:13;52941:16;52949:7;52941;:16::i;:::-;52925:32;-1:-1:-1;77169:10:0;-1:-1:-1;;;;;52974:28:0;;;52970:175;;53022:44;53039:5;77169:10;54352:164;:::i;53022:44::-;53017:128;;53094:35;;-1:-1:-1;;;53094:35:0;;;;;;;;;;;53017:128;53157:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;53157:35:0;-1:-1:-1;;;;;53157:35:0;;;;;;;;;53208:28;;53157:24;;53208:28;;;;;;;52914:330;52836:408;;:::o;84627:100::-;26034:13;:11;:13::i;:::-;84697:9:::1;:22:::0;84627:100::o;85850:205::-;85993:4;-1:-1:-1;;;;;9278:18:0;;9286:10;9278:18;9274:83;;9313:32;9334:10;9313:20;:32::i;:::-;86010:37:::1;86029:4;86035:2;86039:7;86010:18;:37::i;:::-;85850:205:::0;;;;:::o;85642:173::-;26034:13;:11;:13::i;:::-;23125:21:::1;:19;:21::i;:::-;85761:46:::2;::::0;85729:21:::2;::::0;77169:10;;85761:46;::::2;;;::::0;85729:21;;85761:46:::2;::::0;;;85729:21;77169:10;85761:46;::::2;;;;;;;;;;;;;::::0;::::2;;;;;;85700:115;23169:20:::1;22563:1:::0;23689:7;:22;23506:213;23169:20:::1;85642:173::o:0;86063:213::-;86210:4;-1:-1:-1;;;;;9278:18:0;;9286:10;9278:18;9274:83;;9313:32;9334:10;9313:20;:32::i;:::-;86227:41:::1;86250:4;86256:2;86260:7;86227:22;:41::i;84484:86::-:0;26034:13;:11;:13::i;:::-;84547:4:::1;:15:::0;84484:86::o;84853:104::-;26034:13;:11;:13::i;:::-;84925::::1;:24:::0;84853:104::o;84996:::-;26034:13;:11;:13::i;:::-;85071:7:::1;:21;85081:11:::0;85071:7;:21:::1;:::i;:::-;;84996:104:::0;:::o;48305:152::-;48377:7;48420:27;48439:7;48420:18;:27::i;79308:21::-;;;;;;;:::i;43847:233::-;43919:7;-1:-1:-1;;;;;43943:19:0;;43939:60;;43971:28;;-1:-1:-1;;;43971:28:0;;;;;;;;;;;43939:60;-1:-1:-1;;;;;;44017:25:0;;;;;:18;:25;;;;;;38006:13;44017:55;;43847:233::o;26789:103::-;26034:13;:11;:13::i;:::-;26854:30:::1;26881:1;26854:18;:30::i;84306:106::-:0;26034:13;:11;:13::i;:::-;84380:10:::1;:24:::0;84306:106::o;83150:979::-;83236:16;83295:19;83329:25;83369:22;83394:16;83404:5;83394:9;:16::i;:::-;83369:41;;83425:25;83467:14;83453:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;83453:29:0;;83425:57;;83497:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83497:31:0;83566:9;83543:538;83627:14;83612:11;:29;83543:538;;83710:15;83723:1;83710:12;:15::i;:::-;83698:27;;83748:9;:16;;;83789:8;83744:73;83839:14;;-1:-1:-1;;;;;83839:28:0;;83835:111;;83912:14;;;-1:-1:-1;83835:111:0;83989:5;-1:-1:-1;;;;;83968:26:0;:17;-1:-1:-1;;;;;83968:26:0;;83964:102;;84045:1;84019:8;84028:13;;;;;;84019:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;83964:102;83660:3;;83543:538;;;-1:-1:-1;84102:8:0;;83150:979;-1:-1:-1;;;;;;83150:979:0:o;84155:82::-;26034:13;:11;:13::i;:::-;84212:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;84212:17:0;;::::1;::::0;;;::::1;::::0;;84155:82::o;47088:104::-;47144:13;47177:7;47170:14;;;;;:::i;80020:723::-;23125:21;:19;:21::i;:::-;80097:9:::1;77169:10:::0;80097:32:::1;80089:61;;;::::0;-1:-1:-1;;;80089:61:0;;13541:2:1;80089:61:0::1;::::0;::::1;13523:21:1::0;13580:2;13560:18;;;13553:30;-1:-1:-1;;;13599:18:1;;;13592:46;13655:18;;80089:61:0::1;13339:340:1::0;80089:61:0::1;80170:6;::::0;::::1;;80169:7;80161:48;;;::::0;-1:-1:-1;;;80161:48:0;;8127:2:1;80161:48:0::1;::::0;::::1;8109:21:1::0;8166:2;8146:18;;;8139:30;8205;8185:18;;;8178:58;8253:18;;80161:48:0::1;7925:352:1::0;80161:48:0::1;80229:7;::::0;;;::::1;;;80228:8;80220:49;;;::::0;-1:-1:-1;;;80220:49:0;;13886:2:1;80220:49:0::1;::::0;::::1;13868:21:1::0;13925:2;13905:18;;;13898:30;13964;13944:18;;;13937:58;14012:18;;80220:49:0::1;13684:352:1::0;80220:49:0::1;80312:12;;80302:6;:22;;80280:108;;;::::0;-1:-1:-1;;;80280:108:0;;14243:2:1;80280:108:0::1;::::0;::::1;14225:21:1::0;14282:2;14262:18;;;14255:30;14321:34;14301:18;;;14294:62;-1:-1:-1;;;14372:18:1;;;14365:34;14416:19;;80280:108:0::1;14041:400:1::0;80280:108:0::1;80467:12;::::0;80457:6;80421:33:::1;77169:10:::0;82974:113;:::i;80421:33::-:1;:42;;;;:::i;:::-;:58;;80399:140;;;::::0;-1:-1:-1;;;80399:140:0;;10055:2:1;80399:140:0::1;::::0;::::1;10037:21:1::0;;;10074:18;;;10067:30;10133:34;10113:18;;;10106:62;10185:18;;80399:140:0::1;9853:356:1::0;80399:140:0::1;80584:9;;80574:6;80558:13;42937:12:::0;;42724:7;42921:13;:28;;42663:323;80558:13:::1;:22;;;;:::i;:::-;:35;;80550:63;;;::::0;-1:-1:-1;;;80550:63:0;;14648:2:1;80550:63:0::1;::::0;::::1;14630:21:1::0;14687:2;14667:18;;;14660:30;-1:-1:-1;;;14706:18:1;;;14699:45;14761:18;;80550:63:0::1;14446:339:1::0;80550:63:0::1;80652:6;80645:4;;:13;;;;:::i;:::-;80632:9;:26;;80624:62;;;::::0;-1:-1:-1;;;80624:62:0;;15165:2:1;80624:62:0::1;::::0;::::1;15147:21:1::0;15204:2;15184:18;;;15177:30;15243:25;15223:18;;;15216:53;15286:18;;80624:62:0::1;14963:347:1::0;80624:62:0::1;80697:38;77169:10:::0;80728:6:::1;80697:9;:38::i;:::-;23169:20:::0;22563:1;23689:7;:22;23506:213;23169:20;80020:723;:::o;53961:234::-;77169:10;54056:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;54056:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;54056:60:0;;;;;;;;;;54132:55;;540:41:1;;;54056:49:0;;77169:10;54132:55;;513:18:1;54132:55:0;;;;;;;53961:234;;:::o;86284:247::-;86459:4;-1:-1:-1;;;;;9278:18:0;;9286:10;9278:18;9274:83;;9313:32;9334:10;9313:20;:32::i;:::-;86476:47:::1;86499:4;86505:2;86509:7;86518:4;86476:22;:47::i;:::-;86284:247:::0;;;;;:::o;81832:300::-;26034:13;:11;:13::i;:::-;23125:21:::1;:19;:21::i;:::-;82017:9:::2;;82002:11;81986:13;42937:12:::0;;42724:7;42921:13;:28;;42663:323;81986:13:::2;:27;;;;:::i;:::-;:40;;81964:112;;;::::0;-1:-1:-1;;;81964:112:0;;15517:2:1;81964:112:0::2;::::0;::::2;15499:21:1::0;15556:2;15536:18;;;15529:30;-1:-1:-1;;;15575:18:1;;;15568:52;15637:18;;81964:112:0::2;15315:346:1::0;81964:112:0::2;82089:35;82099:11;82112;82089:9;:35::i;:::-;23169:20:::1;22563:1:::0;23689:7;:22;23506:213;82190:720;82308:13;82361:16;82369:7;82361;:16::i;:::-;82339:114;;;;-1:-1:-1;;;82339:114:0;;15868:2:1;82339:114:0;;;15850:21:1;15907:2;15887:18;;;15880:30;15946:34;15926:18;;;15919:62;-1:-1:-1;;;15997:18:1;;;15990:46;16053:19;;82339:114:0;15666:412:1;82339:114:0;82470:8;;;;;;;:17;;82482:5;82470:17;82466:71;;82511:14;82504:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82190:720;;;:::o;82466:71::-;82549:28;82580:10;:8;:10::i;:::-;82549:41;;82652:1;82627:14;82621:28;:32;:281;;;;;;;;;;;;;;;;;82745:14;82786:18;82796:7;82786:9;:18::i;:::-;82702:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82621:281;82601:301;82190:720;-1:-1:-1;;;82190:720:0:o;82974:113::-;-1:-1:-1;;;;;44251:25:0;;83032:7;44251:25;;;:18;:25;;38144:2;44251:25;;;;38006:13;44251:50;;44250:82;83059:20;44162:178;84735:106;26034:13;:11;:13::i;:::-;84808:12:::1;:25:::0;84735:106::o;54352:164::-;-1:-1:-1;;;;;54473:25:0;;;54449:4;54473:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;54352:164::o;85137:126::-;26034:13;:11;:13::i;:::-;85223:14:::1;:32;85240:15:::0;85223:14;:32:::1;:::i;27047:201::-:0;26034:13;:11;:13::i;:::-;-1:-1:-1;;;;;27136:22:0;::::1;27128:73;;;::::0;-1:-1:-1;;;27128:73:0;;16953:2:1;27128:73:0::1;::::0;::::1;16935:21:1::0;16992:2;16972:18;;;16965:30;17031:34;17011:18;;;17004:62;-1:-1:-1;;;17082:18:1;;;17075:36;17128:19;;27128:73:0::1;16751:402:1::0;27128:73:0::1;27212:28;27231:8;27212:18;:28::i;85501:90::-:0;26034:13;:11;:13::i;:::-;85567:7:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;85567:16:0;;::::1;::::0;;;::::1;::::0;;85501:90::o;26313:132::-;26221:6;;-1:-1:-1;;;;;26221:6:0;77169:10;26377:23;26369:68;;;;-1:-1:-1;;;26369:68:0;;17360:2:1;26369:68:0;;;17342:21:1;;;17379:18;;;17372:30;17438:34;17418:18;;;17411:62;17490:18;;26369:68:0;17158:356:1;23205:293:0;22607:1;23339:7;;:19;23331:63;;;;-1:-1:-1;;;23331:63:0;;17721:2:1;23331:63:0;;;17703:21:1;17760:2;17740:18;;;17733:30;17799:33;17779:18;;;17772:61;17850:18;;23331:63:0;17519:355:1;23331:63:0;22607:1;23472:7;:18;23205:293::o;12345:156::-;12436:4;12489;12460:25;12473:5;12480:4;12460:12;:25::i;:::-;:33;;12345:156;-1:-1:-1;;;;12345:156:0:o;70914:112::-;70991:27;71001:2;71005:8;70991:27;;;;;;;;;;;;:9;:27::i;54774:282::-;54839:4;54929:13;;54919:7;:23;54876:153;;;;-1:-1:-1;;54980:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;54980:44:0;:49;;54774:282::o;9695:647::-;186:42;9886:45;:49;9882:453;;10185:67;;-1:-1:-1;;;10185:67:0;;10236:4;10185:67;;;18091:34:1;-1:-1:-1;;;;;18161:15:1;;18141:18;;;18134:43;186:42:0;;10185;;18026:18:1;;10185:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10180:144;;10280:28;;-1:-1:-1;;;10280:28:0;;-1:-1:-1;;;;;2754:32:1;;10280:28:0;;;2736:51:1;2709:18;;10280:28:0;2590:203:1;57042:2825:0;57184:27;57214;57233:7;57214:18;:27::i;:::-;57184:57;;57299:4;-1:-1:-1;;;;;57258:45:0;57274:19;-1:-1:-1;;;;;57258:45:0;;57254:86;;57312:28;;-1:-1:-1;;;57312:28:0;;;;;;;;;;;57254:86;57354:27;56150:24;;;:15;:24;;;;;56378:26;;77169:10;55775:30;;;-1:-1:-1;;;;;55468:28:0;;55753:20;;;55750:56;57540:180;;57633:43;57650:4;77169:10;54352:164;:::i;57633:43::-;57628:92;;57685:35;;-1:-1:-1;;;57685:35:0;;;;;;;;;;;57628:92;-1:-1:-1;;;;;57737:16:0;;57733:52;;57762:23;;-1:-1:-1;;;57762:23:0;;;;;;;;;;;57733:52;57934:15;57931:160;;;58074:1;58053:19;58046:30;57931:160;-1:-1:-1;;;;;58471:24:0;;;;;;;:18;:24;;;;;;58469:26;;-1:-1:-1;;58469:26:0;;;58540:22;;;;;;;;;58538:24;;-1:-1:-1;58538:24:0;;;51694:11;51669:23;51665:41;51652:63;-1:-1:-1;;;51652:63:0;58833:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;59128:47:0;;:52;;59124:627;;59233:1;59223:11;;59201:19;59356:30;;;:17;:30;;;;;;:35;;59352:384;;59494:13;;59479:11;:28;59475:242;;59641:30;;;;:17;:30;;;;;:52;;;59475:242;59182:569;59124:627;59798:7;59794:2;-1:-1:-1;;;;;59779:27:0;59788:4;-1:-1:-1;;;;;59779:27:0;;;;;;;;;;;59817:42;57173:2694;;;57042:2825;;;:::o;59963:193::-;60109:39;60126:4;60132:2;60136:7;60109:39;;;;;;;;;;;;:16;:39::i;49460:1275::-;49527:7;49562;49664:13;;49657:4;:20;49653:1015;;;49702:14;49719:23;;;:17;:23;;;;;;;-1:-1:-1;;;49808:24:0;;:29;;49804:845;;50473:113;50480:6;50490:1;50480:11;50473:113;;-1:-1:-1;;;50551:6:0;50533:25;;;;:17;:25;;;;;;50473:113;;49804:845;49679:989;49653:1015;50696:31;;-1:-1:-1;;;50696:31:0;;;;;;;;;;;27408:191;27501:6;;;-1:-1:-1;;;;;27518:17:0;;;-1:-1:-1;;;;;;27518:17:0;;;;;;;27551:40;;27501:6;;;27518:17;27501:6;;27551:40;;27482:16;;27551:40;27471:128;27408:191;:::o;48908:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49036:24:0;;;;:17;:24;;;;;;49017:44;;-1:-1:-1;;;;;;;;;;;;;50944:41:0;;;;38665:3;51030:33;;;50996:68;;-1:-1:-1;;;50996:68:0;-1:-1:-1;;;51094:24:0;;:29;;-1:-1:-1;;;51075:48:0;;;;39186:3;51163:28;;;;-1:-1:-1;;;51134:58:0;-1:-1:-1;50834:366:0;60754:407;60929:31;60942:4;60948:2;60952:7;60929:12;:31::i;:::-;-1:-1:-1;;;;;60975:14:0;;;:19;60971:183;;61014:56;61045:4;61051:2;61055:7;61064:5;61014:30;:56::i;:::-;61009:145;;61098:40;;-1:-1:-1;;;61098:40:0;;;;;;;;;;;79863:108;79923:13;79956:7;79949:14;;;;;:::i;77289:1745::-;77354:17;77788:4;77781;77775:11;77771:22;77880:1;77874:4;77867:15;77955:4;77952:1;77948:12;77941:19;;;78037:1;78032:3;78025:14;78141:3;78380:5;78362:428;78428:1;78423:3;78419:11;78412:18;;78599:2;78593:4;78589:13;78585:2;78581:22;78576:3;78568:36;78693:2;78683:13;;78750:25;78362:428;78750:25;-1:-1:-1;78820:13:0;;;-1:-1:-1;;78935:14:0;;;78997:19;;;78935:14;77289:1745;-1:-1:-1;77289:1745:0:o;13144:296::-;13227:7;13270:4;13227:7;13285:118;13309:5;:12;13305:1;:16;13285:118;;;13358:33;13368:12;13382:5;13388:1;13382:8;;;;;;;;:::i;:::-;;;;;;;13358:9;:33::i;:::-;13343:48;-1:-1:-1;13323:3:0;;;;:::i;:::-;;;;13285:118;;;-1:-1:-1;13420:12:0;13144:296;-1:-1:-1;;;13144:296:0:o;70141:689::-;70272:19;70278:2;70282:8;70272:5;:19::i;:::-;-1:-1:-1;;;;;70333:14:0;;;:19;70329:483;;70373:11;70387:13;70435:14;;;70468:233;70499:62;70538:1;70542:2;70546:7;;;;;;70555:5;70499:30;:62::i;:::-;70494:167;;70597:40;;-1:-1:-1;;;70597:40:0;;;;;;;;;;;70494:167;70696:3;70688:5;:11;70468:233;;70783:3;70766:13;;:20;70762:34;;70788:8;;;63245:716;63429:88;;-1:-1:-1;;;63429:88:0;;63408:4;;-1:-1:-1;;;;;63429:45:0;;;;;:88;;77169:10;;63496:4;;63502:7;;63511:5;;63429:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63429:88:0;;;;;;;;-1:-1:-1;;63429:88:0;;;;;;;;;;;;:::i;:::-;;;63425:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63712:6;:13;63729:1;63712:18;63708:235;;63758:40;;-1:-1:-1;;;63758:40:0;;;;;;;;;;;63708:235;63901:6;63895:13;63886:6;63882:2;63878:15;63871:38;63425:529;-1:-1:-1;;;;;;63588:64:0;-1:-1:-1;;;63588:64:0;;-1:-1:-1;63425:529:0;63245:716;;;;;;:::o;20348:149::-;20411:7;20442:1;20438;:5;:51;;20573:13;20667:15;;;20703:4;20696:15;;;20750:4;20734:21;;20438:51;;;-1:-1:-1;20573:13:0;20667:15;;;20703:4;20696:15;20750:4;20734:21;;;20348:149::o;64423:2966::-;64496:20;64519:13;;;64547;;;64543:44;;64569:18;;-1:-1:-1;;;64569:18:0;;;;;;;;;;;64543:44;-1:-1:-1;;;;;65075:22:0;;;;;;:18;:22;;;;38144:2;65075:22;;;:71;;65113:32;65101:45;;65075:71;;;65389:31;;;:17;:31;;;;;-1:-1:-1;52125:15:0;;52099:24;52095:46;51694:11;51669:23;51665:41;51662:52;51652:63;;65389:173;;65624:23;;;;65389:31;;65075:22;;66389:25;65075:22;;66242:335;66903:1;66889:12;66885:20;66843:346;66944:3;66935:7;66932:16;66843:346;;67162:7;67152:8;67149:1;67122:25;67119:1;67116;67111:59;66997:1;66984:15;66843:346;;;66847:77;67222:8;67234:1;67222:13;67218:45;;67244:19;;-1:-1:-1;;;67244:19:0;;;;;;;;;;;67218:45;67280:13;:19;-1:-1:-1;80794:982:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:118::-;678:5;671:13;664:21;657:5;654:32;644:60;;700:1;697;690:12;715:241;771:6;824:2;812:9;803:7;799:23;795:32;792:52;;;840:1;837;830:12;792:52;879:9;866:23;898:28;920:5;898:28;:::i;961:683::-;1056:6;1064;1072;1125:2;1113:9;1104:7;1100:23;1096:32;1093:52;;;1141:1;1138;1131:12;1093:52;1177:9;1164:23;1154:33;;1238:2;1227:9;1223:18;1210:32;1261:18;1302:2;1294:6;1291:14;1288:34;;;1318:1;1315;1308:12;1288:34;1356:6;1345:9;1341:22;1331:32;;1401:7;1394:4;1390:2;1386:13;1382:27;1372:55;;1423:1;1420;1413:12;1372:55;1463:2;1450:16;1489:2;1481:6;1478:14;1475:34;;;1505:1;1502;1495:12;1475:34;1558:7;1553:2;1543:6;1540:1;1536:14;1532:2;1528:23;1524:32;1521:45;1518:65;;;1579:1;1576;1569:12;1518:65;1610:2;1606;1602:11;1592:21;;1632:6;1622:16;;;;;961:683;;;;;:::o;1649:250::-;1734:1;1744:113;1758:6;1755:1;1752:13;1744:113;;;1834:11;;;1828:18;1815:11;;;1808:39;1780:2;1773:10;1744:113;;;-1:-1:-1;;1891:1:1;1873:16;;1866:27;1649:250::o;1904:271::-;1946:3;1984:5;1978:12;2011:6;2006:3;1999:19;2027:76;2096:6;2089:4;2084:3;2080:14;2073:4;2066:5;2062:16;2027:76;:::i;:::-;2157:2;2136:15;-1:-1:-1;;2132:29:1;2123:39;;;;2164:4;2119:50;;1904:271;-1:-1:-1;;1904:271:1:o;2180:220::-;2329:2;2318:9;2311:21;2292:4;2349:45;2390:2;2379:9;2375:18;2367:6;2349:45;:::i;2405:180::-;2464:6;2517:2;2505:9;2496:7;2492:23;2488:32;2485:52;;;2533:1;2530;2523:12;2485:52;-1:-1:-1;2556:23:1;;2405:180;-1:-1:-1;2405:180:1:o;2798:173::-;2866:20;;-1:-1:-1;;;;;2915:31:1;;2905:42;;2895:70;;2961:1;2958;2951:12;2895:70;2798:173;;;:::o;2976:254::-;3044:6;3052;3105:2;3093:9;3084:7;3080:23;3076:32;3073:52;;;3121:1;3118;3111:12;3073:52;3144:29;3163:9;3144:29;:::i;:::-;3134:39;3220:2;3205:18;;;;3192:32;;-1:-1:-1;;;2976:254:1:o;3417:328::-;3494:6;3502;3510;3563:2;3551:9;3542:7;3538:23;3534:32;3531:52;;;3579:1;3576;3569:12;3531:52;3602:29;3621:9;3602:29;:::i;:::-;3592:39;;3650:38;3684:2;3673:9;3669:18;3650:38;:::i;:::-;3640:48;;3735:2;3724:9;3720:18;3707:32;3697:42;;3417:328;;;;;:::o;3932:186::-;3991:6;4044:2;4032:9;4023:7;4019:23;4015:32;4012:52;;;4060:1;4057;4050:12;4012:52;4083:29;4102:9;4083:29;:::i;4362:127::-;4423:10;4418:3;4414:20;4411:1;4404:31;4454:4;4451:1;4444:15;4478:4;4475:1;4468:15;4494:632;4559:5;4589:18;4630:2;4622:6;4619:14;4616:40;;;4636:18;;:::i;:::-;4711:2;4705:9;4679:2;4765:15;;-1:-1:-1;;4761:24:1;;;4787:2;4757:33;4753:42;4741:55;;;4811:18;;;4831:22;;;4808:46;4805:72;;;4857:18;;:::i;:::-;4897:10;4893:2;4886:22;4926:6;4917:15;;4956:6;4948;4941:22;4996:3;4987:6;4982:3;4978:16;4975:25;4972:45;;;5013:1;5010;5003:12;4972:45;5063:6;5058:3;5051:4;5043:6;5039:17;5026:44;5118:1;5111:4;5102:6;5094;5090:19;5086:30;5079:41;;;;4494:632;;;;;:::o;5131:451::-;5200:6;5253:2;5241:9;5232:7;5228:23;5224:32;5221:52;;;5269:1;5266;5259:12;5221:52;5309:9;5296:23;5342:18;5334:6;5331:30;5328:50;;;5374:1;5371;5364:12;5328:50;5397:22;;5450:4;5442:13;;5438:27;-1:-1:-1;5428:55:1;;5479:1;5476;5469:12;5428:55;5502:74;5568:7;5563:2;5550:16;5545:2;5541;5537:11;5502:74;:::i;5772:632::-;5943:2;5995:21;;;6065:13;;5968:18;;;6087:22;;;5914:4;;5943:2;6166:15;;;;6140:2;6125:18;;;5914:4;6209:169;6223:6;6220:1;6217:13;6209:169;;;6284:13;;6272:26;;6353:15;;;;6318:12;;;;6245:1;6238:9;6209:169;;6409:315;6474:6;6482;6535:2;6523:9;6514:7;6510:23;6506:32;6503:52;;;6551:1;6548;6541:12;6503:52;6574:29;6593:9;6574:29;:::i;:::-;6564:39;;6653:2;6642:9;6638:18;6625:32;6666:28;6688:5;6666:28;:::i;:::-;6713:5;6703:15;;;6409:315;;;;;:::o;6729:667::-;6824:6;6832;6840;6848;6901:3;6889:9;6880:7;6876:23;6872:33;6869:53;;;6918:1;6915;6908:12;6869:53;6941:29;6960:9;6941:29;:::i;:::-;6931:39;;6989:38;7023:2;7012:9;7008:18;6989:38;:::i;:::-;6979:48;;7074:2;7063:9;7059:18;7046:32;7036:42;;7129:2;7118:9;7114:18;7101:32;7156:18;7148:6;7145:30;7142:50;;;7188:1;7185;7178:12;7142:50;7211:22;;7264:4;7256:13;;7252:27;-1:-1:-1;7242:55:1;;7293:1;7290;7283:12;7242:55;7316:74;7382:7;7377:2;7364:16;7359:2;7355;7351:11;7316:74;:::i;:::-;7306:84;;;6729:667;;;;;;;:::o;7401:254::-;7469:6;7477;7530:2;7518:9;7509:7;7505:23;7501:32;7498:52;;;7546:1;7543;7536:12;7498:52;7582:9;7569:23;7559:33;;7611:38;7645:2;7634:9;7630:18;7611:38;:::i;:::-;7601:48;;7401:254;;;;;:::o;7660:260::-;7728:6;7736;7789:2;7777:9;7768:7;7764:23;7760:32;7757:52;;;7805:1;7802;7795:12;7757:52;7828:29;7847:9;7828:29;:::i;:::-;7818:39;;7876:38;7910:2;7899:9;7895:18;7876:38;:::i;9591:127::-;9652:10;9647:3;9643:20;9640:1;9633:31;9683:4;9680:1;9673:15;9707:4;9704:1;9697:15;9723:125;9788:9;;;9809:10;;;9806:36;;;9822:18;;:::i;10618:380::-;10697:1;10693:12;;;;10740;;;10761:61;;10815:4;10807:6;10803:17;10793:27;;10761:61;10868:2;10860:6;10857:14;10837:18;10834:38;10831:161;;10914:10;10909:3;10905:20;10902:1;10895:31;10949:4;10946:1;10939:15;10977:4;10974:1;10967:15;10831:161;;10618:380;;;:::o;11129:545::-;11231:2;11226:3;11223:11;11220:448;;;11267:1;11292:5;11288:2;11281:17;11337:4;11333:2;11323:19;11407:2;11395:10;11391:19;11388:1;11384:27;11378:4;11374:38;11443:4;11431:10;11428:20;11425:47;;;-1:-1:-1;11466:4:1;11425:47;11521:2;11516:3;11512:12;11509:1;11505:20;11499:4;11495:31;11485:41;;11576:82;11594:2;11587:5;11584:13;11576:82;;;11639:17;;;11620:1;11609:13;11576:82;;11850:1352;11976:3;11970:10;12003:18;11995:6;11992:30;11989:56;;;12025:18;;:::i;:::-;12054:97;12144:6;12104:38;12136:4;12130:11;12104:38;:::i;:::-;12098:4;12054:97;:::i;:::-;12206:4;;12270:2;12259:14;;12287:1;12282:663;;;;12989:1;13006:6;13003:89;;;-1:-1:-1;13058:19:1;;;13052:26;13003:89;-1:-1:-1;;11807:1:1;11803:11;;;11799:24;11795:29;11785:40;11831:1;11827:11;;;11782:57;13105:81;;12252:944;;12282:663;11076:1;11069:14;;;11113:4;11100:18;;-1:-1:-1;;12318:20:1;;;12436:236;12450:7;12447:1;12444:14;12436:236;;;12539:19;;;12533:26;12518:42;;12631:27;;;;12599:1;12587:14;;;;12466:19;;12436:236;;;12440:3;12700:6;12691:7;12688:19;12685:201;;;12761:19;;;12755:26;-1:-1:-1;;12844:1:1;12840:14;;;12856:3;12836:24;12832:37;12828:42;12813:58;12798:74;;12685:201;-1:-1:-1;;;;;12932:1:1;12916:14;;;12912:22;12899:36;;-1:-1:-1;11850:1352:1:o;13207:127::-;13268:10;13263:3;13259:20;13256:1;13249:31;13299:4;13296:1;13289:15;13323:4;13320:1;13313:15;14790:168;14863:9;;;14894;;14911:15;;;14905:22;;14891:37;14881:71;;14932:18;;:::i;16083:663::-;16363:3;16401:6;16395:13;16417:66;16476:6;16471:3;16464:4;16456:6;16452:17;16417:66;:::i;:::-;16546:13;;16505:16;;;;16568:70;16546:13;16505:16;16615:4;16603:17;;16568:70;:::i;:::-;-1:-1:-1;;;16660:20:1;;16689:22;;;16738:1;16727:13;;16083:663;-1:-1:-1;;;;16083:663:1:o;18188:245::-;18255:6;18308:2;18296:9;18287:7;18283:23;18279:32;18276:52;;;18324:1;18321;18314:12;18276:52;18356:9;18350:16;18375:28;18397:5;18375:28;:::i;18438:135::-;18477:3;18498:17;;;18495:43;;18518:18;;:::i;:::-;-1:-1:-1;18565:1:1;18554:13;;18438:135::o;18578:489::-;-1:-1:-1;;;;;18847:15:1;;;18829:34;;18899:15;;18894:2;18879:18;;18872:43;18946:2;18931:18;;18924:34;;;18994:3;18989:2;18974:18;;18967:31;;;18772:4;;19015:46;;19041:19;;19033:6;19015:46;:::i;:::-;19007:54;18578:489;-1:-1:-1;;;;;;18578:489:1:o;19072:249::-;19141:6;19194:2;19182:9;19173:7;19169:23;19165:32;19162:52;;;19210:1;19207;19200:12;19162:52;19242:9;19236:16;19261:30;19285:5;19261:30;:::i

Swarm Source

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