ETH Price: $2,924.92 (-9.75%)
Gas: 22 Gwei

Token

Professors (PROFS)
 

Overview

Max Total Supply

1,016 PROFS

Holders

289

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
cowboygrapes.eth
Balance
1 PROFS
0x74992b2edf8883f55320587f3b8ed0c9ecda05e1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Professors

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: Professors.sol


 
 
 
pragma solidity >=0.7.0 <0.9.0;




 
contract Professors is ERC721A, Ownable, ReentrancyGuard {
 
 
  string public baseURI = "ipfs://QmYZQvNr5cKssWobHeKbCYc7EBb14p332RiD73BPyKfR6U/";
  string public notRevealedUri = "ipfs://QmZHmBsdZerbu2qsDpgEPALDgAKaHS7iaQS6CSeogg8hVm";
  uint256 public cost = 0.13 ether;
  uint256 public wlcost = 0.11 ether;
  uint256 public maxSupply = 3141; 
  uint256 public AAASupply = 200;
  uint256 public WlSupply = 950;
  uint256 public AAAMaxperWallet = 2;
  uint256 public WlMaxperWallet = 3;
  bool public paused = false;
  bool public revealed = false;
  bool public preSale = false;
  bool public AAApreSale = true;
  bool public publicSale = false;
  bytes32 public merkleRoot;
  bytes32 public AAAmerkleRoot;
  mapping (address => uint256) public AAAMinted;
  mapping (address => uint256) public WLMinted;
 
 
  constructor() ERC721A("Professors", "PROFS") {}
 
  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
      function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }
 
  // public
  function mint(uint256 tokens) public payable nonReentrant {
    require(!paused, "PROFS: Contract is paused");
    require(publicSale, "PROFS: Sale hasn't started yet");
    require(totalSupply() + tokens <= maxSupply, "PROFS: We are sold out!");
    require(msg.value >= cost * tokens, "PROFS: Insufficient funds");
 
      _safeMint(_msgSenderERC721A(), tokens);
 
  }

    function AAAmint(uint256 tokens, bytes32[] calldata merkleProof) public payable nonReentrant {
    require(!paused, "PROFS: Contract is paused");
    require(AAApreSale, "PROFS: Pre Sale hasn't started yet");
    require(MerkleProof.verify(merkleProof, AAAmerkleRoot, keccak256(abi.encodePacked(msg.sender))), "PROFS: You are not whitelisted!");
    require(AAAMinted[_msgSenderERC721A()] + tokens <= AAAMaxperWallet, "PROFS: Max NFT per wallet exceeded");
    require(tokens <= AAAMaxperWallet, "PROFS: Max mint per wallet exceeded");
    require(totalSupply() + tokens <= AAASupply, "PROFS: Whitelist supply exceeded");
    require(msg.value >= wlcost * tokens, "PROFS: Insufficient funds");
 
      AAAMinted[_msgSenderERC721A()] += tokens;
      _safeMint(_msgSenderERC721A(), tokens);
 
  }
 
 
    function whitelistmint(uint256 tokens, bytes32[] calldata merkleProof) public payable nonReentrant {
    require(!paused, "PROFS: Contract is paused");
    require(preSale, "PROFS: Pre Sale hasn't started yet");
    require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "PROFS: You are not whitelisted!");
    require(WLMinted[_msgSenderERC721A()] + tokens <= WlMaxperWallet, "PROFS: Max NFT per wallet exceeded");
    require(tokens <= WlMaxperWallet, "PROFS: Max mint per wallet exceeded");
    require(totalSupply() + tokens <= WlSupply, "PROFS: Whitelist supply exceeded");
    require(msg.value >= wlcost * tokens, "PROFS: Insufficient funds");
 
      WLMinted[_msgSenderERC721A()] += tokens;
      _safeMint(_msgSenderERC721A(), tokens);
 
  }
 
     function airdrop(uint256 _mintAmount, address destination) public onlyOwner nonReentrant {
    require(totalSupply() + _mintAmount <= maxSupply, "Max NFT limit exceeded");
 
      _safeMint(destination, _mintAmount);
  }
 
  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)))
        : "";
  }
 
    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }
 
      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;
  }
 
  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }
 
      function setAAAMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        AAAmerkleRoot = _merkleRoot;
    }

 
    function setWlMaxPerWallet(uint256 _limit) public onlyOwner {
    WlMaxperWallet = _limit;
  }
 
    function setAAAMaxPerWallet(uint256 _limit) public onlyOwner {
    AAAMaxperWallet = _limit;
  }
 
 
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }
 
    function setWlCost(uint256 _newWlCost) public onlyOwner {
    wlcost = _newWlCost;
  }
 
    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }
 
    function setwlsupply(uint256 _newsupply) public onlyOwner {
    WlSupply = _newsupply;
  }
 
    function setAAAsupply(uint256 _newsupply) public onlyOwner {
    AAASupply = _newsupply;
  }
 
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
 
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }
 
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
    function togglepreSale(bool _state) external onlyOwner {
        preSale = _state;
    }
 
    function toggleAAApreSale(bool _state) external onlyOwner {
        AAApreSale = _state;
    }
 
    function togglepublicSale(bool _state) external onlyOwner {
        publicSale = _state;
    }
 
  function withdraw() public payable onlyOwner nonReentrant {
      uint256 balance = address(this).balance;
      payable(_msgSenderERC721A()).transfer(balance);
  }
}

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":[],"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":[],"name":"AAAMaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AAAMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AAASupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AAAmerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"AAAmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"AAApreSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WLMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WlMaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_limit","type":"uint256"}],"name":"setAAAMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setAAAMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setAAAsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_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":"_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":"uint256","name":"_newWlCost","type":"uint256"}],"name":"setWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWlMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setwlsupply","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":"toggleAAApreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60e0604052603660808181529062002a2360a03980516200002991600a9160209091019062000185565b5060405180606001604052806035815260200162002a596035913980516200005a91600b9160209091019062000185565b506701cdda4faccd0000600c55670186cc6acd4b0000600d55610c45600e5560c8600f556103b6601055600260115560036012556013805464ffffffffff19166301000000179055348015620000af57600080fd5b50604080518082018252600a81526950726f666573736f727360b01b60208083019182528351808501909452600584526450524f465360d81b908401528151919291620000ff9160029162000185565b5080516200011590600390602084019062000185565b5050600160005550620001283362000133565b600160095562000268565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000193906200022b565b90600052602060002090601f016020900481019282620001b7576000855562000202565b82601f10620001d257805160ff191683800117855562000202565b8280016001018555821562000202579182015b8281111562000202578251825591602001919060010190620001e5565b506200021092915062000214565b5090565b5b8082111562000210576000815560010162000215565b600181811c908216806200024057607f821691505b602082108114156200026257634e487b7160e01b600052602260045260246000fd5b50919050565b6127ab80620002786000396000f3fe6080604052600436106103815760003560e01c80636eedae22116101d1578063bc63f02e11610102578063ea071a48116100a0578063f2fde38b1161006f578063f2fde38b146109d8578063f3257cdd146109f8578063f7019ffd14610a18578063fea0e05814610a2b57600080fd5b8063ea071a4814610962578063ebe0610a14610982578063f12f6d5d14610998578063f2c4ce1e146109b857600080fd5b8063d5abeb01116100dc578063d5abeb01146108b6578063dc33e681146108cc578063e3821abf146108ec578063e985e9c51461091957600080fd5b8063bc63f02e14610856578063bde0608a14610876578063c87b56dd1461089657600080fd5b8063940cd05b1161016f578063a22cb46511610149578063a22cb465146107ef578063a37a0cc51461080f578063b88d4fde14610822578063ba2dbb371461083557600080fd5b8063940cd05b146107a757806395d89b41146107c7578063a0712d68146107dc57600080fd5b80637cb64759116101ab5780637cb647591461071c5780637fa2c7041461073c5780638462151c1461075c5780638da5cb5b1461078957600080fd5b80636eedae22146106d157806370a08231146106e7578063715018a61461070757600080fd5b806333bc1c5c116102b657806351830227116102545780636352211e116102235780636352211e1461067057806369181913146106905780636c0360eb146106a65780636c2d3c4f146106bb57600080fd5b806351830227146105f757806355f804b3146106165780635a7adf7f146106365780635c975abb1461065657600080fd5b806344a0d68a1161029057806344a0d68a14610577578063458c4f9e146105975780634678bc6f146105b75780634801ee3e146105d757600080fd5b806333bc1c5c1461053a5780633ccfd60b1461055c57806342842e0e1461056457600080fd5b806313faede6116103235780631b747bbf116102fd5780631b747bbf146104ce57806323b872dd146104fb578063243855c01461050e5780632eb4a7ab1461052457600080fd5b806313faede614610483578063149835a01461049957806318160ddd146104b957600080fd5b8063081812fc1161035f578063081812fc146103ff578063081c8c4414610437578063095ea7b31461044c5780630bddb6131461045f57600080fd5b806301ffc9a71461038657806302329a29146103bb57806306fdde03146103dd575b600080fd5b34801561039257600080fd5b506103a66103a13660046122f0565b610a4b565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103db6103d63660046122bc565b610a9d565b005b3480156103e957600080fd5b506103f2610ab8565b6040516103b291906124e5565b34801561040b57600080fd5b5061041f61041a3660046122d7565b610b4a565b6040516001600160a01b0390911681526020016103b2565b34801561044357600080fd5b506103f2610b8e565b6103db61045a366004612292565b610c1c565b34801561046b57600080fd5b5061047560105481565b6040519081526020016103b2565b34801561048f57600080fd5b50610475600c5481565b3480156104a557600080fd5b506103db6104b43660046122d7565b610cbc565b3480156104c557600080fd5b50610475610cc9565b3480156104da57600080fd5b506104756104e9366004612162565b60166020526000908152604090205481565b6103db6105093660046121b0565b610cd7565b34801561051a57600080fd5b5061047560155481565b34801561053057600080fd5b5061047560145481565b34801561054657600080fd5b506013546103a690640100000000900460ff1681565b6103db610e68565b6103db6105723660046121b0565b610ed9565b34801561058357600080fd5b506103db6105923660046122d7565b610ef9565b3480156105a357600080fd5b506103db6105b23660046122d7565b610f06565b3480156105c357600080fd5b506103db6105d23660046122d7565b610f13565b3480156105e357600080fd5b506103db6105f23660046122bc565b610f20565b34801561060357600080fd5b506013546103a690610100900460ff1681565b34801561062257600080fd5b506103db61063136600461232a565b610f46565b34801561064257600080fd5b506013546103a69062010000900460ff1681565b34801561066257600080fd5b506013546103a69060ff1681565b34801561067c57600080fd5b5061041f61068b3660046122d7565b610f65565b34801561069c57600080fd5b5061047560115481565b3480156106b257600080fd5b506103f2610f70565b3480156106c757600080fd5b50610475600d5481565b3480156106dd57600080fd5b50610475600f5481565b3480156106f357600080fd5b50610475610702366004612162565b610f7d565b34801561071357600080fd5b506103db610fcc565b34801561072857600080fd5b506103db6107373660046122d7565b610fe0565b34801561074857600080fd5b506103db6107573660046122d7565b610fed565b34801561076857600080fd5b5061077c610777366004612162565b610ffa565b6040516103b291906124ad565b34801561079557600080fd5b506008546001600160a01b031661041f565b3480156107b357600080fd5b506103db6107c23660046122bc565b61110a565b3480156107d357600080fd5b506103f261112c565b6103db6107ea3660046122d7565b61113b565b3480156107fb57600080fd5b506103db61080a366004612268565b611283565b6103db61081d366004612396565b6112ef565b6103db6108303660046121ec565b611564565b34801561084157600080fd5b506013546103a6906301000000900460ff1681565b34801561086257600080fd5b506103db610871366004612373565b6115ae565b34801561088257600080fd5b506103db6108913660046122d7565b611645565b3480156108a257600080fd5b506103f26108b13660046122d7565b611652565b3480156108c257600080fd5b50610475600e5481565b3480156108d857600080fd5b506104756108e7366004612162565b6117bf565b3480156108f857600080fd5b50610475610907366004612162565b60176020526000908152604090205481565b34801561092557600080fd5b506103a661093436600461217d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561096e57600080fd5b506103db61097d3660046122d7565b6117ea565b34801561098e57600080fd5b5061047560125481565b3480156109a457600080fd5b506103db6109b33660046122d7565b6117f7565b3480156109c457600080fd5b506103db6109d336600461232a565b611804565b3480156109e457600080fd5b506103db6109f3366004612162565b61181f565b348015610a0457600080fd5b506103db610a133660046122bc565b611898565b6103db610a26366004612396565b6118c0565b348015610a3757600080fd5b506103db610a463660046122bc565b611ad8565b60006301ffc9a760e01b6001600160e01b031983161480610a7c57506380ac58cd60e01b6001600160e01b03198316145b80610a975750635b5e139f60e01b6001600160e01b03198316145b92915050565b610aa5611afc565b6013805460ff1916911515919091179055565b606060028054610ac7906126c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610af3906126c7565b8015610b405780601f10610b1557610100808354040283529160200191610b40565b820191906000526020600020905b815481529060010190602001808311610b2357829003601f168201915b5050505050905090565b6000610b5582611b56565b610b72576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b8054610b9b906126c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc7906126c7565b8015610c145780601f10610be957610100808354040283529160200191610c14565b820191906000526020600020905b815481529060010190602001808311610bf757829003601f168201915b505050505081565b6000610c2782610f65565b9050336001600160a01b03821614610c6057610c438133610934565b610c60576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610cc4611afc565b600e55565b600154600054036000190190565b6000610ce282611b8b565b9050836001600160a01b0316816001600160a01b031614610d155760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610d6257610d458633610934565b610d6257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d8957604051633a954ecd60e21b815260040160405180910390fd5b8015610d9457600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610e1f5760018401600081815260046020526040902054610e1d576000548114610e1d5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610e70611afc565b60026009541415610e9c5760405162461bcd60e51b8152600401610e93906125eb565b60405180910390fd5b60026009556040514790339082156108fc029083906000818181858888f19350505050158015610ed0573d6000803e3d6000fd5b50506001600955565b610ef483838360405180602001604052806000815250611564565b505050565b610f01611afc565b600c55565b610f0e611afc565b601055565b610f1b611afc565b601155565b610f28611afc565b6013805491151563010000000263ff00000019909216919091179055565b610f4e611afc565b8051610f6190600a906020840190612027565b5050565b6000610a9782611b8b565b600a8054610b9b906126c7565b60006001600160a01b038216610fa6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610fd4611afc565b610fde6000611bf4565b565b610fe8611afc565b601455565b610ff5611afc565b601555565b6060600080600061100a85610f7d565b905060008167ffffffffffffffff81111561102757611027612749565b604051908082528060200260200182016040528015611050578160200160208202803683370190505b50905061107d60408051608081018252600080825260208201819052918101829052606081019190915290565b60015b8386146110fe5761109081611c46565b91508160400151156110a1576110f6565b81516001600160a01b0316156110b657815194505b876001600160a01b0316856001600160a01b031614156110f657808387806001019850815181106110e9576110e9612733565b6020026020010181815250505b600101611080565b50909695505050505050565b611112611afc565b601380549115156101000261ff0019909216919091179055565b606060038054610ac7906126c7565b6002600954141561115e5760405162461bcd60e51b8152600401610e93906125eb565b600260095560135460ff16156111865760405162461bcd60e51b8152600401610e93906125b4565b601354640100000000900460ff166111e05760405162461bcd60e51b815260206004820152601e60248201527f50524f46533a2053616c65206861736e277420737461727465642079657400006044820152606401610e93565b600e54816111ec610cc9565b6111f69190612664565b11156112445760405162461bcd60e51b815260206004820152601760248201527f50524f46533a2057652061726520736f6c64206f7574210000000000000000006044820152606401610e93565b80600c54611252919061267c565b3410156112715760405162461bcd60e51b8152600401610e939061253b565b61127b3382611cc5565b506001600955565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600260095414156113125760405162461bcd60e51b8152600401610e93906125eb565b600260095560135460ff161561133a5760405162461bcd60e51b8152600401610e93906125b4565b6013546301000000900460ff166113635760405162461bcd60e51b8152600401610e9390612622565b6113d9828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff193360601b16602082015290925060340190505b60405160208183030381529060405280519060200120611cdf565b6114255760405162461bcd60e51b815260206004820152601f60248201527f50524f46533a20596f7520617265206e6f742077686974656c697374656421006044820152606401610e93565b60115433600090815260166020526040902054611443908590612664565b11156114615760405162461bcd60e51b8152600401610e9390612572565b6011548311156114835760405162461bcd60e51b8152600401610e93906124f8565b600f548361148f610cc9565b6114999190612664565b11156114e75760405162461bcd60e51b815260206004820181905260248201527f50524f46533a2057686974656c69737420737570706c792065786365656465646044820152606401610e93565b82600d546114f5919061267c565b3410156115145760405162461bcd60e51b8152600401610e939061253b565b8260166000335b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461154a9190612664565b9091555061155a90503384611cc5565b5050600160095550565b61156f848484610cd7565b6001600160a01b0383163b156115a85761158b84848484611cf5565b6115a8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6115b6611afc565b600260095414156115d95760405162461bcd60e51b8152600401610e93906125eb565b6002600955600e54826115ea610cc9565b6115f49190612664565b111561163b5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610e93565b610ed08183611cc5565b61164d611afc565b601255565b606061165d82611b56565b6116c25760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610e93565b601354610100900460ff1661176357600b80546116de906126c7565b80601f016020809104026020016040519081016040528092919081815260200182805461170a906126c7565b80156117575780601f1061172c57610100808354040283529160200191611757565b820191906000526020600020905b81548152906001019060200180831161173a57829003601f168201915b50505050509050919050565b600061176d611ded565b9050600081511161178d57604051806020016040528060008152506117b8565b8061179784611dfc565b6040516020016117a8929190612441565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610a97565b6117f2611afc565b600f55565b6117ff611afc565b600d55565b61180c611afc565b8051610f6190600b906020840190612027565b611827611afc565b6001600160a01b03811661188c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e93565b61189581611bf4565b50565b6118a0611afc565b601380549115156401000000000264ff0000000019909216919091179055565b600260095414156118e35760405162461bcd60e51b8152600401610e93906125eb565b600260095560135460ff161561190b5760405162461bcd60e51b8152600401610e93906125b4565b60135462010000900460ff166119335760405162461bcd60e51b8152600401610e9390612622565b611992828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014546040516bffffffffffffffffffffffff193360601b16602082015290925060340190506113be565b6119de5760405162461bcd60e51b815260206004820152601f60248201527f50524f46533a20596f7520617265206e6f742077686974656c697374656421006044820152606401610e93565b601254336000908152601760205260409020546119fc908590612664565b1115611a1a5760405162461bcd60e51b8152600401610e9390612572565b601254831115611a3c5760405162461bcd60e51b8152600401610e93906124f8565b60105483611a48610cc9565b611a529190612664565b1115611aa05760405162461bcd60e51b815260206004820181905260248201527f50524f46533a2057686974656c69737420737570706c792065786365656465646044820152606401610e93565b82600d54611aae919061267c565b341015611acd5760405162461bcd60e51b8152600401610e939061253b565b82601760003361151b565b611ae0611afc565b60138054911515620100000262ff000019909216919091179055565b6008546001600160a01b03163314610fde5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e93565b600081600111158015611b6a575060005482105b8015610a97575050600090815260046020526040902054600160e01b161590565b60008180600111611bdb57600054811015611bdb57600081815260046020526040902054600160e01b8116611bd9575b806117b8575060001901600081815260046020526040902054611bbb565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610a9790604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b610f61828260405180602001604052806000815250611e4a565b600082611cec8584611eb7565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d2a903390899088908890600401612470565b602060405180830381600087803b158015611d4457600080fd5b505af1925050508015611d74575060408051601f3d908101601f19168201909252611d719181019061230d565b60015b611dcf573d808015611da2576040519150601f19603f3d011682016040523d82523d6000602084013e611da7565b606091505b508051611dc7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610ac7906126c7565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611e3357611e38565b611e16565b50819003601f19909101908152919050565b611e548383611f04565b6001600160a01b0383163b15610ef4576000548281035b611e7e6000868380600101945086611cf5565b611e9b576040516368d2bf6b60e11b815260040160405180910390fd5b818110611e6b578160005414611eb057600080fd5b5050505050565b600081815b8451811015611efc57611ee882868381518110611edb57611edb612733565b6020026020010151611ffb565b915080611ef481612702565b915050611ebc565b509392505050565b60005481611f255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611fd457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611f9c565b5081611ff257604051622e076360e81b815260040160405180910390fd5b60005550505050565b60008183106120175760008281526020849052604090206117b8565b5060009182526020526040902090565b828054612033906126c7565b90600052602060002090601f016020900481019282612055576000855561209b565b82601f1061206e57805160ff191683800117855561209b565b8280016001018555821561209b579182015b8281111561209b578251825591602001919060010190612080565b506120a79291506120ab565b5090565b5b808211156120a757600081556001016120ac565b600067ffffffffffffffff808411156120db576120db612749565b604051601f8501601f19908116603f0116810190828211818310171561210357612103612749565b8160405280935085815286868601111561211c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461214d57600080fd5b919050565b8035801515811461214d57600080fd5b60006020828403121561217457600080fd5b6117b882612136565b6000806040838503121561219057600080fd5b61219983612136565b91506121a760208401612136565b90509250929050565b6000806000606084860312156121c557600080fd5b6121ce84612136565b92506121dc60208501612136565b9150604084013590509250925092565b6000806000806080858703121561220257600080fd5b61220b85612136565b935061221960208601612136565b925060408501359150606085013567ffffffffffffffff81111561223c57600080fd5b8501601f8101871361224d57600080fd5b61225c878235602084016120c0565b91505092959194509250565b6000806040838503121561227b57600080fd5b61228483612136565b91506121a760208401612152565b600080604083850312156122a557600080fd5b6122ae83612136565b946020939093013593505050565b6000602082840312156122ce57600080fd5b6117b882612152565b6000602082840312156122e957600080fd5b5035919050565b60006020828403121561230257600080fd5b81356117b88161275f565b60006020828403121561231f57600080fd5b81516117b88161275f565b60006020828403121561233c57600080fd5b813567ffffffffffffffff81111561235357600080fd5b8201601f8101841361236457600080fd5b611de5848235602084016120c0565b6000806040838503121561238657600080fd5b823591506121a760208401612136565b6000806000604084860312156123ab57600080fd5b83359250602084013567ffffffffffffffff808211156123ca57600080fd5b818601915086601f8301126123de57600080fd5b8135818111156123ed57600080fd5b8760208260051b850101111561240257600080fd5b6020830194508093505050509250925092565b6000815180845261242d81602086016020860161269b565b601f01601f19169290920160200192915050565b6000835161245381846020880161269b565b83519083019061246781836020880161269b565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124a390830184612415565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156110fe578351835292840192918401916001016124c9565b6020815260006117b86020830184612415565b60208082526023908201527f50524f46533a204d6178206d696e74207065722077616c6c657420657863656560408201526219195960ea1b606082015260800190565b60208082526019908201527f50524f46533a20496e73756666696369656e742066756e647300000000000000604082015260600190565b60208082526022908201527f50524f46533a204d6178204e4654207065722077616c6c657420657863656564604082015261195960f21b606082015260800190565b60208082526019908201527f50524f46533a20436f6e74726163742069732070617573656400000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526022908201527f50524f46533a205072652053616c65206861736e277420737461727465642079604082015261195d60f21b606082015260800190565b600082198211156126775761267761271d565b500190565b60008160001904831182151516156126965761269661271d565b500290565b60005b838110156126b657818101518382015260200161269e565b838111156115a85750506000910152565b600181811c908216806126db57607f821691505b602082108114156126fc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127165761271661271d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461189557600080fdfea2646970667358221220e86db355eaab53b4fc5b794ba1666760e69dd01e577292dd39a21925089ab7e864736f6c63430008070033697066733a2f2f516d595a51764e7235634b7373576f6248654b624359633745426231347033333252694437334250794b665236552f697066733a2f2f516d5a486d4273645a657262753271734470674550414c4467414b6148533769615153364353656f67673868566d

Deployed Bytecode

0x6080604052600436106103815760003560e01c80636eedae22116101d1578063bc63f02e11610102578063ea071a48116100a0578063f2fde38b1161006f578063f2fde38b146109d8578063f3257cdd146109f8578063f7019ffd14610a18578063fea0e05814610a2b57600080fd5b8063ea071a4814610962578063ebe0610a14610982578063f12f6d5d14610998578063f2c4ce1e146109b857600080fd5b8063d5abeb01116100dc578063d5abeb01146108b6578063dc33e681146108cc578063e3821abf146108ec578063e985e9c51461091957600080fd5b8063bc63f02e14610856578063bde0608a14610876578063c87b56dd1461089657600080fd5b8063940cd05b1161016f578063a22cb46511610149578063a22cb465146107ef578063a37a0cc51461080f578063b88d4fde14610822578063ba2dbb371461083557600080fd5b8063940cd05b146107a757806395d89b41146107c7578063a0712d68146107dc57600080fd5b80637cb64759116101ab5780637cb647591461071c5780637fa2c7041461073c5780638462151c1461075c5780638da5cb5b1461078957600080fd5b80636eedae22146106d157806370a08231146106e7578063715018a61461070757600080fd5b806333bc1c5c116102b657806351830227116102545780636352211e116102235780636352211e1461067057806369181913146106905780636c0360eb146106a65780636c2d3c4f146106bb57600080fd5b806351830227146105f757806355f804b3146106165780635a7adf7f146106365780635c975abb1461065657600080fd5b806344a0d68a1161029057806344a0d68a14610577578063458c4f9e146105975780634678bc6f146105b75780634801ee3e146105d757600080fd5b806333bc1c5c1461053a5780633ccfd60b1461055c57806342842e0e1461056457600080fd5b806313faede6116103235780631b747bbf116102fd5780631b747bbf146104ce57806323b872dd146104fb578063243855c01461050e5780632eb4a7ab1461052457600080fd5b806313faede614610483578063149835a01461049957806318160ddd146104b957600080fd5b8063081812fc1161035f578063081812fc146103ff578063081c8c4414610437578063095ea7b31461044c5780630bddb6131461045f57600080fd5b806301ffc9a71461038657806302329a29146103bb57806306fdde03146103dd575b600080fd5b34801561039257600080fd5b506103a66103a13660046122f0565b610a4b565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103db6103d63660046122bc565b610a9d565b005b3480156103e957600080fd5b506103f2610ab8565b6040516103b291906124e5565b34801561040b57600080fd5b5061041f61041a3660046122d7565b610b4a565b6040516001600160a01b0390911681526020016103b2565b34801561044357600080fd5b506103f2610b8e565b6103db61045a366004612292565b610c1c565b34801561046b57600080fd5b5061047560105481565b6040519081526020016103b2565b34801561048f57600080fd5b50610475600c5481565b3480156104a557600080fd5b506103db6104b43660046122d7565b610cbc565b3480156104c557600080fd5b50610475610cc9565b3480156104da57600080fd5b506104756104e9366004612162565b60166020526000908152604090205481565b6103db6105093660046121b0565b610cd7565b34801561051a57600080fd5b5061047560155481565b34801561053057600080fd5b5061047560145481565b34801561054657600080fd5b506013546103a690640100000000900460ff1681565b6103db610e68565b6103db6105723660046121b0565b610ed9565b34801561058357600080fd5b506103db6105923660046122d7565b610ef9565b3480156105a357600080fd5b506103db6105b23660046122d7565b610f06565b3480156105c357600080fd5b506103db6105d23660046122d7565b610f13565b3480156105e357600080fd5b506103db6105f23660046122bc565b610f20565b34801561060357600080fd5b506013546103a690610100900460ff1681565b34801561062257600080fd5b506103db61063136600461232a565b610f46565b34801561064257600080fd5b506013546103a69062010000900460ff1681565b34801561066257600080fd5b506013546103a69060ff1681565b34801561067c57600080fd5b5061041f61068b3660046122d7565b610f65565b34801561069c57600080fd5b5061047560115481565b3480156106b257600080fd5b506103f2610f70565b3480156106c757600080fd5b50610475600d5481565b3480156106dd57600080fd5b50610475600f5481565b3480156106f357600080fd5b50610475610702366004612162565b610f7d565b34801561071357600080fd5b506103db610fcc565b34801561072857600080fd5b506103db6107373660046122d7565b610fe0565b34801561074857600080fd5b506103db6107573660046122d7565b610fed565b34801561076857600080fd5b5061077c610777366004612162565b610ffa565b6040516103b291906124ad565b34801561079557600080fd5b506008546001600160a01b031661041f565b3480156107b357600080fd5b506103db6107c23660046122bc565b61110a565b3480156107d357600080fd5b506103f261112c565b6103db6107ea3660046122d7565b61113b565b3480156107fb57600080fd5b506103db61080a366004612268565b611283565b6103db61081d366004612396565b6112ef565b6103db6108303660046121ec565b611564565b34801561084157600080fd5b506013546103a6906301000000900460ff1681565b34801561086257600080fd5b506103db610871366004612373565b6115ae565b34801561088257600080fd5b506103db6108913660046122d7565b611645565b3480156108a257600080fd5b506103f26108b13660046122d7565b611652565b3480156108c257600080fd5b50610475600e5481565b3480156108d857600080fd5b506104756108e7366004612162565b6117bf565b3480156108f857600080fd5b50610475610907366004612162565b60176020526000908152604090205481565b34801561092557600080fd5b506103a661093436600461217d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561096e57600080fd5b506103db61097d3660046122d7565b6117ea565b34801561098e57600080fd5b5061047560125481565b3480156109a457600080fd5b506103db6109b33660046122d7565b6117f7565b3480156109c457600080fd5b506103db6109d336600461232a565b611804565b3480156109e457600080fd5b506103db6109f3366004612162565b61181f565b348015610a0457600080fd5b506103db610a133660046122bc565b611898565b6103db610a26366004612396565b6118c0565b348015610a3757600080fd5b506103db610a463660046122bc565b611ad8565b60006301ffc9a760e01b6001600160e01b031983161480610a7c57506380ac58cd60e01b6001600160e01b03198316145b80610a975750635b5e139f60e01b6001600160e01b03198316145b92915050565b610aa5611afc565b6013805460ff1916911515919091179055565b606060028054610ac7906126c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610af3906126c7565b8015610b405780601f10610b1557610100808354040283529160200191610b40565b820191906000526020600020905b815481529060010190602001808311610b2357829003601f168201915b5050505050905090565b6000610b5582611b56565b610b72576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b8054610b9b906126c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc7906126c7565b8015610c145780601f10610be957610100808354040283529160200191610c14565b820191906000526020600020905b815481529060010190602001808311610bf757829003601f168201915b505050505081565b6000610c2782610f65565b9050336001600160a01b03821614610c6057610c438133610934565b610c60576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610cc4611afc565b600e55565b600154600054036000190190565b6000610ce282611b8b565b9050836001600160a01b0316816001600160a01b031614610d155760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610d6257610d458633610934565b610d6257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d8957604051633a954ecd60e21b815260040160405180910390fd5b8015610d9457600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610e1f5760018401600081815260046020526040902054610e1d576000548114610e1d5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610e70611afc565b60026009541415610e9c5760405162461bcd60e51b8152600401610e93906125eb565b60405180910390fd5b60026009556040514790339082156108fc029083906000818181858888f19350505050158015610ed0573d6000803e3d6000fd5b50506001600955565b610ef483838360405180602001604052806000815250611564565b505050565b610f01611afc565b600c55565b610f0e611afc565b601055565b610f1b611afc565b601155565b610f28611afc565b6013805491151563010000000263ff00000019909216919091179055565b610f4e611afc565b8051610f6190600a906020840190612027565b5050565b6000610a9782611b8b565b600a8054610b9b906126c7565b60006001600160a01b038216610fa6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610fd4611afc565b610fde6000611bf4565b565b610fe8611afc565b601455565b610ff5611afc565b601555565b6060600080600061100a85610f7d565b905060008167ffffffffffffffff81111561102757611027612749565b604051908082528060200260200182016040528015611050578160200160208202803683370190505b50905061107d60408051608081018252600080825260208201819052918101829052606081019190915290565b60015b8386146110fe5761109081611c46565b91508160400151156110a1576110f6565b81516001600160a01b0316156110b657815194505b876001600160a01b0316856001600160a01b031614156110f657808387806001019850815181106110e9576110e9612733565b6020026020010181815250505b600101611080565b50909695505050505050565b611112611afc565b601380549115156101000261ff0019909216919091179055565b606060038054610ac7906126c7565b6002600954141561115e5760405162461bcd60e51b8152600401610e93906125eb565b600260095560135460ff16156111865760405162461bcd60e51b8152600401610e93906125b4565b601354640100000000900460ff166111e05760405162461bcd60e51b815260206004820152601e60248201527f50524f46533a2053616c65206861736e277420737461727465642079657400006044820152606401610e93565b600e54816111ec610cc9565b6111f69190612664565b11156112445760405162461bcd60e51b815260206004820152601760248201527f50524f46533a2057652061726520736f6c64206f7574210000000000000000006044820152606401610e93565b80600c54611252919061267c565b3410156112715760405162461bcd60e51b8152600401610e939061253b565b61127b3382611cc5565b506001600955565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600260095414156113125760405162461bcd60e51b8152600401610e93906125eb565b600260095560135460ff161561133a5760405162461bcd60e51b8152600401610e93906125b4565b6013546301000000900460ff166113635760405162461bcd60e51b8152600401610e9390612622565b6113d9828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff193360601b16602082015290925060340190505b60405160208183030381529060405280519060200120611cdf565b6114255760405162461bcd60e51b815260206004820152601f60248201527f50524f46533a20596f7520617265206e6f742077686974656c697374656421006044820152606401610e93565b60115433600090815260166020526040902054611443908590612664565b11156114615760405162461bcd60e51b8152600401610e9390612572565b6011548311156114835760405162461bcd60e51b8152600401610e93906124f8565b600f548361148f610cc9565b6114999190612664565b11156114e75760405162461bcd60e51b815260206004820181905260248201527f50524f46533a2057686974656c69737420737570706c792065786365656465646044820152606401610e93565b82600d546114f5919061267c565b3410156115145760405162461bcd60e51b8152600401610e939061253b565b8260166000335b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461154a9190612664565b9091555061155a90503384611cc5565b5050600160095550565b61156f848484610cd7565b6001600160a01b0383163b156115a85761158b84848484611cf5565b6115a8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6115b6611afc565b600260095414156115d95760405162461bcd60e51b8152600401610e93906125eb565b6002600955600e54826115ea610cc9565b6115f49190612664565b111561163b5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610e93565b610ed08183611cc5565b61164d611afc565b601255565b606061165d82611b56565b6116c25760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610e93565b601354610100900460ff1661176357600b80546116de906126c7565b80601f016020809104026020016040519081016040528092919081815260200182805461170a906126c7565b80156117575780601f1061172c57610100808354040283529160200191611757565b820191906000526020600020905b81548152906001019060200180831161173a57829003601f168201915b50505050509050919050565b600061176d611ded565b9050600081511161178d57604051806020016040528060008152506117b8565b8061179784611dfc565b6040516020016117a8929190612441565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610a97565b6117f2611afc565b600f55565b6117ff611afc565b600d55565b61180c611afc565b8051610f6190600b906020840190612027565b611827611afc565b6001600160a01b03811661188c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e93565b61189581611bf4565b50565b6118a0611afc565b601380549115156401000000000264ff0000000019909216919091179055565b600260095414156118e35760405162461bcd60e51b8152600401610e93906125eb565b600260095560135460ff161561190b5760405162461bcd60e51b8152600401610e93906125b4565b60135462010000900460ff166119335760405162461bcd60e51b8152600401610e9390612622565b611992828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014546040516bffffffffffffffffffffffff193360601b16602082015290925060340190506113be565b6119de5760405162461bcd60e51b815260206004820152601f60248201527f50524f46533a20596f7520617265206e6f742077686974656c697374656421006044820152606401610e93565b601254336000908152601760205260409020546119fc908590612664565b1115611a1a5760405162461bcd60e51b8152600401610e9390612572565b601254831115611a3c5760405162461bcd60e51b8152600401610e93906124f8565b60105483611a48610cc9565b611a529190612664565b1115611aa05760405162461bcd60e51b815260206004820181905260248201527f50524f46533a2057686974656c69737420737570706c792065786365656465646044820152606401610e93565b82600d54611aae919061267c565b341015611acd5760405162461bcd60e51b8152600401610e939061253b565b82601760003361151b565b611ae0611afc565b60138054911515620100000262ff000019909216919091179055565b6008546001600160a01b03163314610fde5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e93565b600081600111158015611b6a575060005482105b8015610a97575050600090815260046020526040902054600160e01b161590565b60008180600111611bdb57600054811015611bdb57600081815260046020526040902054600160e01b8116611bd9575b806117b8575060001901600081815260046020526040902054611bbb565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610a9790604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b610f61828260405180602001604052806000815250611e4a565b600082611cec8584611eb7565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d2a903390899088908890600401612470565b602060405180830381600087803b158015611d4457600080fd5b505af1925050508015611d74575060408051601f3d908101601f19168201909252611d719181019061230d565b60015b611dcf573d808015611da2576040519150601f19603f3d011682016040523d82523d6000602084013e611da7565b606091505b508051611dc7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610ac7906126c7565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611e3357611e38565b611e16565b50819003601f19909101908152919050565b611e548383611f04565b6001600160a01b0383163b15610ef4576000548281035b611e7e6000868380600101945086611cf5565b611e9b576040516368d2bf6b60e11b815260040160405180910390fd5b818110611e6b578160005414611eb057600080fd5b5050505050565b600081815b8451811015611efc57611ee882868381518110611edb57611edb612733565b6020026020010151611ffb565b915080611ef481612702565b915050611ebc565b509392505050565b60005481611f255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611fd457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611f9c565b5081611ff257604051622e076360e81b815260040160405180910390fd5b60005550505050565b60008183106120175760008281526020849052604090206117b8565b5060009182526020526040902090565b828054612033906126c7565b90600052602060002090601f016020900481019282612055576000855561209b565b82601f1061206e57805160ff191683800117855561209b565b8280016001018555821561209b579182015b8281111561209b578251825591602001919060010190612080565b506120a79291506120ab565b5090565b5b808211156120a757600081556001016120ac565b600067ffffffffffffffff808411156120db576120db612749565b604051601f8501601f19908116603f0116810190828211818310171561210357612103612749565b8160405280935085815286868601111561211c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461214d57600080fd5b919050565b8035801515811461214d57600080fd5b60006020828403121561217457600080fd5b6117b882612136565b6000806040838503121561219057600080fd5b61219983612136565b91506121a760208401612136565b90509250929050565b6000806000606084860312156121c557600080fd5b6121ce84612136565b92506121dc60208501612136565b9150604084013590509250925092565b6000806000806080858703121561220257600080fd5b61220b85612136565b935061221960208601612136565b925060408501359150606085013567ffffffffffffffff81111561223c57600080fd5b8501601f8101871361224d57600080fd5b61225c878235602084016120c0565b91505092959194509250565b6000806040838503121561227b57600080fd5b61228483612136565b91506121a760208401612152565b600080604083850312156122a557600080fd5b6122ae83612136565b946020939093013593505050565b6000602082840312156122ce57600080fd5b6117b882612152565b6000602082840312156122e957600080fd5b5035919050565b60006020828403121561230257600080fd5b81356117b88161275f565b60006020828403121561231f57600080fd5b81516117b88161275f565b60006020828403121561233c57600080fd5b813567ffffffffffffffff81111561235357600080fd5b8201601f8101841361236457600080fd5b611de5848235602084016120c0565b6000806040838503121561238657600080fd5b823591506121a760208401612136565b6000806000604084860312156123ab57600080fd5b83359250602084013567ffffffffffffffff808211156123ca57600080fd5b818601915086601f8301126123de57600080fd5b8135818111156123ed57600080fd5b8760208260051b850101111561240257600080fd5b6020830194508093505050509250925092565b6000815180845261242d81602086016020860161269b565b601f01601f19169290920160200192915050565b6000835161245381846020880161269b565b83519083019061246781836020880161269b565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124a390830184612415565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156110fe578351835292840192918401916001016124c9565b6020815260006117b86020830184612415565b60208082526023908201527f50524f46533a204d6178206d696e74207065722077616c6c657420657863656560408201526219195960ea1b606082015260800190565b60208082526019908201527f50524f46533a20496e73756666696369656e742066756e647300000000000000604082015260600190565b60208082526022908201527f50524f46533a204d6178204e4654207065722077616c6c657420657863656564604082015261195960f21b606082015260800190565b60208082526019908201527f50524f46533a20436f6e74726163742069732070617573656400000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526022908201527f50524f46533a205072652053616c65206861736e277420737461727465642079604082015261195d60f21b606082015260800190565b600082198211156126775761267761271d565b500190565b60008160001904831182151516156126965761269661271d565b500290565b60005b838110156126b657818101518382015260200161269e565b838111156115a85750506000910152565b600181811c908216806126db57607f821691505b602082108114156126fc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127165761271661271d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461189557600080fdfea2646970667358221220e86db355eaab53b4fc5b794ba1666760e69dd01e577292dd39a21925089ab7e864736f6c63430008070033

Deployed Bytecode Sourcemap

66594:6716:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33481:639;;;;;;;;;;-1:-1:-1;33481:639:0;;;;;:::i;:::-;;:::i;:::-;;;7906:14:1;;7899:22;7881:41;;7869:2;7854:18;33481:639:0;;;;;;;;72751:73;;;;;;;;;;-1:-1:-1;72751:73:0;;;;;:::i;:::-;;:::i;:::-;;34383:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40874:218::-;;;;;;;;;;-1:-1:-1;40874:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6567:32:1;;;6549:51;;6537:2;6522:18;40874:218:0;6403:203:1;66747:86:0;;;;;;;;;;;;;:::i;40307:408::-;;;;;;:::i;:::-;;:::i;66986:29::-;;;;;;;;;;;;;;;;;;;8079:25:1;;;8067:2;8052:18;66986:29:0;7933:177:1;66838:32:0;;;;;;;;;;;;;;;;72214:94;;;;;;;;;;-1:-1:-1;72214:94:0;;;;;:::i;:::-;;:::i;30134:323::-;;;;;;;;;;;;;:::i;67325:45::-;;;;;;;;;;-1:-1:-1;67325:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;44513:2825;;;;;;:::i;:::-;;:::i;67292:28::-;;;;;;;;;;;;;;;;67262:25;;;;;;;;;;;;;;;;67227:30;;;;;;;;;;-1:-1:-1;67227:30:0;;;;;;;;;;;73140:167;;;:::i;47434:193::-;;;;;;:::i;:::-;;:::i;72028:80::-;;;;;;;;;;-1:-1:-1;72028:80:0;;;;;:::i;:::-;;:::i;72317:92::-;;;;;;;;;;-1:-1:-1;72317:92:0;;;;;:::i;:::-;;:::i;71920:98::-;;;;;;;;;;-1:-1:-1;71920:98:0;;;;;:::i;:::-;;:::i;72932:96::-;;;;;;;;;;-1:-1:-1;72932:96:0;;;;;:::i;:::-;;:::i;67128:28::-;;;;;;;;;;-1:-1:-1;67128:28:0;;;;;;;;;;;72519:98;;;;;;;;;;-1:-1:-1;72519:98:0;;;;;:::i;:::-;;:::i;67161:27::-;;;;;;;;;;-1:-1:-1;67161:27:0;;;;;;;;;;;67097:26;;;;;;;;;;-1:-1:-1;67097:26:0;;;;;;;;35776:152;;;;;;;;;;-1:-1:-1;35776:152:0;;;;;:::i;:::-;;:::i;67020:34::-;;;;;;;;;;;;;;;;66662:80;;;;;;;;;;;;;:::i;66875:34::-;;;;;;;;;;;;;;;;66951:30;;;;;;;;;;;;;;;;31318:233;;;;;;;;;;-1:-1:-1;31318:233:0;;;;;:::i;:::-;;:::i;14260:103::-;;;;;;;;;;;;;:::i;71575:106::-;;;;;;;;;;-1:-1:-1;71575:106:0;;;;;:::i;:::-;;:::i;71692:112::-;;;;;;;;;;-1:-1:-1;71692:112:0;;;;;:::i;:::-;;:::i;70586:881::-;;;;;;;;;;-1:-1:-1;70586:881:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;13612:87::-;;;;;;;;;;-1:-1:-1;13685:6:0;;-1:-1:-1;;;;;13685:6:0;13612:87;;71490:78;;;;;;;;;;-1:-1:-1;71490:78:0;;;;;:::i;:::-;;:::i;34559:104::-;;;;;;;;;;;;;:::i;67730:378::-;;;;;;:::i;:::-;;:::i;41432:234::-;;;;;;;;;;-1:-1:-1;41432:234:0;;;;;:::i;:::-;;:::i;68116:807::-;;;;;;:::i;:::-;;:::i;48225:407::-;;;;;;:::i;:::-;;:::i;67193:29::-;;;;;;;;;;-1:-1:-1;67193:29:0;;;;;;;;;;;69747:224;;;;;;;;;;-1:-1:-1;69747:224:0;;;;;:::i;:::-;;:::i;71815:96::-;;;;;;;;;;-1:-1:-1;71815:96:0;;;;;:::i;:::-;;:::i;69978:481::-;;;;;;;;;;-1:-1:-1;69978:481:0;;;;;:::i;:::-;;:::i;66914:31::-;;;;;;;;;;;;;;;;70468:107;;;;;;;;;;-1:-1:-1;70468:107:0;;;;;:::i;:::-;;:::i;67375:44::-;;;;;;;;;;-1:-1:-1;67375:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;41823:164;;;;;;;;;;-1:-1:-1;41823:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41944:25:0;;;41920:4;41944:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41823:164;72418:94;;;;;;;;;;-1:-1:-1;72418:94:0;;;;;:::i;:::-;;:::i;67059:33::-;;;;;;;;;;;;;;;;72117:88;;;;;;;;;;-1:-1:-1;72117:88:0;;;;;:::i;:::-;;:::i;72624:120::-;;;;;;;;;;-1:-1:-1;72624:120:0;;;;;:::i;:::-;;:::i;14518:201::-;;;;;;;;;;-1:-1:-1;14518:201:0;;;;;:::i;:::-;;:::i;73037:96::-;;;;;;;;;;-1:-1:-1;73037:96:0;;;;;:::i;:::-;;:::i;68935:802::-;;;;;;:::i;:::-;;:::i;72833:90::-;;;;;;;;;;-1:-1:-1;72833:90:0;;;;;:::i;:::-;;:::i;33481:639::-;33566:4;-1:-1:-1;;;;;;;;;33890:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;33967:25:0;;;33890:102;:179;;;-1:-1:-1;;;;;;;;;;34044:25:0;;;33890:179;33870:199;33481:639;-1:-1:-1;;33481:639:0:o;72751:73::-;13498:13;:11;:13::i;:::-;72803:6:::1;:15:::0;;-1:-1:-1;;72803:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;72751:73::o;34383:100::-;34437:13;34470:5;34463:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34383:100;:::o;40874:218::-;40950:7;40975:16;40983:7;40975;:16::i;:::-;40970:64;;41000:34;;-1:-1:-1;;;41000:34:0;;;;;;;;;;;40970:64;-1:-1:-1;41054:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;41054:30:0;;40874:218::o;66747:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40307:408::-;40396:13;40412:16;40420:7;40412;:16::i;:::-;40396:32;-1:-1:-1;64640:10:0;-1:-1:-1;;;;;40445:28:0;;;40441:175;;40493:44;40510:5;64640:10;41823:164;:::i;40493:44::-;40488:128;;40565:35;;-1:-1:-1;;;40565:35:0;;;;;;;;;;;40488:128;40628:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;40628:35:0;-1:-1:-1;;;;;40628:35:0;;;;;;;;;40679:28;;40628:24;;40679:28;;;;;;;40385:330;40307:408;;:::o;72214:94::-;13498:13;:11;:13::i;:::-;72280:9:::1;:22:::0;72214:94::o;30134:323::-;67701:1;30408:12;30195:7;30392:13;:28;-1:-1:-1;;30392:46:0;;30134:323::o;44513:2825::-;44655:27;44685;44704:7;44685:18;:27::i;:::-;44655:57;;44770:4;-1:-1:-1;;;;;44729:45:0;44745:19;-1:-1:-1;;;;;44729:45:0;;44725:86;;44783:28;;-1:-1:-1;;;44783:28:0;;;;;;;;;;;44725:86;44825:27;43621:24;;;:15;:24;;;;;43849:26;;64640:10;43246:30;;;-1:-1:-1;;;;;42939:28:0;;43224:20;;;43221:56;45011:180;;45104:43;45121:4;64640:10;41823:164;:::i;45104:43::-;45099:92;;45156:35;;-1:-1:-1;;;45156:35:0;;;;;;;;;;;45099:92;-1:-1:-1;;;;;45208:16:0;;45204:52;;45233:23;;-1:-1:-1;;;45233:23:0;;;;;;;;;;;45204:52;45405:15;45402:160;;;45545:1;45524:19;45517:30;45402:160;-1:-1:-1;;;;;45942:24:0;;;;;;;:18;:24;;;;;;45940:26;;-1:-1:-1;;45940:26:0;;;46011:22;;;;;;;;;46009:24;;-1:-1:-1;46009:24:0;;;39165:11;39140:23;39136:41;39123:63;-1:-1:-1;;;39123:63:0;46304:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;46599:47:0;;46595:627;;46704:1;46694:11;;46672:19;46827:30;;;:17;:30;;;;;;46823:384;;46965:13;;46950:11;:28;46946:242;;47112:30;;;;:17;:30;;;;;:52;;;46946:242;46653:569;46595:627;47269:7;47265:2;-1:-1:-1;;;;;47250:27:0;47259:4;-1:-1:-1;;;;;47250:27:0;;;;;;;;;;;44644:2694;;;44513:2825;;;:::o;73140:167::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;-1:-1:-1::0;;;11127:63:0::1;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18:::0;73255:46:::2;::::0;73225:21:::2;::::0;64640:10;;73255:46;::::2;;;::::0;73225:21;;73255:46:::2;::::0;;;73225:21;64640:10;73255:46;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;10493:1:0::1;11447:7;:22:::0;73140:167::o;47434:193::-;47580:39;47597:4;47603:2;47607:7;47580:39;;;;;;;;;;;;:16;:39::i;:::-;47434:193;;;:::o;72028:80::-;13498:13;:11;:13::i;:::-;72087:4:::1;:15:::0;72028:80::o;72317:92::-;13498:13;:11;:13::i;:::-;72382:8:::1;:21:::0;72317:92::o;71920:98::-;13498:13;:11;:13::i;:::-;71988:15:::1;:24:::0;71920:98::o;72932:96::-;13498:13;:11;:13::i;:::-;73001:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;73001:19:0;;::::1;::::0;;;::::1;::::0;;72932:96::o;72519:98::-;13498:13;:11;:13::i;:::-;72590:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;72519:98:::0;:::o;35776:152::-;35848:7;35891:27;35910:7;35891:18;:27::i;66662:80::-;;;;;;;:::i;31318:233::-;31390:7;-1:-1:-1;;;;;31414:19:0;;31410:60;;31442:28;;-1:-1:-1;;;31442:28:0;;;;;;;;;;;31410:60;-1:-1:-1;;;;;;31488:25:0;;;;;:18;:25;;;;;;25477:13;31488:55;;31318:233::o;14260:103::-;13498:13;:11;:13::i;:::-;14325:30:::1;14352:1;14325:18;:30::i;:::-;14260:103::o:0;71575:106::-;13498:13;:11;:13::i;:::-;71649:10:::1;:24:::0;71575:106::o;71692:112::-;13498:13;:11;:13::i;:::-;71769::::1;:27:::0;71692:112::o;70586:881::-;70645:16;70699:19;70733:25;70773:22;70798:16;70808:5;70798:9;:16::i;:::-;70773:41;;70829:25;70871:14;70857:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70857:29:0;;70829:57;;70901:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70901:31:0;67701:1;70947:472;70996:14;70981:11;:29;70947:472;;71048:15;71061:1;71048:12;:15::i;:::-;71036:27;;71086:9;:16;;;71082:73;;;71127:8;;71082:73;71177:14;;-1:-1:-1;;;;;71177:28:0;;71173:111;;71250:14;;;-1:-1:-1;71173:111:0;71327:5;-1:-1:-1;;;;;71306:26:0;:17;-1:-1:-1;;;;;71306:26:0;;71302:102;;;71383:1;71357:8;71366:13;;;;;;71357:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;71302:102;71012:3;;70947:472;;;-1:-1:-1;71440:8:0;;70586:881;-1:-1:-1;;;;;;70586:881:0:o;71490:78::-;13498:13;:11;:13::i;:::-;71545:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;71545:17:0;;::::1;::::0;;;::::1;::::0;;71490:78::o;34559:104::-;34615:13;34648:7;34641:14;;;;;:::i;67730:378::-;10537:1;11135:7;;:19;;11127:63;;;;-1:-1:-1;;;11127:63:0;;;;;;;:::i;:::-;10537:1;11268:7;:18;67804:6:::1;::::0;::::1;;67803:7;67795:45;;;;-1:-1:-1::0;;;67795:45:0::1;;;;;;;:::i;:::-;67855:10;::::0;;;::::1;;;67847:53;;;::::0;-1:-1:-1;;;67847:53:0;;9362:2:1;67847:53:0::1;::::0;::::1;9344:21:1::0;9401:2;9381:18;;;9374:30;9440:32;9420:18;;;9413:60;9490:18;;67847:53:0::1;9160:354:1::0;67847:53:0::1;67941:9;;67931:6;67915:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;67907:71;;;::::0;-1:-1:-1;;;67907:71:0;;12311:2:1;67907:71:0::1;::::0;::::1;12293:21:1::0;12350:2;12330:18;;;12323:30;12389:25;12369:18;;;12362:53;12432:18;;67907:71:0::1;12109:347:1::0;67907:71:0::1;68013:6;68006:4;;:13;;;;:::i;:::-;67993:9;:26;;67985:64;;;;-1:-1:-1::0;;;67985:64:0::1;;;;;;;:::i;:::-;68061:38;64640:10:::0;68092:6:::1;68061:9;:38::i;:::-;-1:-1:-1::0;10493:1:0;11447:7;:22;67730:378::o;41432:234::-;64640:10;41527:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;41527:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;41527:60:0;;;;;;;;;;41603:55;;7881:41:1;;;41527:49:0;;64640:10;41603:55;;7854:18:1;41603:55:0;;;;;;;41432:234;;:::o;68116:807::-;10537:1;11135:7;;:19;;11127:63;;;;-1:-1:-1;;;11127:63:0;;;;;;;:::i;:::-;10537:1;11268:7;:18;68225:6:::1;::::0;::::1;;68224:7;68216:45;;;;-1:-1:-1::0;;;68216:45:0::1;;;;;;;:::i;:::-;68276:10;::::0;;;::::1;;;68268:57;;;;-1:-1:-1::0;;;68268:57:0::1;;;;;;;:::i;:::-;68340:87;68359:11;;68340:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;68372:13:0::1;::::0;68397:28:::1;::::0;-1:-1:-1;;68414:10:0::1;5843:2:1::0;5839:15;5835:53;68397:28:0::1;::::0;::::1;5823:66:1::0;68372:13:0;;-1:-1:-1;5905:12:1;;;-1:-1:-1;68397:28:0::1;;;;;;;;;;;;;68387:39;;;;;;68340:18;:87::i;:::-;68332:131;;;::::0;-1:-1:-1;;;68332:131:0;;10128:2:1;68332:131:0::1;::::0;::::1;10110:21:1::0;10167:2;10147:18;;;10140:30;10206:33;10186:18;;;10179:61;10257:18;;68332:131:0::1;9926:355:1::0;68332:131:0::1;68521:15;::::0;64640:10;68478:30:::1;::::0;;;:9:::1;:30;::::0;;;;;:39:::1;::::0;68511:6;;68478:39:::1;:::i;:::-;:58;;68470:105;;;;-1:-1:-1::0;;;68470:105:0::1;;;;;;;:::i;:::-;68600:15;;68590:6;:25;;68582:73;;;;-1:-1:-1::0;;;68582:73:0::1;;;;;;;:::i;:::-;68696:9;;68686:6;68670:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;68662:80;;;::::0;-1:-1:-1;;;68662:80:0;;13023:2:1;68662:80:0::1;::::0;::::1;13005:21:1::0;;;13042:18;;;13035:30;13101:34;13081:18;;;13074:62;13153:18;;68662:80:0::1;12821:356:1::0;68662:80:0::1;68779:6;68770;;:15;;;;:::i;:::-;68757:9;:28;;68749:66;;;;-1:-1:-1::0;;;68749:66:0::1;;;;;;;:::i;:::-;68861:6:::0;68827:9:::1;:30;64640:10:::0;68837:19:::1;-1:-1:-1::0;;;;;68827:30:0::1;-1:-1:-1::0;;;;;68827:30:0::1;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;68876:38:0::1;::::0;-1:-1:-1;64640:10:0;68907:6:::1;68876:9;:38::i;:::-;-1:-1:-1::0;;10493:1:0;11447:7;:22;-1:-1:-1;68116:807:0:o;48225:407::-;48400:31;48413:4;48419:2;48423:7;48400:12;:31::i;:::-;-1:-1:-1;;;;;48446:14:0;;;:19;48442:183;;48485:56;48516:4;48522:2;48526:7;48535:5;48485:30;:56::i;:::-;48480:145;;48569:40;;-1:-1:-1;;;48569:40:0;;;;;;;;;;;48480:145;48225:407;;;;:::o;69747:224::-;13498:13;:11;:13::i;:::-;10537:1:::1;11135:7;;:19;;11127:63;;;;-1:-1:-1::0;;;11127:63:0::1;;;;;;;:::i;:::-;10537:1;11268:7;:18:::0;69882:9:::2;::::0;69867:11;69851:13:::2;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;69843:75;;;::::0;-1:-1:-1;;;69843:75:0;;11245:2:1;69843:75:0::2;::::0;::::2;11227:21:1::0;11284:2;11264:18;;;11257:30;-1:-1:-1;;;11303:18:1;;;11296:52;11365:18;;69843:75:0::2;11043:346:1::0;69843:75:0::2;69930:35;69940:11;69953;69930:9;:35::i;71815:96::-:0;13498:13;:11;:13::i;:::-;71882:14:::1;:23:::0;71815:96::o;69978:481::-;70076:13;70117:16;70125:7;70117;:16::i;:::-;70101:98;;;;-1:-1:-1;;;70101:98:0;;8541:2:1;70101:98:0;;;8523:21:1;8580:2;8560:18;;;8553:30;8619:34;8599:18;;;8592:62;-1:-1:-1;;;8670:18:1;;;8663:46;8726:19;;70101:98:0;8339:412:1;70101:98:0;70212:8;;;;;;;70209:62;;70249:14;70242:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69978:481;;;:::o;70209:62::-;70280:28;70311:10;:8;:10::i;:::-;70280:41;;70366:1;70341:14;70335:28;:32;:118;;;;;;;;;;;;;;;;;70403:14;70419:18;70429:7;70419:9;:18::i;:::-;70386:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70335:118;70328:125;69978:481;-1:-1:-1;;;69978:481:0:o;70468:107::-;-1:-1:-1;;;;;31722:25:0;;70526:7;31722:25;;;:18;:25;;25615:2;31722:25;;;;25477:13;31722:50;;31721:82;70549:20;31633:178;72418:94;13498:13;:11;:13::i;:::-;72484:9:::1;:22:::0;72418:94::o;72117:88::-;13498:13;:11;:13::i;:::-;72180:6:::1;:19:::0;72117:88::o;72624:120::-;13498:13;:11;:13::i;:::-;72706:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;14518:201::-:0;13498:13;:11;:13::i;:::-;-1:-1:-1;;;;;14607:22:0;::::1;14599:73;;;::::0;-1:-1:-1;;;14599:73:0;;9721:2:1;14599:73:0::1;::::0;::::1;9703:21:1::0;9760:2;9740:18;;;9733:30;9799:34;9779:18;;;9772:62;-1:-1:-1;;;9850:18:1;;;9843:36;9896:19;;14599:73:0::1;9519:402:1::0;14599:73:0::1;14683:28;14702:8;14683:18;:28::i;:::-;14518:201:::0;:::o;73037:96::-;13498:13;:11;:13::i;:::-;73106:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;73106:19:0;;::::1;::::0;;;::::1;::::0;;73037:96::o;68935:802::-;10537:1;11135:7;;:19;;11127:63;;;;-1:-1:-1;;;11127:63:0;;;;;;;:::i;:::-;10537:1;11268:7;:18;69050:6:::1;::::0;::::1;;69049:7;69041:45;;;;-1:-1:-1::0;;;69041:45:0::1;;;;;;;:::i;:::-;69101:7;::::0;;;::::1;;;69093:54;;;;-1:-1:-1::0;;;69093:54:0::1;;;;;;;:::i;:::-;69162:84;69181:11;;69162:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;69194:10:0::1;::::0;69216:28:::1;::::0;-1:-1:-1;;69233:10:0::1;5843:2:1::0;5839:15;5835:53;69216:28:0::1;::::0;::::1;5823:66:1::0;69194:10:0;;-1:-1:-1;5905:12:1;;;-1:-1:-1;69216:28:0::1;5694:229:1::0;69162:84:0::1;69154:128;;;::::0;-1:-1:-1;;;69154:128:0;;10128:2:1;69154:128:0::1;::::0;::::1;10110:21:1::0;10167:2;10147:18;;;10140:30;10206:33;10186:18;;;10179:61;10257:18;;69154:128:0::1;9926:355:1::0;69154:128:0::1;69339:14;::::0;64640:10;69297:29:::1;::::0;;;:8:::1;:29;::::0;;;;;:38:::1;::::0;69329:6;;69297:38:::1;:::i;:::-;:56;;69289:103;;;;-1:-1:-1::0;;;69289:103:0::1;;;;;;;:::i;:::-;69417:14;;69407:6;:24;;69399:72;;;;-1:-1:-1::0;;;69399:72:0::1;;;;;;;:::i;:::-;69512:8;;69502:6;69486:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;69478:79;;;::::0;-1:-1:-1;;;69478:79:0;;13023:2:1;69478:79:0::1;::::0;::::1;13005:21:1::0;;;13042:18;;;13035:30;13101:34;13081:18;;;13074:62;13153:18;;69478:79:0::1;12821:356:1::0;69478:79:0::1;69594:6;69585;;:15;;;;:::i;:::-;69572:9;:28;;69564:66;;;;-1:-1:-1::0;;;69564:66:0::1;;;;;;;:::i;:::-;69675:6:::0;69642:8:::1;:29;64640:10:::0;69651:19:::1;64553:105:::0;72833:90;13498:13;:11;:13::i;:::-;72899:7:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;72899:16:0;;::::1;::::0;;;::::1;::::0;;72833:90::o;13777:132::-;13685:6;;-1:-1:-1;;;;;13685:6:0;64640:10;13841:23;13833:68;;;;-1:-1:-1;;;13833:68:0;;11596:2:1;13833:68:0;;;11578:21:1;;;11615:18;;;11608:30;11674:34;11654:18;;;11647:62;11726:18;;13833:68:0;11394:356:1;42245:282:0;42310:4;42366:7;67701:1;42347:26;;:66;;;;;42400:13;;42390:7;:23;42347:66;:153;;;;-1:-1:-1;;42451:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;42451:44:0;:49;;42245:282::o;36931:1275::-;36998:7;37033;;67701:1;37082:23;37078:1061;;37135:13;;37128:4;:20;37124:1015;;;37173:14;37190:23;;;:17;:23;;;;;;-1:-1:-1;;;37279:24:0;;37275:845;;37944:113;37951:11;37944:113;;-1:-1:-1;;;38022:6:0;38004:25;;;;:17;:25;;;;;;37944:113;;37275:845;37150:989;37124:1015;38167:31;;-1:-1:-1;;;38167:31:0;;;;;;;;;;;14879:191;14972:6;;;-1:-1:-1;;;;;14989:17:0;;;-1:-1:-1;;;;;;14989:17:0;;;;;;;15022:40;;14972:6;;;14989:17;14972:6;;15022:40;;14953:16;;15022:40;14942:128;14879:191;:::o;36379:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36507:24:0;;;;:17;:24;;;;;;36488:44;;-1:-1:-1;;;;;;;;;;;;;38415:41:0;;;;26136:3;38501:33;;;38467:68;;-1:-1:-1;;;38467:68:0;-1:-1:-1;;;38565:24:0;;:29;;-1:-1:-1;;;38546:48:0;;;;26657:3;38634:28;;;;-1:-1:-1;;;38605:58:0;-1:-1:-1;38305:366:0;58385:112;58462:27;58472:2;58476:8;58462:27;;;;;;;;;;;;:9;:27::i;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;;1219:190;-1:-1:-1;;;;1219:190:0:o;50716:716::-;50900:88;;-1:-1:-1;;;50900:88:0;;50879:4;;-1:-1:-1;;;;;50900:45:0;;;;;:88;;64640:10;;50967:4;;50973:7;;50982:5;;50900:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50900:88:0;;;;;;;;-1:-1:-1;;50900:88:0;;;;;;;;;;;;:::i;:::-;;;50896:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51183:13:0;;51179:235;;51229:40;;-1:-1:-1;;;51229:40:0;;;;;;;;;;;51179:235;51372:6;51366:13;51357:6;51353:2;51349:15;51342:38;50896:529;-1:-1:-1;;;;;;51059:64:0;-1:-1:-1;;;51059:64:0;;-1:-1:-1;50896:529:0;50716:716;;;;;;:::o;67499:102::-;67559:13;67588:7;67581:14;;;;;:::i;64760:1745::-;64825:17;65259:4;65252;65246:11;65242:22;65351:1;65345:4;65338:15;65426:4;65423:1;65419:12;65412:19;;;65508:1;65503:3;65496:14;65612:3;65851:5;65833:428;65899:1;65894:3;65890:11;65883:18;;66070:2;66064:4;66060:13;66056:2;66052:22;66047:3;66039:36;66164:2;66154:13;;;66221:25;;66239:5;;66221:25;65833:428;;;-1:-1:-1;66291:13:0;;;-1:-1:-1;;66406:14:0;;;66468:19;;;66406:14;64760:1745;-1:-1:-1;64760:1745:0:o;57612:689::-;57743:19;57749:2;57753:8;57743:5;:19::i;:::-;-1:-1:-1;;;;;57804:14:0;;;:19;57800:483;;57844:11;57858:13;57906:14;;;57939:233;57970:62;58009:1;58013:2;58017:7;;;;;;58026:5;57970:30;:62::i;:::-;57965:167;;58068:40;;-1:-1:-1;;;58068:40:0;;;;;;;;;;;57965:167;58167:3;58159:5;:11;57939:233;;58254:3;58237:13;;:20;58233:34;;58259:8;;;58233:34;57825:458;;57612:689;;;:::o;2086:296::-;2169:7;2212:4;2169:7;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;2300:9;:33::i;:::-;2285:48;-1:-1:-1;2265:3:0;;;;:::i;:::-;;;;2227:118;;;-1:-1:-1;2362:12:0;2086:296;-1:-1:-1;;;2086:296:0:o;51894:2966::-;51967:20;51990:13;52018;52014:44;;52040:18;;-1:-1:-1;;;52040:18:0;;;;;;;;;;;52014:44;-1:-1:-1;;;;;52546:22:0;;;;;;:18;:22;;;;25615:2;52546:22;;;:71;;52584:32;52572:45;;52546:71;;;52860:31;;;:17;:31;;;;;-1:-1:-1;39596:15:0;;39570:24;39566:46;39165:11;39140:23;39136:41;39133:52;39123:63;;52860:173;;53095:23;;;;52860:31;;52546:22;;53860:25;52546:22;;53713:335;54374:1;54360:12;54356:20;54314:346;54415:3;54406:7;54403:16;54314:346;;54633:7;54623:8;54620:1;54593:25;54590:1;54587;54582:59;54468:1;54455:15;54314:346;;;-1:-1:-1;54693:13:0;54689:45;;54715:19;;-1:-1:-1;;;54715:19:0;;;;;;;;;;;54689:45;54751:13;:19;-1:-1:-1;47434:193:0;;;:::o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8383:51;;;-1:-1:-1;8518:13:0;8612:15;;;8648:4;8641:15;8695:4;8679:21;;;8293:149::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:180::-;3215:6;3268:2;3256:9;3247:7;3243:23;3239:32;3236:52;;;3284:1;3281;3274:12;3236:52;-1:-1:-1;3307:23:1;;3156:180;-1:-1:-1;3156:180:1:o;3341:245::-;3399:6;3452:2;3440:9;3431:7;3427:23;3423:32;3420:52;;;3468:1;3465;3458:12;3420:52;3507:9;3494:23;3526:30;3550:5;3526:30;:::i;3591:249::-;3660:6;3713:2;3701:9;3692:7;3688:23;3684:32;3681:52;;;3729:1;3726;3719:12;3681:52;3761:9;3755:16;3780:30;3804:5;3780:30;:::i;3845:450::-;3914:6;3967:2;3955:9;3946:7;3942:23;3938:32;3935:52;;;3983:1;3980;3973:12;3935:52;4023:9;4010:23;4056:18;4048:6;4045:30;4042:50;;;4088:1;4085;4078:12;4042:50;4111:22;;4164:4;4156:13;;4152:27;-1:-1:-1;4142:55:1;;4193:1;4190;4183:12;4142:55;4216:73;4281:7;4276:2;4263:16;4258:2;4254;4250:11;4216:73;:::i;4485:254::-;4553:6;4561;4614:2;4602:9;4593:7;4589:23;4585:32;4582:52;;;4630:1;4627;4620:12;4582:52;4666:9;4653:23;4643:33;;4695:38;4729:2;4718:9;4714:18;4695:38;:::i;4744:683::-;4839:6;4847;4855;4908:2;4896:9;4887:7;4883:23;4879:32;4876:52;;;4924:1;4921;4914:12;4876:52;4960:9;4947:23;4937:33;;5021:2;5010:9;5006:18;4993:32;5044:18;5085:2;5077:6;5074:14;5071:34;;;5101:1;5098;5091:12;5071:34;5139:6;5128:9;5124:22;5114:32;;5184:7;5177:4;5173:2;5169:13;5165:27;5155:55;;5206:1;5203;5196:12;5155:55;5246:2;5233:16;5272:2;5264:6;5261:14;5258:34;;;5288:1;5285;5278:12;5258:34;5341:7;5336:2;5326:6;5323:1;5319:14;5315:2;5311:23;5307:32;5304:45;5301:65;;;5362:1;5359;5352:12;5301:65;5393:2;5389;5385:11;5375:21;;5415:6;5405:16;;;;;4744:683;;;;;:::o;5432:257::-;5473:3;5511:5;5505:12;5538:6;5533:3;5526:19;5554:63;5610:6;5603:4;5598:3;5594:14;5587:4;5580:5;5576:16;5554:63;:::i;:::-;5671:2;5650:15;-1:-1:-1;;5646:29:1;5637:39;;;;5678:4;5633:50;;5432:257;-1:-1:-1;;5432:257:1:o;5928:470::-;6107:3;6145:6;6139:13;6161:53;6207:6;6202:3;6195:4;6187:6;6183:17;6161:53;:::i;:::-;6277:13;;6236:16;;;;6299:57;6277:13;6236:16;6333:4;6321:17;;6299:57;:::i;:::-;6372:20;;5928:470;-1:-1:-1;;;;5928:470:1:o;6611:488::-;-1:-1:-1;;;;;6880:15:1;;;6862:34;;6932:15;;6927:2;6912:18;;6905:43;6979:2;6964:18;;6957:34;;;7027:3;7022:2;7007:18;;7000:31;;;6805:4;;7048:45;;7073:19;;7065:6;7048:45;:::i;:::-;7040:53;6611:488;-1:-1:-1;;;;;;6611:488:1:o;7104:632::-;7275:2;7327:21;;;7397:13;;7300:18;;;7419:22;;;7246:4;;7275:2;7498:15;;;;7472:2;7457:18;;;7246:4;7541:169;7555:6;7552:1;7549:13;7541:169;;;7616:13;;7604:26;;7685:15;;;;7650:12;;;;7577:1;7570:9;7541:169;;8115:219;8264:2;8253:9;8246:21;8227:4;8284:44;8324:2;8313:9;8309:18;8301:6;8284:44;:::i;8756:399::-;8958:2;8940:21;;;8997:2;8977:18;;;8970:30;9036:34;9031:2;9016:18;;9009:62;-1:-1:-1;;;9102:2:1;9087:18;;9080:33;9145:3;9130:19;;8756:399::o;10286:349::-;10488:2;10470:21;;;10527:2;10507:18;;;10500:30;10566:27;10561:2;10546:18;;10539:55;10626:2;10611:18;;10286:349::o;10640:398::-;10842:2;10824:21;;;10881:2;10861:18;;;10854:30;10920:34;10915:2;10900:18;;10893:62;-1:-1:-1;;;10986:2:1;10971:18;;10964:32;11028:3;11013:19;;10640:398::o;11755:349::-;11957:2;11939:21;;;11996:2;11976:18;;;11969:30;12035:27;12030:2;12015:18;;12008:55;12095:2;12080:18;;11755:349::o;12461:355::-;12663:2;12645:21;;;12702:2;12682:18;;;12675:30;12741:33;12736:2;12721:18;;12714:61;12807:2;12792:18;;12461:355::o;13182:398::-;13384:2;13366:21;;;13423:2;13403:18;;;13396:30;13462:34;13457:2;13442:18;;13435:62;-1:-1:-1;;;13528:2:1;13513:18;;13506:32;13570:3;13555:19;;13182:398::o;13767:128::-;13807:3;13838:1;13834:6;13831:1;13828:13;13825:39;;;13844:18;;:::i;:::-;-1:-1:-1;13880:9:1;;13767:128::o;13900:168::-;13940:7;14006:1;14002;13998:6;13994:14;13991:1;13988:21;13983:1;13976:9;13969:17;13965:45;13962:71;;;14013:18;;:::i;:::-;-1:-1:-1;14053:9:1;;13900:168::o;14073:258::-;14145:1;14155:113;14169:6;14166:1;14163:13;14155:113;;;14245:11;;;14239:18;14226:11;;;14219:39;14191:2;14184:10;14155:113;;;14286:6;14283:1;14280:13;14277:48;;;-1:-1:-1;;14321:1:1;14303:16;;14296:27;14073:258::o;14336:380::-;14415:1;14411:12;;;;14458;;;14479:61;;14533:4;14525:6;14521:17;14511:27;;14479:61;14586:2;14578:6;14575:14;14555:18;14552:38;14549:161;;;14632:10;14627:3;14623:20;14620:1;14613:31;14667:4;14664:1;14657:15;14695:4;14692:1;14685:15;14549:161;;14336:380;;;:::o;14721:135::-;14760:3;-1:-1:-1;;14781:17:1;;14778:43;;;14801:18;;:::i;:::-;-1:-1:-1;14848:1:1;14837:13;;14721:135::o;14861:127::-;14922:10;14917:3;14913:20;14910:1;14903:31;14953:4;14950:1;14943:15;14977:4;14974:1;14967:15;14993:127;15054:10;15049:3;15045:20;15042:1;15035:31;15085:4;15082:1;15075:15;15109:4;15106:1;15099:15;15125:127;15186:10;15181:3;15177:20;15174:1;15167:31;15217:4;15214:1;15207:15;15241:4;15238:1;15231:15;15257:131;-1:-1:-1;;;;;;15331:32:1;;15321:43;;15311:71;;15378:1;15375;15368:12

Swarm Source

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