ETH Price: $2,278.20 (-2.80%)

Token

DustyLand (DUSTYLAND)
 

Overview

Max Total Supply

968 DUSTYLAND

Holders

322

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
30 DUSTYLAND
0x8c4b3a85d829b0ddb18190341d3b705b6eaf5efc
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:
DustyLand

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// ERC721A Contracts v4.2.2
// 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();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

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

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

    /**
     * @dev 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.sol


// ERC721A Contracts v4.2.2
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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 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 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 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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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


pragma solidity >=0.7.0 <0.9.0;





contract DustyLand is ERC721A, Ownable, ReentrancyGuard {

    bool public paused = true;
    bool public revealed = false;

    uint256 public cost = 0.15 ether; //0.15WL 0.2P
    uint256 public maxSupply = 2000; //2000
    uint256 public constant maxMintAmountPerTx = 5; 
    uint256 public mode = 0; 

    bytes32 public merkleRoot;

    address public immutable proxyRegistryAddress = address(0xa5409ec958C83C3f309868babACA7c86DCB077c1);
    //Rinkeby: 0xF57B2c51dED3A29e6891aba85459d600256Cf317
    //Mainnet: 0xa5409ec958C83C3f309868babACA7c86DCB077c1

    mapping(address => uint256) public ClaimedWhitelist;

    string public hiddenuri = "ipfs://QmUqKwLMfkinCNUwyMKSntHrD7EMpU2pMK7wNmvFC4Yr13/hidden_metadata.json";
    string public uri;

    constructor() ERC721A("DustyLand", "DUSTYLAND") ReentrancyGuard() {
        _mint(msg.sender, 1);
    }

    //modifiers
    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0 && _mintAmount < maxMintAmountPerTx+1, "Invalid mint amount");
        require(totalSupply() + _mintAmount < maxSupply+1, "Exceeds Max Supply");
        _;
    }

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

    //mint
    function mint(uint256 quantity, bytes32[] calldata proof) external payable mintCompliance(quantity) nonReentrant {
        require(!paused, "Contract paused");
        require(msg.value > cost * quantity -1, "Insufficient funds");

        if(mode == 0) {
            require(ClaimedWhitelist[msg.sender] + quantity < 3, "Exceeds whitelist allowance");
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(proof, merkleRoot, leaf), "Verification failed");
            ClaimedWhitelist[msg.sender] += quantity;
        }
        _mint(msg.sender, quantity);
    }

    function batch_mint(uint256 quantity) external onlyOwner {
        require(totalSupply() + quantity < maxSupply+1, "Exceeds Max Supply");
        _mint(msg.sender, quantity);
    }

    //Get
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();


        if(!revealed) {
            return bytes(hiddenuri).length != 0 ? hiddenuri : '';
        }
        else {
            string memory baseURI = "";
            baseURI = _baseURI();
            return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId), ".json")) : '';
        }

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

    //Set
    function set_uri(string calldata new_uri) external onlyOwner {
        uri=new_uri;
    }

    function set_hiddenuri(string calldata new_hiddenuri) external onlyOwner {
        hiddenuri=new_hiddenuri;
    }

    function set_cost(uint256 new_cost) external onlyOwner {
        cost = new_cost;
    }

    function set_maxSupply(uint256 new_maxSupply) external onlyOwner {
        maxSupply = new_maxSupply;
    }

    function toggle_paused() external onlyOwner {
        if(paused) {
            paused = false;
        }
        else {
            paused = true;
        }
    }

    function toggle_revealed() external onlyOwner {
        if(revealed) {
            revealed = false;
        }
        else {
            revealed = true;
        }
    }

    function toggle_mode() external onlyOwner {
        mode = (mode+1)%2;
        if(mode == 0) {
            cost = 0.15 ether; //whitelist price
        }
        else {
            cost = 0.2 ether; //pub price
        }
    }

    function set_merkleroot(bytes32 new_root) external onlyOwner {
        merkleRoot = new_root;
    }

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

    function isApprovedForAll(address _owner, address operator) public view override returns (bool) {
        OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress);
        if(address(proxyRegistry.proxies(_owner)) == operator) {
            return true;
        }
        return super.isApprovedForAll(_owner, operator);
    }

    function kill_() external onlyOwner {
        address payable owner_payable = payable(owner());
        selfdestruct(owner_payable);
    }

}


contract OwnableDelegateProxy {}
contract OpenSeaProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ClaimedWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"batch_mint","outputs":[],"stateMutability":"nonpayable","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":[],"name":"hiddenuri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"kill_","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_cost","type":"uint256"}],"name":"set_cost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"new_hiddenuri","type":"string"}],"name":"set_hiddenuri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_maxSupply","type":"uint256"}],"name":"set_maxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"new_root","type":"bytes32"}],"name":"set_merkleroot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"new_uri","type":"string"}],"name":"set_uri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggle_mode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggle_paused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggle_revealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

600a805461ffff19166001179055670214e8348c4f0000600b556107d0600c556000600d5573a5409ec958c83c3f309868babaca7c86dcb077c1608052610120604052604a60a081815290620022a360c039601090620000609082620002db565b503480156200006e57600080fd5b5060405180604001604052806009815260200168111d5cdd1e53185b9960ba1b81525060405180604001604052806009815260200168111554d5165310539160ba1b8152508160029081620000c49190620002db565b506003620000d38282620002db565b5050600160005550620000e63362000100565b60016009819055620000fa90339062000152565b620003a7565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000805490829003620001785760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020620022ed8339815191528180a4600183015b818114620002075780836000600080516020620022ed833981519152600080a4600101620001de565b50816000036200022957604051622e076360e81b815260040160405180910390fd5b60005550505050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200026257607f821691505b6020821081036200028357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023257600081815260208120601f850160051c81016020861015620002b25750805b601f850160051c820191505b81811015620002d357828155600101620002be565b505050505050565b81516001600160401b03811115620002f757620002f762000237565b6200030f816200030884546200024d565b8462000289565b602080601f8311600181146200034757600084156200032e5750858301515b600019600386901b1c1916600185901b178555620002d3565b600085815260208120601f198616915b82811015620003785788860151825594840194600190910190840162000357565b5085821015620003975787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051611ed9620003ca60003960008181610602015261131b0152611ed96000f3fe60806040526004361061023b5760003560e01c80637fe4bfa61161012e578063c87b56dd116100ab578063d138915b1161006f578063d138915b14610659578063d5abeb0114610679578063e985e9c51461068f578063eac989f8146106af578063f2fde38b146106c457600080fd5b8063c87b56dd146105bb578063cbbb93d7146105db578063cd7c0326146105f0578063ceaadac614610624578063cfc1b52f1461064457600080fd5b8063a1292939116100f2578063a129293914610533578063a22cb46514610548578063acdbaf4114610568578063b88d4fde14610588578063ba41b0c6146105a857600080fd5b80637fe4bfa6146104b65780638da5cb5b146104d657806394354fd0146104f457806394c637e21461050957806395d89b411461051e57600080fd5b80632eb4a7ab116101bc5780636352211e116101805780636352211e1461041f5780636c280eba1461043f57806370a0823114610454578063715018a61461047457806378bb5ac51461048957600080fd5b80632eb4a7ab146103a85780633ccfd60b146103be57806342842e0e146103c657806351830227146103e65780635c975abb1461040557600080fd5b806313faede61161020357806313faede61461031157806318160ddd146103355780631e8d03111461035257806323b872dd14610372578063295a52121461039257600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf5780630a04472b146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b36600461187d565b6106e4565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610736565b60405161026c91906118ea565b3480156102a357600080fd5b506102b76102b23660046118fd565b6107c8565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea36600461192b565b61080c565b005b3480156102fd57600080fd5b506102ef61030c366004611957565b6108ac565b34801561031d57600080fd5b50610327600b5481565b60405190815260200161026c565b34801561034157600080fd5b506001546000540360001901610327565b34801561035e57600080fd5b506102ef61036d3660046118fd565b6108c6565b34801561037e57600080fd5b506102ef61038d3660046119c9565b6108d3565b34801561039e57600080fd5b50610327600d5481565b3480156103b457600080fd5b50610327600e5481565b6102ef610a6c565b3480156103d257600080fd5b506102ef6103e13660046119c9565b610ae8565b3480156103f257600080fd5b50600a5461026090610100900460ff1681565b34801561041157600080fd5b50600a546102609060ff1681565b34801561042b57600080fd5b506102b761043a3660046118fd565b610b03565b34801561044b57600080fd5b506102ef610b0e565b34801561046057600080fd5b5061032761046f366004611a0a565b610b45565b34801561048057600080fd5b506102ef610b94565b34801561049557600080fd5b506103276104a4366004611a0a565b600f6020526000908152604090205481565b3480156104c257600080fd5b506102ef6104d1366004611957565b610ba6565b3480156104e257600080fd5b506008546001600160a01b03166102b7565b34801561050057600080fd5b50610327600581565b34801561051557600080fd5b506102ef610bbb565b34801561052a57600080fd5b5061028a610be5565b34801561053f57600080fd5b506102ef610bf4565b34801561055457600080fd5b506102ef610563366004611a27565b610c3f565b34801561057457600080fd5b506102ef6105833660046118fd565b610cd4565b34801561059457600080fd5b506102ef6105a3366004611a7b565b610d53565b6102ef6105b6366004611b5b565b610d9d565b3480156105c757600080fd5b5061028a6105d63660046118fd565b6110c7565b3480156105e757600080fd5b506102ef611223565b3480156105fc57600080fd5b506102b77f000000000000000000000000000000000000000000000000000000000000000081565b34801561063057600080fd5b506102ef61063f3660046118fd565b611251565b34801561065057600080fd5b5061028a61125e565b34801561066557600080fd5b506102ef6106743660046118fd565b6112ec565b34801561068557600080fd5b50610327600c5481565b34801561069b57600080fd5b506102606106aa366004611bda565b6112f9565b3480156106bb57600080fd5b5061028a6113d5565b3480156106d057600080fd5b506102ef6106df366004611a0a565b6113e2565b60006301ffc9a760e01b6001600160e01b03198316148061071557506380ac58cd60e01b6001600160e01b03198316145b806107305750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461074590611c08565b80601f016020809104026020016040519081016040528092919081815260200182805461077190611c08565b80156107be5780601f10610793576101008083540402835291602001916107be565b820191906000526020600020905b8154815290600101906020018083116107a157829003601f168201915b5050505050905090565b60006107d382611458565b6107f0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061081782610b03565b9050336001600160a01b038216146108505761083381336112f9565b610850576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108b461148d565b60116108c1828483611c88565b505050565b6108ce61148d565b600b55565b60006108de826114e7565b9050836001600160a01b0316816001600160a01b0316146109115760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761095e5761094186336112f9565b61095e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661098557604051633a954ecd60e21b815260040160405180910390fd5b801561099057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a2257600184016000818152600460205260408120549003610a20576000548114610a205760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610a7461148d565b6000610a886008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ad2576040519150601f19603f3d011682016040523d82523d6000602084013e610ad7565b606091505b5050905080610ae557600080fd5b50565b6108c183838360405180602001604052806000815250610d53565b6000610730826114e7565b610b1661148d565b600a54610100900460ff1615610b3357600a805461ff0019169055565b600a805461ff0019166101001790555b565b60006001600160a01b038216610b6e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b9c61148d565b610b436000611556565b610bae61148d565b60106108c1828483611c88565b610bc361148d565b6000610bd76008546001600160a01b031690565b9050806001600160a01b0316ff5b60606003805461074590611c08565b610bfc61148d565b6002600d546001610c0d9190611d5f565b610c179190611d72565b600d819055600003610c3157670214e8348c4f0000600b55565b6702c68af0bb140000600b55565b336001600160a01b03831603610c685760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cdc61148d565b600c54610cea906001611d5f565b6001546000548391900360001901610d029190611d5f565b10610d495760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b60448201526064015b60405180910390fd5b610ae533826115a8565b610d5e8484846108d3565b6001600160a01b0383163b15610d9757610d7a848484846116a6565b610d97576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b82600081118015610db85750610db560056001611d5f565b81105b610dfa5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610d40565b600c54610e08906001611d5f565b6001546000548391900360001901610e209190611d5f565b10610e625760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610d40565b600260095403610eb45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d40565b6002600955600a5460ff1615610efe5760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd081c185d5cd959608a1b6044820152606401610d40565b600184600b54610f0e9190611d94565b610f189190611dab565b3411610f5b5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610d40565b600d546000036110b257336000908152600f6020526040902054600390610f83908690611d5f565b10610fd05760405162461bcd60e51b815260206004820152601b60248201527f457863656564732077686974656c69737420616c6c6f77616e636500000000006044820152606401610d40565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061104a84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611791565b61108c5760405162461bcd60e51b815260206004820152601360248201527215995c9a599a58d85d1a5bdb8819985a5b1959606a1b6044820152606401610d40565b336000908152600f6020526040812080548792906110ab908490611d5f565b9091555050505b6110bc33856115a8565b505060016009555050565b60606110d282611458565b6110ef57604051630a14c4b560e41b815260040160405180910390fd5b600a54610100900460ff166111ba576010805461110b90611c08565b90506000036111295760405180602001604052806000815250610730565b6010805461113690611c08565b80601f016020809104026020016040519081016040528092919081815260200182805461116290611c08565b80156111af5780601f10611184576101008083540402835291602001916111af565b820191906000526020600020905b81548152906001019060200180831161119257829003601f168201915b505050505092915050565b6040805160208101909152600081526111d16117a7565b905080516000036111f1576040518060200160405280600081525061121c565b806111fb846117b6565b60405160200161120c929190611dbe565b6040516020818303038152906040525b9392505050565b61122b61148d565b600a5460ff161561124257600a805460ff19169055565b600a805460ff19166001179055565b61125961148d565b600e55565b6010805461126b90611c08565b80601f016020809104026020016040519081016040528092919081815260200182805461129790611c08565b80156112e45780601f106112b9576101008083540402835291602001916112e4565b820191906000526020600020905b8154815290600101906020018083116112c757829003601f168201915b505050505081565b6112f461148d565b600c55565b60405163c455279160e01b81526001600160a01b0383811660048301526000917f000000000000000000000000000000000000000000000000000000000000000091848116919083169063c455279190602401602060405180830381865afa158015611369573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138d9190611dfd565b6001600160a01b0316036113a5576001915050610730565b50506001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6011805461126b90611c08565b6113ea61148d565b6001600160a01b03811661144f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d40565b610ae581611556565b60008160011115801561146c575060005482105b8015610730575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610b435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d40565b6000818060011161153d5760005481101561153d5760008181526004602052604081205490600160e01b8216900361153b575b8060000361121c57506000190160008181526004602052604090205461151a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008054908290036115cd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461167c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611644565b508160000361169d57604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116db903390899088908890600401611e1a565b6020604051808303816000875af1925050508015611716575060408051601f3d908101601f1916820190925261171391810190611e57565b60015b611774573d808015611744576040519150601f19603f3d011682016040523d82523d6000602084013e611749565b606091505b50805160000361176c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008261179e85846117ee565b14949350505050565b60606011805461074590611c08565b604080516080019081905280825b600183039250600a81066030018353600a9004806117c45750819003601f19909101908152919050565b600081815b84518110156118335761181f8286838151811061181257611812611e74565b602002602001015161183b565b91508061182b81611e8a565b9150506117f3565b509392505050565b600081831061185757600082815260208490526040902061121c565b5060009182526020526040902090565b6001600160e01b031981168114610ae557600080fd5b60006020828403121561188f57600080fd5b813561121c81611867565b60005b838110156118b557818101518382015260200161189d565b50506000910152565b600081518084526118d681602086016020860161189a565b601f01601f19169290920160200192915050565b60208152600061121c60208301846118be565b60006020828403121561190f57600080fd5b5035919050565b6001600160a01b0381168114610ae557600080fd5b6000806040838503121561193e57600080fd5b823561194981611916565b946020939093013593505050565b6000806020838503121561196a57600080fd5b823567ffffffffffffffff8082111561198257600080fd5b818501915085601f83011261199657600080fd5b8135818111156119a557600080fd5b8660208285010111156119b757600080fd5b60209290920196919550909350505050565b6000806000606084860312156119de57600080fd5b83356119e981611916565b925060208401356119f981611916565b929592945050506040919091013590565b600060208284031215611a1c57600080fd5b813561121c81611916565b60008060408385031215611a3a57600080fd5b8235611a4581611916565b915060208301358015158114611a5a57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611a9157600080fd5b8435611a9c81611916565b93506020850135611aac81611916565b925060408501359150606085013567ffffffffffffffff80821115611ad057600080fd5b818701915087601f830112611ae457600080fd5b813581811115611af657611af6611a65565b604051601f8201601f19908116603f01168101908382118183101715611b1e57611b1e611a65565b816040528281528a6020848701011115611b3757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080600060408486031215611b7057600080fd5b83359250602084013567ffffffffffffffff80821115611b8f57600080fd5b818601915086601f830112611ba357600080fd5b813581811115611bb257600080fd5b8760208260051b8501011115611bc757600080fd5b6020830194508093505050509250925092565b60008060408385031215611bed57600080fd5b8235611bf881611916565b91506020830135611a5a81611916565b600181811c90821680611c1c57607f821691505b602082108103611c3c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156108c157600081815260208120601f850160051c81016020861015611c695750805b601f850160051c820191505b81811015610a6457828155600101611c75565b67ffffffffffffffff831115611ca057611ca0611a65565b611cb483611cae8354611c08565b83611c42565b6000601f841160018114611ce85760008515611cd05750838201355b600019600387901b1c1916600186901b178355611d42565b600083815260209020601f19861690835b82811015611d195786850135825560209485019460019092019101611cf9565b5086821015611d365760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561073057610730611d49565b600082611d8f57634e487b7160e01b600052601260045260246000fd5b500690565b808202811582820484141761073057610730611d49565b8181038181111561073057610730611d49565b60008351611dd081846020880161189a565b835190830190611de481836020880161189a565b64173539b7b760d91b9101908152600501949350505050565b600060208284031215611e0f57600080fd5b815161121c81611916565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e4d908301846118be565b9695505050505050565b600060208284031215611e6957600080fd5b815161121c81611867565b634e487b7160e01b600052603260045260246000fd5b600060018201611e9c57611e9c611d49565b506001019056fea264697066735822122081dee0f783dd23744990f59a9298eeb6ad5009be2ce716d7b5c2e02f1e5b6e2564736f6c63430008110033697066733a2f2f516d55714b774c4d666b696e434e5577794d4b536e7448724437454d705532704d4b37774e6d76464334597231332f68696464656e5f6d657461646174612e6a736f6eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80637fe4bfa61161012e578063c87b56dd116100ab578063d138915b1161006f578063d138915b14610659578063d5abeb0114610679578063e985e9c51461068f578063eac989f8146106af578063f2fde38b146106c457600080fd5b8063c87b56dd146105bb578063cbbb93d7146105db578063cd7c0326146105f0578063ceaadac614610624578063cfc1b52f1461064457600080fd5b8063a1292939116100f2578063a129293914610533578063a22cb46514610548578063acdbaf4114610568578063b88d4fde14610588578063ba41b0c6146105a857600080fd5b80637fe4bfa6146104b65780638da5cb5b146104d657806394354fd0146104f457806394c637e21461050957806395d89b411461051e57600080fd5b80632eb4a7ab116101bc5780636352211e116101805780636352211e1461041f5780636c280eba1461043f57806370a0823114610454578063715018a61461047457806378bb5ac51461048957600080fd5b80632eb4a7ab146103a85780633ccfd60b146103be57806342842e0e146103c657806351830227146103e65780635c975abb1461040557600080fd5b806313faede61161020357806313faede61461031157806318160ddd146103355780631e8d03111461035257806323b872dd14610372578063295a52121461039257600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf5780630a04472b146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b36600461187d565b6106e4565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610736565b60405161026c91906118ea565b3480156102a357600080fd5b506102b76102b23660046118fd565b6107c8565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea36600461192b565b61080c565b005b3480156102fd57600080fd5b506102ef61030c366004611957565b6108ac565b34801561031d57600080fd5b50610327600b5481565b60405190815260200161026c565b34801561034157600080fd5b506001546000540360001901610327565b34801561035e57600080fd5b506102ef61036d3660046118fd565b6108c6565b34801561037e57600080fd5b506102ef61038d3660046119c9565b6108d3565b34801561039e57600080fd5b50610327600d5481565b3480156103b457600080fd5b50610327600e5481565b6102ef610a6c565b3480156103d257600080fd5b506102ef6103e13660046119c9565b610ae8565b3480156103f257600080fd5b50600a5461026090610100900460ff1681565b34801561041157600080fd5b50600a546102609060ff1681565b34801561042b57600080fd5b506102b761043a3660046118fd565b610b03565b34801561044b57600080fd5b506102ef610b0e565b34801561046057600080fd5b5061032761046f366004611a0a565b610b45565b34801561048057600080fd5b506102ef610b94565b34801561049557600080fd5b506103276104a4366004611a0a565b600f6020526000908152604090205481565b3480156104c257600080fd5b506102ef6104d1366004611957565b610ba6565b3480156104e257600080fd5b506008546001600160a01b03166102b7565b34801561050057600080fd5b50610327600581565b34801561051557600080fd5b506102ef610bbb565b34801561052a57600080fd5b5061028a610be5565b34801561053f57600080fd5b506102ef610bf4565b34801561055457600080fd5b506102ef610563366004611a27565b610c3f565b34801561057457600080fd5b506102ef6105833660046118fd565b610cd4565b34801561059457600080fd5b506102ef6105a3366004611a7b565b610d53565b6102ef6105b6366004611b5b565b610d9d565b3480156105c757600080fd5b5061028a6105d63660046118fd565b6110c7565b3480156105e757600080fd5b506102ef611223565b3480156105fc57600080fd5b506102b77f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561063057600080fd5b506102ef61063f3660046118fd565b611251565b34801561065057600080fd5b5061028a61125e565b34801561066557600080fd5b506102ef6106743660046118fd565b6112ec565b34801561068557600080fd5b50610327600c5481565b34801561069b57600080fd5b506102606106aa366004611bda565b6112f9565b3480156106bb57600080fd5b5061028a6113d5565b3480156106d057600080fd5b506102ef6106df366004611a0a565b6113e2565b60006301ffc9a760e01b6001600160e01b03198316148061071557506380ac58cd60e01b6001600160e01b03198316145b806107305750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461074590611c08565b80601f016020809104026020016040519081016040528092919081815260200182805461077190611c08565b80156107be5780601f10610793576101008083540402835291602001916107be565b820191906000526020600020905b8154815290600101906020018083116107a157829003601f168201915b5050505050905090565b60006107d382611458565b6107f0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061081782610b03565b9050336001600160a01b038216146108505761083381336112f9565b610850576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108b461148d565b60116108c1828483611c88565b505050565b6108ce61148d565b600b55565b60006108de826114e7565b9050836001600160a01b0316816001600160a01b0316146109115760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761095e5761094186336112f9565b61095e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661098557604051633a954ecd60e21b815260040160405180910390fd5b801561099057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a2257600184016000818152600460205260408120549003610a20576000548114610a205760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610a7461148d565b6000610a886008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ad2576040519150601f19603f3d011682016040523d82523d6000602084013e610ad7565b606091505b5050905080610ae557600080fd5b50565b6108c183838360405180602001604052806000815250610d53565b6000610730826114e7565b610b1661148d565b600a54610100900460ff1615610b3357600a805461ff0019169055565b600a805461ff0019166101001790555b565b60006001600160a01b038216610b6e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b9c61148d565b610b436000611556565b610bae61148d565b60106108c1828483611c88565b610bc361148d565b6000610bd76008546001600160a01b031690565b9050806001600160a01b0316ff5b60606003805461074590611c08565b610bfc61148d565b6002600d546001610c0d9190611d5f565b610c179190611d72565b600d819055600003610c3157670214e8348c4f0000600b55565b6702c68af0bb140000600b55565b336001600160a01b03831603610c685760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cdc61148d565b600c54610cea906001611d5f565b6001546000548391900360001901610d029190611d5f565b10610d495760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b60448201526064015b60405180910390fd5b610ae533826115a8565b610d5e8484846108d3565b6001600160a01b0383163b15610d9757610d7a848484846116a6565b610d97576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b82600081118015610db85750610db560056001611d5f565b81105b610dfa5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610d40565b600c54610e08906001611d5f565b6001546000548391900360001901610e209190611d5f565b10610e625760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610d40565b600260095403610eb45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d40565b6002600955600a5460ff1615610efe5760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd081c185d5cd959608a1b6044820152606401610d40565b600184600b54610f0e9190611d94565b610f189190611dab565b3411610f5b5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610d40565b600d546000036110b257336000908152600f6020526040902054600390610f83908690611d5f565b10610fd05760405162461bcd60e51b815260206004820152601b60248201527f457863656564732077686974656c69737420616c6c6f77616e636500000000006044820152606401610d40565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061104a84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611791565b61108c5760405162461bcd60e51b815260206004820152601360248201527215995c9a599a58d85d1a5bdb8819985a5b1959606a1b6044820152606401610d40565b336000908152600f6020526040812080548792906110ab908490611d5f565b9091555050505b6110bc33856115a8565b505060016009555050565b60606110d282611458565b6110ef57604051630a14c4b560e41b815260040160405180910390fd5b600a54610100900460ff166111ba576010805461110b90611c08565b90506000036111295760405180602001604052806000815250610730565b6010805461113690611c08565b80601f016020809104026020016040519081016040528092919081815260200182805461116290611c08565b80156111af5780601f10611184576101008083540402835291602001916111af565b820191906000526020600020905b81548152906001019060200180831161119257829003601f168201915b505050505092915050565b6040805160208101909152600081526111d16117a7565b905080516000036111f1576040518060200160405280600081525061121c565b806111fb846117b6565b60405160200161120c929190611dbe565b6040516020818303038152906040525b9392505050565b61122b61148d565b600a5460ff161561124257600a805460ff19169055565b600a805460ff19166001179055565b61125961148d565b600e55565b6010805461126b90611c08565b80601f016020809104026020016040519081016040528092919081815260200182805461129790611c08565b80156112e45780601f106112b9576101008083540402835291602001916112e4565b820191906000526020600020905b8154815290600101906020018083116112c757829003601f168201915b505050505081565b6112f461148d565b600c55565b60405163c455279160e01b81526001600160a01b0383811660048301526000917f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c191848116919083169063c455279190602401602060405180830381865afa158015611369573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138d9190611dfd565b6001600160a01b0316036113a5576001915050610730565b50506001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6011805461126b90611c08565b6113ea61148d565b6001600160a01b03811661144f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d40565b610ae581611556565b60008160011115801561146c575060005482105b8015610730575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610b435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d40565b6000818060011161153d5760005481101561153d5760008181526004602052604081205490600160e01b8216900361153b575b8060000361121c57506000190160008181526004602052604090205461151a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008054908290036115cd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461167c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611644565b508160000361169d57604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116db903390899088908890600401611e1a565b6020604051808303816000875af1925050508015611716575060408051601f3d908101601f1916820190925261171391810190611e57565b60015b611774573d808015611744576040519150601f19603f3d011682016040523d82523d6000602084013e611749565b606091505b50805160000361176c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008261179e85846117ee565b14949350505050565b60606011805461074590611c08565b604080516080019081905280825b600183039250600a81066030018353600a9004806117c45750819003601f19909101908152919050565b600081815b84518110156118335761181f8286838151811061181257611812611e74565b602002602001015161183b565b91508061182b81611e8a565b9150506117f3565b509392505050565b600081831061185757600082815260208490526040902061121c565b5060009182526020526040902090565b6001600160e01b031981168114610ae557600080fd5b60006020828403121561188f57600080fd5b813561121c81611867565b60005b838110156118b557818101518382015260200161189d565b50506000910152565b600081518084526118d681602086016020860161189a565b601f01601f19169290920160200192915050565b60208152600061121c60208301846118be565b60006020828403121561190f57600080fd5b5035919050565b6001600160a01b0381168114610ae557600080fd5b6000806040838503121561193e57600080fd5b823561194981611916565b946020939093013593505050565b6000806020838503121561196a57600080fd5b823567ffffffffffffffff8082111561198257600080fd5b818501915085601f83011261199657600080fd5b8135818111156119a557600080fd5b8660208285010111156119b757600080fd5b60209290920196919550909350505050565b6000806000606084860312156119de57600080fd5b83356119e981611916565b925060208401356119f981611916565b929592945050506040919091013590565b600060208284031215611a1c57600080fd5b813561121c81611916565b60008060408385031215611a3a57600080fd5b8235611a4581611916565b915060208301358015158114611a5a57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611a9157600080fd5b8435611a9c81611916565b93506020850135611aac81611916565b925060408501359150606085013567ffffffffffffffff80821115611ad057600080fd5b818701915087601f830112611ae457600080fd5b813581811115611af657611af6611a65565b604051601f8201601f19908116603f01168101908382118183101715611b1e57611b1e611a65565b816040528281528a6020848701011115611b3757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080600060408486031215611b7057600080fd5b83359250602084013567ffffffffffffffff80821115611b8f57600080fd5b818601915086601f830112611ba357600080fd5b813581811115611bb257600080fd5b8760208260051b8501011115611bc757600080fd5b6020830194508093505050509250925092565b60008060408385031215611bed57600080fd5b8235611bf881611916565b91506020830135611a5a81611916565b600181811c90821680611c1c57607f821691505b602082108103611c3c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156108c157600081815260208120601f850160051c81016020861015611c695750805b601f850160051c820191505b81811015610a6457828155600101611c75565b67ffffffffffffffff831115611ca057611ca0611a65565b611cb483611cae8354611c08565b83611c42565b6000601f841160018114611ce85760008515611cd05750838201355b600019600387901b1c1916600186901b178355611d42565b600083815260209020601f19861690835b82811015611d195786850135825560209485019460019092019101611cf9565b5086821015611d365760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561073057610730611d49565b600082611d8f57634e487b7160e01b600052601260045260246000fd5b500690565b808202811582820484141761073057610730611d49565b8181038181111561073057610730611d49565b60008351611dd081846020880161189a565b835190830190611de481836020880161189a565b64173539b7b760d91b9101908152600501949350505050565b600060208284031215611e0f57600080fd5b815161121c81611916565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e4d908301846118be565b9695505050505050565b600060208284031215611e6957600080fd5b815161121c81611867565b634e487b7160e01b600052603260045260246000fd5b600060018201611e9c57611e9c611d49565b506001019056fea264697066735822122081dee0f783dd23744990f59a9298eeb6ad5009be2ce716d7b5c2e02f1e5b6e2564736f6c63430008110033

Deployed Bytecode Sourcemap

66207:4560:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33474:639;;;;;;;;;;-1:-1:-1;33474:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;33474:639:0;;;;;;;;34376:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40859:218::-;;;;;;;;;;-1:-1:-1;40859:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;40859:218:0;1533:203:1;40300:400:0;;;;;;;;;;-1:-1:-1;40300:400:0;;;;;:::i;:::-;;:::i;:::-;;68946:91;;;;;;;;;;-1:-1:-1;68946:91:0;;;;;:::i;:::-;;:::i;66341:32::-;;;;;;;;;;;;;;;;;;;2940:25:1;;;2928:2;2913:18;66341:32:0;2794:177:1;30127:323:0;;;;;;;;;;-1:-1:-1;67455:1:0;30401:12;30188:7;30385:13;:28;-1:-1:-1;;30385:46:0;30127:323;;69168:89;;;;;;;;;;-1:-1:-1;69168:89:0;;;;;:::i;:::-;;:::i;44572:2817::-;;;;;;;;;;-1:-1:-1;44572:2817:0;;;;;:::i;:::-;;:::i;66493:23::-;;;;;;;;;;;;;;;;66526:25;;;;;;;;;;;;;;;;70095:155;;;:::i;47485:185::-;;;;;;;;;;-1:-1:-1;47485:185:0;;;;;:::i;:::-;;:::i;66304:28::-;;;;;;;;;;-1:-1:-1;66304:28:0;;;;;;;;;;;66272:25;;;;;;;;;;-1:-1:-1;66272:25:0;;;;;;;;35769:152;;;;;;;;;;-1:-1:-1;35769:152:0;;;;;:::i;:::-;;:::i;69559:177::-;;;;;;;;;;;;;:::i;31311:233::-;;;;;;;;;;-1:-1:-1;31311:233:0;;;;;:::i;:::-;;:::i;14260:103::-;;;;;;;;;;;;;:::i;66786:51::-;;;;;;;;;;-1:-1:-1;66786:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;69045:115;;;;;;;;;;-1:-1:-1;69045:115:0;;;;;:::i;:::-;;:::i;13612:87::-;;;;;;;;;;-1:-1:-1;13685:6:0;;-1:-1:-1;;;;;13685:6:0;13612:87;;66439:46;;;;;;;;;;;;66484:1;66439:46;;70621:141;;;;;;;;;;;;;:::i;34552:104::-;;;;;;;;;;;;;:::i;69744:234::-;;;;;;;;;;;;;:::i;41417:308::-;;;;;;;;;;-1:-1:-1;41417:308:0;;;;;:::i;:::-;;:::i;68119:183::-;;;;;;;;;;-1:-1:-1;68119:183:0;;;;;:::i;:::-;;:::i;48268:399::-;;;;;;;;;;-1:-1:-1;48268:399:0;;;;;:::i;:::-;;:::i;67484:627::-;;;;;;:::i;:::-;;:::i;68321:496::-;;;;;;;;;;-1:-1:-1;68321:496:0;;;;;:::i;:::-;;:::i;69382:169::-;;;;;;;;;;;;;:::i;66560:99::-;;;;;;;;;;;;;;;69986:101;;;;;;;;;;-1:-1:-1;69986:101:0;;;;;:::i;:::-;;:::i;66846:102::-;;;;;;;;;;;;;:::i;69265:109::-;;;;;;;;;;-1:-1:-1;69265:109:0;;;;;:::i;:::-;;:::i;66394:31::-;;;;;;;;;;;;;;;;70258:355;;;;;;;;;;-1:-1:-1;70258:355:0;;;;;:::i;:::-;;:::i;66955:17::-;;;;;;;;;;;;;:::i;14518:201::-;;;;;;;;;;-1:-1:-1;14518:201:0;;;;;:::i;:::-;;:::i;33474:639::-;33559:4;-1:-1:-1;;;;;;;;;33883:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;33960:25:0;;;33883:102;:179;;;-1:-1:-1;;;;;;;;;;34037:25:0;;;33883:179;33863:199;33474:639;-1:-1:-1;;33474:639:0:o;34376:100::-;34430:13;34463:5;34456:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34376:100;:::o;40859:218::-;40935:7;40960:16;40968:7;40960;:16::i;:::-;40955:64;;40985:34;;-1:-1:-1;;;40985:34:0;;;;;;;;;;;40955:64;-1:-1:-1;41039:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;41039:30:0;;40859:218::o;40300:400::-;40381:13;40397:16;40405:7;40397;:16::i;:::-;40381:32;-1:-1:-1;64429:10:0;-1:-1:-1;;;;;40430:28:0;;;40426:175;;40478:44;40495:5;64429:10;70258:355;:::i;40478:44::-;40473:128;;40550:35;;-1:-1:-1;;;40550:35:0;;;;;;;;;;;40473:128;40613:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;40613:35:0;-1:-1:-1;;;;;40613:35:0;;;;;;;;;40664:28;;40613:24;;40664:28;;;;;;;40370:330;40300:400;;:::o;68946:91::-;13498:13;:11;:13::i;:::-;69018:3:::1;:11;69022:7:::0;;69018:3;:11:::1;:::i;:::-;;68946:91:::0;;:::o;69168:89::-;13498:13;:11;:13::i;:::-;69234:4:::1;:15:::0;69168:89::o;44572:2817::-;44706:27;44736;44755:7;44736:18;:27::i;:::-;44706:57;;44821:4;-1:-1:-1;;;;;44780:45:0;44796:19;-1:-1:-1;;;;;44780:45:0;;44776:86;;44834:28;;-1:-1:-1;;;44834:28:0;;;;;;;;;;;44776:86;44876:27;43680:24;;;:15;:24;;;;;43908:26;;64429:10;43305:30;;;-1:-1:-1;;;;;42998:28:0;;43283:20;;;43280:56;45062:180;;45155:43;45172:4;64429:10;70258:355;:::i;45155:43::-;45150:92;;45207:35;;-1:-1:-1;;;45207:35:0;;;;;;;;;;;45150:92;-1:-1:-1;;;;;45259:16:0;;45255:52;;45284:23;;-1:-1:-1;;;45284:23:0;;;;;;;;;;;45255:52;45456:15;45453:160;;;45596:1;45575:19;45568:30;45453:160;-1:-1:-1;;;;;45993:24:0;;;;;;;:18;:24;;;;;;45991:26;;-1:-1:-1;;45991:26:0;;;46062:22;;;;;;;;;46060:24;;-1:-1:-1;46060:24:0;;;39158:11;39133:23;39129:41;39116:63;-1:-1:-1;;;39116:63:0;46355:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;46650:47:0;;:52;;46646:627;;46755:1;46745:11;;46723:19;46878:30;;;:17;:30;;;;;;:35;;46874:384;;47016:13;;47001:11;:28;46997:242;;47163:30;;;;:17;:30;;;;;:52;;;46997:242;46704:569;46646:627;47320:7;47316:2;-1:-1:-1;;;;;47301:27:0;47310:4;-1:-1:-1;;;;;47301:27:0;;;;;;;;;;;47339:42;44695:2694;;;44572:2817;;;:::o;70095:155::-;13498:13;:11;:13::i;:::-;70152:7:::1;70173;13685:6:::0;;-1:-1:-1;;;;;13685:6:0;;13612:87;70173:7:::1;-1:-1:-1::0;;;;;70165:21:0::1;70194;70165:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70151:69;;;70239:2;70231:11;;;::::0;::::1;;70140:110;70095:155::o:0;47485:185::-;47623:39;47640:4;47646:2;47650:7;47623:39;;;;;;;;;;;;:16;:39::i;35769:152::-;35841:7;35884:27;35903:7;35884:18;:27::i;69559:177::-;13498:13;:11;:13::i;:::-;69619:8:::1;::::0;::::1;::::0;::::1;;;69616:113;;;69644:8;:16:::0;;-1:-1:-1;;69644:16:0::1;::::0;;69559:177::o;69616:113::-:1;69702:8;:15:::0;;-1:-1:-1;;69702:15:0::1;;;::::0;;69616:113:::1;69559:177::o:0;31311:233::-;31383:7;-1:-1:-1;;;;;31407:19:0;;31403:60;;31435:28;;-1:-1:-1;;;31435:28:0;;;;;;;;;;;31403:60;-1:-1:-1;;;;;;31481:25:0;;;;;:18;:25;;;;;;25470:13;31481:55;;31311:233::o;14260:103::-;13498:13;:11;:13::i;:::-;14325:30:::1;14352:1;14325:18;:30::i;69045:115::-:0;13498:13;:11;:13::i;:::-;69129:9:::1;:23;69139:13:::0;;69129:9;:23:::1;:::i;70621:141::-:0;13498:13;:11;:13::i;:::-;70668:29:::1;70708:7;13685:6:::0;;-1:-1:-1;;;;;13685:6:0;;13612:87;70708:7:::1;70668:48;;70740:13;-1:-1:-1::0;;;;;70727:27:0::1;;34552:104:::0;34608:13;34641:7;34634:14;;;;;:::i;69744:234::-;13498:13;:11;:13::i;:::-;69813:1:::1;69805:4;;69810:1;69805:6;;;;:::i;:::-;69804:10;;;;:::i;:::-;69797:4;:17:::0;;;69836:1:::1;69828:9:::0;69825:146:::1;;69861:10;69854:4;:17:::0;69559:177::o;69825:146::-:1;69938:9;69931:4;:16:::0;69744:234::o;41417:308::-;64429:10;-1:-1:-1;;;;;41516:31:0;;;41512:61;;41556:17;;-1:-1:-1;;;41556:17:0;;;;;;;;;;;41512:61;64429:10;41586:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;41586:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;41586:60:0;;;;;;;;;;41662:55;;540:41:1;;;41586:49:0;;64429:10;41662:55;;513:18:1;41662:55:0;;;;;;;41417:308;;:::o;68119:183::-;13498:13;:11;:13::i;:::-;68222:9:::1;::::0;:11:::1;::::0;68232:1:::1;68222:11;:::i;:::-;67455:1:::0;30401:12;30188:7;30385:13;68211:8;;30385:28;;-1:-1:-1;;30385:46:0;68195:24:::1;;;;:::i;:::-;:38;68187:69;;;::::0;-1:-1:-1;;;68187:69:0;;10292:2:1;68187:69:0::1;::::0;::::1;10274:21:1::0;10331:2;10311:18;;;10304:30;-1:-1:-1;;;10350:18:1;;;10343:48;10408:18;;68187:69:0::1;;;;;;;;;68267:27;68273:10;68285:8;68267:5;:27::i;48268:399::-:0;48435:31;48448:4;48454:2;48458:7;48435:12;:31::i;:::-;-1:-1:-1;;;;;48481:14:0;;;:19;48477:183;;48520:56;48551:4;48557:2;48561:7;48570:5;48520:30;:56::i;:::-;48515:145;;48604:40;;-1:-1:-1;;;48604:40:0;;;;;;;;;;;48515:145;48268:399;;;;:::o;67484:627::-;67574:8;67189:1;67175:11;:15;:53;;;;-1:-1:-1;67208:20:0;66484:1;67227;67208:20;:::i;:::-;67194:11;:34;67175:53;67167:85;;;;-1:-1:-1;;;67167:85:0;;10639:2:1;67167:85:0;;;10621:21:1;10678:2;10658:18;;;10651:30;-1:-1:-1;;;10697:18:1;;;10690:49;10756:18;;67167:85:0;10437:343:1;67167:85:0;67301:9;;:11;;67311:1;67301:11;:::i;:::-;67455:1;30401:12;30188:7;30385:13;67287:11;;30385:28;;-1:-1:-1;;30385:46:0;67271:27;;;;:::i;:::-;:41;67263:72;;;;-1:-1:-1;;;67263:72:0;;10292:2:1;67263:72:0;;;10274:21:1;10331:2;10311:18;;;10304:30;-1:-1:-1;;;10350:18:1;;;10343:48;10408:18;;67263:72:0;10090:342:1;67263:72:0;10537:1:::1;11135:7;;:19:::0;11127:63:::1;;;::::0;-1:-1:-1;;;11127:63:0;;10987:2:1;11127:63:0::1;::::0;::::1;10969:21:1::0;11026:2;11006:18;;;10999:30;11065:33;11045:18;;;11038:61;11116:18;;11127:63:0::1;10785:355:1::0;11127:63:0::1;10537:1;11268:7;:18:::0;67617:6:::2;::::0;::::2;;67616:7;67608:35;;;::::0;-1:-1:-1;;;67608:35:0;;11347:2:1;67608:35:0::2;::::0;::::2;11329:21:1::0;11386:2;11366:18;;;11359:30;-1:-1:-1;;;11405:18:1;;;11398:45;11460:18;;67608:35:0::2;11145:339:1::0;67608:35:0::2;67691:1;67681:8;67674:4;;:15;;;;:::i;:::-;:18;;;;:::i;:::-;67662:9;:30;67654:61;;;::::0;-1:-1:-1;;;67654:61:0;;11997:2:1;67654:61:0::2;::::0;::::2;11979:21:1::0;12036:2;12016:18;;;12009:30;-1:-1:-1;;;12055:18:1;;;12048:48;12113:18;;67654:61:0::2;11795:342:1::0;67654:61:0::2;67731:4;;67739:1;67731:9:::0;67728:338:::2;;67782:10;67765:28;::::0;;;:16:::2;:28;::::0;;;;;67807:1:::2;::::0;67765:39:::2;::::0;67796:8;;67765:39:::2;:::i;:::-;:43;67757:83;;;::::0;-1:-1:-1;;;67757:83:0;;12344:2:1;67757:83:0::2;::::0;::::2;12326:21:1::0;12383:2;12363:18;;;12356:30;12422:29;12402:18;;;12395:57;12469:18;;67757:83:0::2;12142:351:1::0;67757:83:0::2;67880:28;::::0;-1:-1:-1;;67897:10:0::2;12647:2:1::0;12643:15;12639:53;67880:28:0::2;::::0;::::2;12627:66:1::0;67855:12:0::2;::::0;12709::1;;67880:28:0::2;;;;;;;;;;;;67870:39;;;;;;67855:54;;67932:43;67951:5;;67932:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;67958:10:0::2;::::0;;-1:-1:-1;67970:4:0;;-1:-1:-1;67932:18:0::2;:43::i;:::-;67924:75;;;::::0;-1:-1:-1;;;67924:75:0;;12934:2:1;67924:75:0::2;::::0;::::2;12916:21:1::0;12973:2;12953:18;;;12946:30;-1:-1:-1;;;12992:18:1;;;12985:49;13051:18;;67924:75:0::2;12732:343:1::0;67924:75:0::2;68031:10;68014:28;::::0;;;:16:::2;:28;::::0;;;;:40;;68046:8;;68014:28;:40:::2;::::0;68046:8;;68014:40:::2;:::i;:::-;::::0;;;-1:-1:-1;;;67728:338:0::2;68076:27;68082:10;68094:8;68076:5;:27::i;:::-;-1:-1:-1::0;;10493:1:0::1;11447:7;:22:::0;-1:-1:-1;;67484:627:0:o;68321:496::-;68394:13;68425:16;68433:7;68425;:16::i;:::-;68420:59;;68450:29;;-1:-1:-1;;;68450:29:0;;;;;;;;;;;68420:59;68498:8;;;;;;;68494:314;;68536:9;68530:23;;;;;:::i;:::-;;;68557:1;68530:28;:45;;;;;;;;;;;;;;;;;68561:9;68530:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68523:52;68321:496;-1:-1:-1;;68321:496:0:o;68494:314::-;68617:26;;;;;;;;;:21;:26;;68668:10;:8;:10::i;:::-;68658:20;;68706:7;68700:21;68725:1;68700:26;:96;;;;;;;;;;;;;;;;;68753:7;68762:18;68772:7;68762:9;:18::i;:::-;68736:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68700:96;68693:103;68321:496;-1:-1:-1;;;68321:496:0:o;69382:169::-;13498:13;:11;:13::i;:::-;69440:6:::1;::::0;::::1;;69437:107;;;69463:6;:14:::0;;-1:-1:-1;;69463:14:0::1;::::0;;69559:177::o;69437:107::-:1;69519:6;:13:::0;;-1:-1:-1;;69519:13:0::1;69528:4;69519:13;::::0;;69382:169::o;69986:101::-;13498:13;:11;:13::i;:::-;70058:10:::1;:21:::0;69986:101::o;66846:102::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69265:109::-;13498:13;:11;:13::i;:::-;69341:9:::1;:25:::0;69265:109::o;70258:355::-;70466:29;;-1:-1:-1;;;70466:29:0;;-1:-1:-1;;;;;1697:32:1;;;70466:29:0;;;1679:51:1;70348:4:0;;70423:20;;70458:50;;;;70466:21;;;;;;1652:18:1;;70466:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;70458:50:0;;70455:93;;70532:4;70525:11;;;;;70455:93;-1:-1:-1;;;;;;;42003:25:0;;;41979:4;42003:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;70258:355::o;66955:17::-;;;;;;;:::i;14518:201::-;13498:13;:11;:13::i;:::-;-1:-1:-1;;;;;14607:22:0;::::1;14599:73;;;::::0;-1:-1:-1;;;14599:73:0;;14235:2:1;14599:73:0::1;::::0;::::1;14217:21:1::0;14274:2;14254:18;;;14247:30;14313:34;14293:18;;;14286:62;-1:-1:-1;;;14364:18:1;;;14357:36;14410:19;;14599:73:0::1;14033:402:1::0;14599:73:0::1;14683:28;14702:8;14683:18;:28::i;42304:282::-:0;42369:4;42425:7;67455:1;42406:26;;:66;;;;;42459:13;;42449:7;:23;42406:66;:153;;;;-1:-1:-1;;42510:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;42510:44:0;:49;;42304:282::o;13777:132::-;13685:6;;-1:-1:-1;;;;;13685:6:0;64429:10;13841:23;13833:68;;;;-1:-1:-1;;;13833:68:0;;14642:2:1;13833:68:0;;;14624:21:1;;;14661:18;;;14654:30;14720:34;14700:18;;;14693:62;14772:18;;13833:68:0;14440:356:1;36924:1275:0;36991:7;37026;;67455:1;37075:23;37071:1061;;37128:13;;37121:4;:20;37117:1015;;;37166:14;37183:23;;;:17;:23;;;;;;;-1:-1:-1;;;37272:24:0;;:29;;37268:845;;37937:113;37944:6;37954:1;37944:11;37937:113;;-1:-1:-1;;;38015:6:0;37997:25;;;;:17;:25;;;;;;37937:113;;37268:845;37143:989;37117:1015;38160:31;;-1:-1:-1;;;38160: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;51929:2720::-;52002:20;52025:13;;;52053;;;52049:44;;52075:18;;-1:-1:-1;;;52075:18:0;;;;;;;;;;;52049:44;-1:-1:-1;;;;;52581:22:0;;;;;;:18;:22;;;;25608:2;52581:22;;;:71;;52619:32;52607:45;;52581:71;;;52895:31;;;:17;:31;;;;;-1:-1:-1;39589:15:0;;39563:24;39559:46;39158:11;39133:23;39129:41;39126:52;39116:63;;52895:173;;53130:23;;;;52895:31;;52581:22;;53895:25;52581:22;;53748:335;54163:1;54149:12;54145:20;54103:346;54204:3;54195:7;54192:16;54103:346;;54422:7;54412:8;54409:1;54382:25;54379:1;54376;54371:59;54257:1;54244:15;54103:346;;;54107:77;54482:8;54494:1;54482:13;54478:45;;54504:19;;-1:-1:-1;;;54504:19:0;;;;;;;;;;;54478:45;54540:13;:19;-1:-1:-1;69018:11:0::1;68946:91:::0;;:::o;50751:716::-;50935:88;;-1:-1:-1;;;50935:88:0;;50914:4;;-1:-1:-1;;;;;50935:45:0;;;;;:88;;64429:10;;51002:4;;51008:7;;51017:5;;50935:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50935:88:0;;;;;;;;-1:-1:-1;;50935:88:0;;;;;;;;;;;;:::i;:::-;;;50931:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51218:6;:13;51235:1;51218:18;51214:235;;51264:40;;-1:-1:-1;;;51264:40:0;;;;;;;;;;;51214:235;51407:6;51401:13;51392:6;51388:2;51384:15;51377:38;50931:529;-1:-1:-1;;;;;;51094:64:0;-1:-1:-1;;;51094:64:0;;-1:-1:-1;50751:716:0;;;;;;:::o;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;68823:104::-;68883:13;68916:3;68909:10;;;;;:::i;64549:1582::-;65033:4;65027:11;;65040:4;65023:22;65119:17;;;;65023:22;65477:5;65459:428;65525:1;65520:3;65516:11;65509:18;;65696:2;65690:4;65686:13;65682:2;65678:22;65673:3;65665:36;65790:2;65780:13;;65847:25;65459:428;65847:25;-1:-1:-1;65917:13:0;;;-1:-1:-1;;66032:14:0;;;66094:19;;;66032:14;64549:1582;-1:-1:-1;64549:1582:0: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;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;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:131::-;-1:-1:-1;;;;;1816:31:1;;1806:42;;1796:70;;1862:1;1859;1852:12;1877:315;1945:6;1953;2006:2;1994:9;1985:7;1981:23;1977:32;1974:52;;;2022:1;2019;2012:12;1974:52;2061:9;2048:23;2080:31;2105:5;2080:31;:::i;:::-;2130:5;2182:2;2167:18;;;;2154:32;;-1:-1:-1;;;1877:315:1:o;2197:592::-;2268:6;2276;2329:2;2317:9;2308:7;2304:23;2300:32;2297:52;;;2345:1;2342;2335:12;2297:52;2385:9;2372:23;2414:18;2455:2;2447:6;2444:14;2441:34;;;2471:1;2468;2461:12;2441:34;2509:6;2498:9;2494:22;2484:32;;2554:7;2547:4;2543:2;2539:13;2535:27;2525:55;;2576:1;2573;2566:12;2525:55;2616:2;2603:16;2642:2;2634:6;2631:14;2628:34;;;2658:1;2655;2648:12;2628:34;2703:7;2698:2;2689:6;2685:2;2681:15;2677:24;2674:37;2671:57;;;2724:1;2721;2714:12;2671:57;2755:2;2747:11;;;;;2777:6;;-1:-1:-1;2197:592:1;;-1:-1:-1;;;;2197:592:1:o;2976:456::-;3053:6;3061;3069;3122:2;3110:9;3101:7;3097:23;3093:32;3090:52;;;3138:1;3135;3128:12;3090:52;3177:9;3164:23;3196:31;3221:5;3196:31;:::i;:::-;3246:5;-1:-1:-1;3303:2:1;3288:18;;3275:32;3316:33;3275:32;3316:33;:::i;:::-;2976:456;;3368:7;;-1:-1:-1;;;3422:2:1;3407:18;;;;3394:32;;2976:456::o;3619:247::-;3678:6;3731:2;3719:9;3710:7;3706:23;3702:32;3699:52;;;3747:1;3744;3737:12;3699:52;3786:9;3773:23;3805:31;3830:5;3805:31;:::i;3871:416::-;3936:6;3944;3997:2;3985:9;3976:7;3972:23;3968:32;3965:52;;;4013:1;4010;4003:12;3965:52;4052:9;4039:23;4071:31;4096:5;4071:31;:::i;:::-;4121:5;-1:-1:-1;4178:2:1;4163:18;;4150:32;4220:15;;4213:23;4201:36;;4191:64;;4251:1;4248;4241:12;4191:64;4274:7;4264:17;;;3871:416;;;;;:::o;4292:127::-;4353:10;4348:3;4344:20;4341:1;4334:31;4384:4;4381:1;4374:15;4408:4;4405:1;4398:15;4424:1266;4519:6;4527;4535;4543;4596:3;4584:9;4575:7;4571:23;4567:33;4564:53;;;4613:1;4610;4603:12;4564:53;4652:9;4639:23;4671:31;4696:5;4671:31;:::i;:::-;4721:5;-1:-1:-1;4778:2:1;4763:18;;4750:32;4791:33;4750:32;4791:33;:::i;:::-;4843:7;-1:-1:-1;4897:2:1;4882:18;;4869:32;;-1:-1:-1;4952:2:1;4937:18;;4924:32;4975:18;5005:14;;;5002:34;;;5032:1;5029;5022:12;5002:34;5070:6;5059:9;5055:22;5045:32;;5115:7;5108:4;5104:2;5100:13;5096:27;5086:55;;5137:1;5134;5127:12;5086:55;5173:2;5160:16;5195:2;5191;5188:10;5185:36;;;5201:18;;:::i;:::-;5276:2;5270:9;5244:2;5330:13;;-1:-1:-1;;5326:22:1;;;5350:2;5322:31;5318:40;5306:53;;;5374:18;;;5394:22;;;5371:46;5368:72;;;5420:18;;:::i;:::-;5460:10;5456:2;5449:22;5495:2;5487:6;5480:18;5535:7;5530:2;5525;5521;5517:11;5513:20;5510:33;5507:53;;;5556:1;5553;5546:12;5507:53;5612:2;5607;5603;5599:11;5594:2;5586:6;5582:15;5569:46;5657:1;5652:2;5647;5639:6;5635:15;5631:24;5624:35;5678:6;5668:16;;;;;;;4424:1266;;;;;;;:::o;5695:683::-;5790:6;5798;5806;5859:2;5847:9;5838:7;5834:23;5830:32;5827:52;;;5875:1;5872;5865:12;5827:52;5911:9;5898:23;5888:33;;5972:2;5961:9;5957:18;5944:32;5995:18;6036:2;6028:6;6025:14;6022:34;;;6052:1;6049;6042:12;6022:34;6090:6;6079:9;6075:22;6065:32;;6135:7;6128:4;6124:2;6120:13;6116:27;6106:55;;6157:1;6154;6147:12;6106:55;6197:2;6184:16;6223:2;6215:6;6212:14;6209:34;;;6239:1;6236;6229:12;6209:34;6292:7;6287:2;6277:6;6274:1;6270:14;6266:2;6262:23;6258:32;6255:45;6252:65;;;6313:1;6310;6303:12;6252:65;6344:2;6340;6336:11;6326:21;;6366:6;6356:16;;;;;5695:683;;;;;:::o;6568:388::-;6636:6;6644;6697:2;6685:9;6676:7;6672:23;6668:32;6665:52;;;6713:1;6710;6703:12;6665:52;6752:9;6739:23;6771:31;6796:5;6771:31;:::i;:::-;6821:5;-1:-1:-1;6878:2:1;6863:18;;6850:32;6891:33;6850:32;6891:33;:::i;6961:380::-;7040:1;7036:12;;;;7083;;;7104:61;;7158:4;7150:6;7146:17;7136:27;;7104:61;7211:2;7203:6;7200:14;7180:18;7177:38;7174:161;;7257:10;7252:3;7248:20;7245:1;7238:31;7292:4;7289:1;7282:15;7320:4;7317:1;7310:15;7174:161;;6961:380;;;:::o;7472:545::-;7574:2;7569:3;7566:11;7563:448;;;7610:1;7635:5;7631:2;7624:17;7680:4;7676:2;7666:19;7750:2;7738:10;7734:19;7731:1;7727:27;7721:4;7717:38;7786:4;7774:10;7771:20;7768:47;;;-1:-1:-1;7809:4:1;7768:47;7864:2;7859:3;7855:12;7852:1;7848:20;7842:4;7838:31;7828:41;;7919:82;7937:2;7930:5;7927:13;7919:82;;;7982:17;;;7963:1;7952:13;7919:82;;8193:1206;8317:18;8312:3;8309:27;8306:53;;;8339:18;;:::i;:::-;8368:94;8458:3;8418:38;8450:4;8444:11;8418:38;:::i;:::-;8412:4;8368:94;:::i;:::-;8488:1;8513:2;8508:3;8505:11;8530:1;8525:616;;;;9185:1;9202:3;9199:93;;;-1:-1:-1;9258:19:1;;;9245:33;9199:93;-1:-1:-1;;8150:1:1;8146:11;;;8142:24;8138:29;8128:40;8174:1;8170:11;;;8125:57;9305:78;;8498:895;;8525:616;7419:1;7412:14;;;7456:4;7443:18;;-1:-1:-1;;8561:17:1;;;8662:9;8684:229;8698:7;8695:1;8692:14;8684:229;;;8787:19;;;8774:33;8759:49;;8894:4;8879:20;;;;8847:1;8835:14;;;;8714:12;8684:229;;;8688:3;8941;8932:7;8929:16;8926:159;;;9065:1;9061:6;9055:3;9049;9046:1;9042:11;9038:21;9034:34;9030:39;9017:9;9012:3;9008:19;8995:33;8991:79;8983:6;8976:95;8926:159;;;9128:1;9122:3;9119:1;9115:11;9111:19;9105:4;9098:33;8498:895;;;8193:1206;;;:::o;9614:127::-;9675:10;9670:3;9666:20;9663:1;9656:31;9706:4;9703:1;9696:15;9730:4;9727:1;9720:15;9746:125;9811:9;;;9832:10;;;9829:36;;;9845:18;;:::i;9876:209::-;9908:1;9934;9924:132;;9978:10;9973:3;9969:20;9966:1;9959:31;10013:4;10010:1;10003:15;10041:4;10038:1;10031:15;9924:132;-1:-1:-1;10070:9:1;;9876:209::o;11489:168::-;11562:9;;;11593;;11610:15;;;11604:22;;11590:37;11580:71;;11631:18;;:::i;11662:128::-;11729:9;;;11750:11;;;11747:37;;;11764:18;;:::i;13080:663::-;13360:3;13398:6;13392:13;13414:66;13473:6;13468:3;13461:4;13453:6;13449:17;13414:66;:::i;:::-;13543:13;;13502:16;;;;13565:70;13543:13;13502:16;13612:4;13600:17;;13565:70;:::i;:::-;-1:-1:-1;;;13657:20:1;;13686:22;;;13735:1;13724:13;;13080:663;-1:-1:-1;;;;13080:663:1:o;13748:280::-;13847:6;13900:2;13888:9;13879:7;13875:23;13871:32;13868:52;;;13916:1;13913;13906:12;13868:52;13948:9;13942:16;13967:31;13992:5;13967:31;:::i;14801:489::-;-1:-1:-1;;;;;15070:15:1;;;15052:34;;15122:15;;15117:2;15102:18;;15095:43;15169:2;15154:18;;15147:34;;;15217:3;15212:2;15197:18;;15190:31;;;14995:4;;15238:46;;15264:19;;15256:6;15238:46;:::i;:::-;15230:54;14801:489;-1:-1:-1;;;;;;14801:489:1:o;15295:249::-;15364:6;15417:2;15405:9;15396:7;15392:23;15388:32;15385:52;;;15433:1;15430;15423:12;15385:52;15465:9;15459:16;15484:30;15508:5;15484:30;:::i;15549:127::-;15610:10;15605:3;15601:20;15598:1;15591:31;15641:4;15638:1;15631:15;15665:4;15662:1;15655:15;15681:135;15720:3;15741:17;;;15738:43;;15761:18;;:::i;:::-;-1:-1:-1;15808:1:1;15797:13;;15681:135::o

Swarm Source

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