ETH Price: $3,488.02 (-0.69%)
Gas: 7 Gwei

Token

The Moment3! (MOMENT)
 

Overview

Max Total Supply

5,555 MOMENT

Holders

2,179

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MOMENT
0xc38d56c8fcc7b692d76fc422e94f9ea8b3e5de7e
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:
Moment

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

File 2 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// 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 3 of 6 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 6 : Moment.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.8;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

/**
 *
 *  |ˉˉˉˉˉˉˉˉˉˉˉ| /ˉˉˉˉˉˉˉˉ\ |ˉˉˉˉˉˉˉˉˉˉˉ||ˉˉˉˉˉˉˉˉˉˉ||ˉˉˉ\    |ˉ||ˉˉˉˉˉˉˉˉˉˉˉ||ˉˉˉˉˉˉˉˉˉˉ\
 *  | |ˉˉ| |ˉˉ| |/ /ˉˉˉˉˉˉ\ \| |ˉˉ| |ˉˉ| || |ˉˉˉˉˉˉˉˉ | |\ \   | | ˉˉˉˉ| |ˉˉˉˉ  ˉˉˉˉˉˉˉˉ| |
 *  | |  | |  | || |      | || |  | |  | ||  ˉˉˉˉˉˉˉˉ|| | \ \  | |     | |     |ˉˉˉˉˉˉˉˉ  /
 *  | |  | |  | || |      | || |  | |  | || |ˉˉˉˉˉˉˉˉ | |  \ \ | |     | |      ˉˉˉˉˉˉˉˉ| \
 *  | |  | |  | |\ \      / /| |  | |  | || |         | |   \ \| |     | |              / |
 *  | |  | |  | | \ ˉˉˉˉˉˉ / | |  | |  | ||  ˉˉˉˉˉˉˉˉ|| |    \ ˉ |     | |     |ˉˉˉˉˉˉˉˉ  /
 *  ˉˉˉ  ˉˉˉ  ˉˉˉ  ˉˉˉˉˉˉˉˉ  ˉˉˉ  ˉˉˉ  ˉˉˉ ˉˉˉˉˉˉˉˉˉˉ  ˉ      ˉˉˉ      ˉˉˉ      ˉˉˉˉˉˉˉˉˉˉ
 *  Every Moment is Non-Fungible.
 *
 */

contract Moment is ERC721A, Ownable {
    uint256 public constant collectionSize = 5555;
    uint256 public perAddressMaxMintAmount = 1;
    bytes32 public allowListMerkleRoot;
    uint256 public allowListStartTime;
    uint256 public allowListEndTime;
    uint256 public publicStartTime;
    string public baseURI;

    constructor(
        bytes32 allowListMerkleRoot_,
        uint256 allowListStartTime_,
        uint256 allowListEndTime_,
        uint256 publicStartTime_,
        string memory baseURI_
    ) ERC721A("The Moment3!", "MOMENT") {
        allowListMerkleRoot = allowListMerkleRoot_;
        allowListStartTime = allowListStartTime_;
        allowListEndTime = allowListEndTime_;
        publicStartTime = publicStartTime_;
        baseURI = baseURI_;
    }

    function mint(
        uint256 amount,
        uint256 allowListTotalAmount,
        bytes32[] calldata allowListMerkleProof
    ) public payable callerIsUser {
        require(amount > 0 && totalMinted() + amount <= collectionSize);
        if (
            block.timestamp >= allowListStartTime &&
            block.timestamp <= allowListEndTime
        ) {
            uint256 allowListRemainAmount = getAllowListRemainAmount(
                msg.sender,
                allowListTotalAmount,
                allowListMerkleProof
            );
            require(allowListRemainAmount == amount);
            _setAux(msg.sender, _getAux(msg.sender) + uint64(amount));
        } else {
            require(block.timestamp >= publicStartTime);
            require(
                numberMinted(msg.sender) + amount <= perAddressMaxMintAmount
            );
        }
        _safeMint(msg.sender, amount);
    }

    function getAllowListRemainAmount(
        address user,
        uint256 allowListTotalAmount,
        bytes32[] calldata allowListMerkleProof
    ) public view returns (uint256) {
        if (allowListTotalAmount <= _getAux(user)) return 0;
        require(
            MerkleProof.verify(
                allowListMerkleProof,
                allowListMerkleRoot,
                keccak256(abi.encodePacked(user, ":", allowListTotalAmount))
            )
        );
        return allowListTotalAmount - _getAux(user);
    }

    function airdrop(address user, uint256 amount) public onlyOwner {
        require(amount > 0 && totalMinted() + amount <= collectionSize);
        _safeMint(user, amount);
    }

    function airdropList(
        address[] calldata userList,
        uint256[] calldata amountList
    ) public onlyOwner {
        require(userList.length == amountList.length);
        for (uint256 i = 0; i < userList.length; i++) {
            airdrop(userList[i], amountList[i]);
        }
    }

    function setConfig(
        uint256 perAddressMaxMintAmount_,
        bytes32 allowListMerkleRoot_,
        uint256 allowListStartTime_,
        uint256 allowListEndTime_,
        uint256 publicStartTime_,
        string calldata baseURI_
    ) public onlyOwner {
        perAddressMaxMintAmount = perAddressMaxMintAmount_;
        allowListMerkleRoot = allowListMerkleRoot_;
        allowListStartTime = allowListStartTime_;
        allowListEndTime = allowListEndTime_;
        publicStartTime = publicStartTime_;
        baseURI = baseURI_;
    }

    function withdraw() public onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success);
    }

    function totalMinted() public view returns (uint256) {
        return _totalMinted();
    }

    function numberMinted(address user) public view returns (uint256) {
        return _numberMinted(user);
    }

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

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

    modifier callerIsUser() {
        require(tx.origin == msg.sender);
        _;
    }
}

File 5 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"allowListMerkleRoot_","type":"bytes32"},{"internalType":"uint256","name":"allowListStartTime_","type":"uint256"},{"internalType":"uint256","name":"allowListEndTime_","type":"uint256"},{"internalType":"uint256","name":"publicStartTime_","type":"uint256"},{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"userList","type":"address[]"},{"internalType":"uint256[]","name":"amountList","type":"uint256[]"}],"name":"airdropList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowListEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"allowListTotalAmount","type":"uint256"},{"internalType":"bytes32[]","name":"allowListMerkleProof","type":"bytes32[]"}],"name":"getAllowListRemainAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"allowListTotalAmount","type":"uint256"},{"internalType":"bytes32[]","name":"allowListMerkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perAddressMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perAddressMaxMintAmount_","type":"uint256"},{"internalType":"bytes32","name":"allowListMerkleRoot_","type":"bytes32"},{"internalType":"uint256","name":"allowListStartTime_","type":"uint256"},{"internalType":"uint256","name":"allowListEndTime_","type":"uint256"},{"internalType":"uint256","name":"publicStartTime_","type":"uint256"},{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016009553480156200001657600080fd5b5060405162001e0538038062001e058339810160408190526200003991620001f7565b604080518082018252600c81526b546865204d6f6d656e74332160a01b6020808301918252835180850190945260068452651353d351539560d21b9084015281519192916200008b916002916200013b565b508051620000a19060039060208401906200013b565b5050600160005550620000b433620000e9565b600a859055600b849055600c839055600d8290558051620000dd90600e9060208401906200013b565b5050505050506200033c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014990620002ff565b90600052602060002090601f0160209004810192826200016d5760008555620001b8565b82601f106200018857805160ff1916838001178555620001b8565b82800160010185558215620001b8579182015b82811115620001b85782518255916020019190600101906200019b565b50620001c6929150620001ca565b5090565b5b80821115620001c65760008155600101620001cb565b634e487b7160e01b600052604160045260246000fd5b600080600080600060a086880312156200021057600080fd5b8551602080880151604089015160608a015160808b015194995091975095509350906001600160401b03808211156200024857600080fd5b818901915089601f8301126200025d57600080fd5b815181811115620002725762000272620001e1565b604051601f8201601f19908116603f011681019083821181831017156200029d576200029d620001e1565b816040528281528c86848701011115620002b657600080fd5b600093505b82841015620002da5784840186015181850187015292850192620002bb565b82841115620002ec5760008684830101525b8096505050505050509295509295909350565b600181811c908216806200031457607f821691505b602082108114156200033657634e487b7160e01b600052602260045260246000fd5b50919050565b611ab9806200034c6000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a2309ff811610095578063e6d37b8811610064578063e6d37b88146104ff578063e985e9c514610512578063f170666e1461055b578063f2fde38b1461057b57600080fd5b8063a2309ff814610493578063b88d4fde146104ac578063c87b56dd146104bf578063dc33e681146104df57600080fd5b80638da5cb5b116100d15780638da5cb5b1461042a57806395d89b41146104485780639bb906e01461045d578063a22cb4651461047357600080fd5b806370a08231146103b5578063715018a6146103d557806385275372146103ea5780638ba4cc3c1461040a57600080fd5b80633071188d1161017a5780635fd1bbc4116101495780635fd1bbc41461034a5780636352211e1461036057806369b1d2cc146103805780636c0360eb146103a057600080fd5b80633071188d146102f65780633ccfd60b1461030c57806342842e0e1461032157806345c0f5331461033457600080fd5b8063081812fc116101b6578063081812fc14610279578063095ea7b3146102b157806318160ddd146102c657806323b872dd146102e357600080fd5b806301ffc9a7146101e8578063032438ed1461021d57806305f685941461024157806306fdde0314610257575b600080fd5b3480156101f457600080fd5b506102086102033660046114a3565b61059b565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023360095481565b604051908152602001610214565b34801561024d57600080fd5b50610233600c5481565b34801561026357600080fd5b5061026c6105ed565b6040516102149190611518565b34801561028557600080fd5b5061029961029436600461152b565b61067f565b6040516001600160a01b039091168152602001610214565b6102c46102bf366004611560565b6106c3565b005b3480156102d257600080fd5b506001546000540360001901610233565b6102c46102f136600461158a565b610763565b34801561030257600080fd5b50610233600b5481565b34801561031857600080fd5b506102c46108f4565b6102c461032f36600461158a565b610954565b34801561034057600080fd5b506102336115b381565b34801561035657600080fd5b50610233600d5481565b34801561036c57600080fd5b5061029961037b36600461152b565b610974565b34801561038c57600080fd5b506102c461039b3660046115c6565b61097f565b3480156103ac57600080fd5b5061026c6109b6565b3480156103c157600080fd5b506102336103d0366004611669565b610a44565b3480156103e157600080fd5b506102c4610a93565b3480156103f657600080fd5b506102336104053660046116d0565b610aa7565b34801561041657600080fd5b506102c4610425366004611560565b610b92565b34801561043657600080fd5b506008546001600160a01b0316610299565b34801561045457600080fd5b5061026c610bda565b34801561046957600080fd5b50610233600a5481565b34801561047f57600080fd5b506102c461048e36600461172a565b610be9565b34801561049f57600080fd5b5060005460001901610233565b6102c46104ba36600461177c565b610c55565b3480156104cb57600080fd5b5061026c6104da36600461152b565b610c9f565b3480156104eb57600080fd5b506102336104fa366004611669565b610d24565b6102c461050d366004611858565b610d4f565b34801561051e57600080fd5b5061020861052d366004611893565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561056757600080fd5b506102c46105763660046118c6565b610e58565b34801561058757600080fd5b506102c4610596366004611669565b610ed8565b60006301ffc9a760e01b6001600160e01b0319831614806105cc57506380ac58cd60e01b6001600160e01b03198316145b806105e75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105fc90611926565b80601f016020809104026020016040519081016040528092919081815260200182805461062890611926565b80156106755780601f1061064a57610100808354040283529160200191610675565b820191906000526020600020905b81548152906001019060200180831161065857829003601f168201915b5050505050905090565b600061068a82610f53565b6106a7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ce82610974565b9050336001600160a01b03821614610707576106ea813361052d565b610707576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061076e82610f88565b9050836001600160a01b0316816001600160a01b0316146107a15760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107ee576107d1863361052d565b6107ee57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661081557604051633a954ecd60e21b815260040160405180910390fd5b801561082057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b83166108ab57600184016000818152600460205260409020546108a95760005481146108a95760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6108fc610ff1565b604051600090339047908381818185875af1925050503d806000811461093e576040519150601f19603f3d011682016040523d82523d6000602084013e610943565b606091505b505090508061095157600080fd5b50565b61096f83838360405180602001604052806000815250610c55565b505050565b60006105e782610f88565b610987610ff1565b6009879055600a869055600b859055600c849055600d8390556109ac600e83836113f4565b5050505050505050565b600e80546109c390611926565b80601f01602080910402602001604051908101604052809291908181526020018280546109ef90611926565b8015610a3c5780601f10610a1157610100808354040283529160200191610a3c565b820191906000526020600020905b815481529060010190602001808311610a1f57829003601f168201915b505050505081565b60006001600160a01b038216610a6d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610a9b610ff1565b610aa5600061104b565b565b6001600160a01b03841660009081526005602052604081205460c01c8411610ad157506000610b8a565b610b5883838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a546040516bffffffffffffffffffffffff1960608c901b166020820152601d60f91b6034820152603581018a905290925060550190506040516020818303038152906040528051906020012061109d565b610b6157600080fd5b6001600160a01b038516600090815260056020526040902054610b879060c01c85611977565b90505b949350505050565b610b9a610ff1565b600081118015610bc357506115b381610bb66000546000190190565b610bc0919061198e565b11155b610bcc57600080fd5b610bd682826110b3565b5050565b6060600380546105fc90611926565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c60848484610763565b6001600160a01b0383163b15610c9957610c7c848484846110cd565b610c99576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610caa82610f53565b610cc757604051630a14c4b560e41b815260040160405180910390fd5b6000610cd16111c1565b9050805160001415610cf25760405180602001604052806000815250610d1d565b80610cfc846111d0565b604051602001610d0d9291906119a6565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166105e7565b323314610d5b57600080fd5b600084118015610d8457506115b384610d776000546000190190565b610d81919061198e565b11155b610d8d57600080fd5b600b544210158015610da15750600c544211155b15610e1d576000610db433858585610aa7565b9050848114610dc257600080fd5b33600081815260056020526040902054610e179190610de590889060c01c6119d5565b6001600160a01b03909116600090815260056020526040902080546001600160c01b031660c09290921b919091179055565b50610e4e565b600d54421015610e2c57600080fd5b60095484610e3933610d24565b610e43919061198e565b1115610e4e57600080fd5b610c9933856110b3565b610e60610ff1565b828114610e6c57600080fd5b60005b83811015610ed157610ebf858583818110610e8c57610e8c6119f8565b9050602002016020810190610ea19190611669565b848484818110610eb357610eb36119f8565b90506020020135610b92565b80610ec981611a0e565b915050610e6f565b5050505050565b610ee0610ff1565b6001600160a01b038116610f4a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b6109518161104b565b600081600111158015610f67575060005482105b80156105e7575050600090815260046020526040902054600160e01b161590565b60008180600111610fd857600054811015610fd857600081815260046020526040902054600160e01b8116610fd6575b80610d1d575060001901600081815260046020526040902054610fb8565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610aa55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f41565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826110aa858461121e565b14949350505050565b610bd682826040518060200160405280600081525061126b565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611102903390899088908890600401611a29565b602060405180830381600087803b15801561111c57600080fd5b505af192505050801561114c575060408051601f3d908101601f1916820190925261114991810190611a66565b60015b6111a7573d80801561117a576040519150601f19603f3d011682016040523d82523d6000602084013e61117f565b606091505b50805161119f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b8a565b6060600e80546105fc90611926565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806112075761120c565b6111ea565b50819003601f19909101908152919050565b600081815b84518110156112635761124f82868381518110611242576112426119f8565b60200260200101516112d1565b91508061125b81611a0e565b915050611223565b509392505050565b61127583836112fd565b6001600160a01b0383163b1561096f576000548281035b61129f60008683806001019450866110cd565b6112bc576040516368d2bf6b60e11b815260040160405180910390fd5b81811061128c578160005414610ed157600080fd5b60008183106112ed576000828152602084905260409020610d1d565b5060009182526020526040902090565b6000548161131e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146113cd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611395565b50816113eb57604051622e076360e81b815260040160405180910390fd5b60005550505050565b82805461140090611926565b90600052602060002090601f0160209004810192826114225760008555611468565b82601f1061143b5782800160ff19823516178555611468565b82800160010185558215611468579182015b8281111561146857823582559160200191906001019061144d565b50611474929150611478565b5090565b5b808211156114745760008155600101611479565b6001600160e01b03198116811461095157600080fd5b6000602082840312156114b557600080fd5b8135610d1d8161148d565b60005b838110156114db5781810151838201526020016114c3565b83811115610c995750506000910152565b600081518084526115048160208601602086016114c0565b601f01601f19169290920160200192915050565b602081526000610d1d60208301846114ec565b60006020828403121561153d57600080fd5b5035919050565b80356001600160a01b038116811461155b57600080fd5b919050565b6000806040838503121561157357600080fd5b61157c83611544565b946020939093013593505050565b60008060006060848603121561159f57600080fd5b6115a884611544565b92506115b660208501611544565b9150604084013590509250925092565b600080600080600080600060c0888a0312156115e157600080fd5b873596506020880135955060408801359450606088013593506080880135925060a088013567ffffffffffffffff8082111561161c57600080fd5b818a0191508a601f83011261163057600080fd5b81358181111561163f57600080fd5b8b602082850101111561165157600080fd5b60208301945080935050505092959891949750929550565b60006020828403121561167b57600080fd5b610d1d82611544565b60008083601f84011261169657600080fd5b50813567ffffffffffffffff8111156116ae57600080fd5b6020830191508360208260051b85010111156116c957600080fd5b9250929050565b600080600080606085870312156116e657600080fd5b6116ef85611544565b935060208501359250604085013567ffffffffffffffff81111561171257600080fd5b61171e87828801611684565b95989497509550505050565b6000806040838503121561173d57600080fd5b61174683611544565b91506020830135801515811461175b57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561179257600080fd5b61179b85611544565b93506117a960208601611544565b925060408501359150606085013567ffffffffffffffff808211156117cd57600080fd5b818701915087601f8301126117e157600080fd5b8135818111156117f3576117f3611766565b604051601f8201601f19908116603f0116810190838211818310171561181b5761181b611766565b816040528281528a602084870101111561183457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806000806060858703121561186e57600080fd5b8435935060208501359250604085013567ffffffffffffffff81111561171257600080fd5b600080604083850312156118a657600080fd5b6118af83611544565b91506118bd60208401611544565b90509250929050565b600080600080604085870312156118dc57600080fd5b843567ffffffffffffffff808211156118f457600080fd5b61190088838901611684565b9096509450602087013591508082111561191957600080fd5b5061171e87828801611684565b600181811c9082168061193a57607f821691505b6020821081141561195b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561198957611989611961565b500390565b600082198211156119a1576119a1611961565b500190565b600083516119b88184602088016114c0565b8351908301906119cc8183602088016114c0565b01949350505050565b600067ffffffffffffffff8083168185168083038211156119cc576119cc611961565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611a2257611a22611961565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a5c908301846114ec565b9695505050505050565b600060208284031215611a7857600080fd5b8151610d1d8161148d56fea2646970667358221220d594c7c4289fb13f80d8061865a38345d0d5b9b0e2ba2cbb4d25c011cf50314c64736f6c63430008080033052acebd4e7074540ab10b8cceb7dd87088af21a569f8af5696482686a0f6fea0000000000000000000000000000000000000000000000000000000064a658600000000000000000000000000000000000000000000000000000000064a7a9df0000000000000000000000000000000000000000000000000000000064a7a9e000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f7468656d6f6d656e74332e61692f6d6574612e6a736f6e23

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063a2309ff811610095578063e6d37b8811610064578063e6d37b88146104ff578063e985e9c514610512578063f170666e1461055b578063f2fde38b1461057b57600080fd5b8063a2309ff814610493578063b88d4fde146104ac578063c87b56dd146104bf578063dc33e681146104df57600080fd5b80638da5cb5b116100d15780638da5cb5b1461042a57806395d89b41146104485780639bb906e01461045d578063a22cb4651461047357600080fd5b806370a08231146103b5578063715018a6146103d557806385275372146103ea5780638ba4cc3c1461040a57600080fd5b80633071188d1161017a5780635fd1bbc4116101495780635fd1bbc41461034a5780636352211e1461036057806369b1d2cc146103805780636c0360eb146103a057600080fd5b80633071188d146102f65780633ccfd60b1461030c57806342842e0e1461032157806345c0f5331461033457600080fd5b8063081812fc116101b6578063081812fc14610279578063095ea7b3146102b157806318160ddd146102c657806323b872dd146102e357600080fd5b806301ffc9a7146101e8578063032438ed1461021d57806305f685941461024157806306fdde0314610257575b600080fd5b3480156101f457600080fd5b506102086102033660046114a3565b61059b565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023360095481565b604051908152602001610214565b34801561024d57600080fd5b50610233600c5481565b34801561026357600080fd5b5061026c6105ed565b6040516102149190611518565b34801561028557600080fd5b5061029961029436600461152b565b61067f565b6040516001600160a01b039091168152602001610214565b6102c46102bf366004611560565b6106c3565b005b3480156102d257600080fd5b506001546000540360001901610233565b6102c46102f136600461158a565b610763565b34801561030257600080fd5b50610233600b5481565b34801561031857600080fd5b506102c46108f4565b6102c461032f36600461158a565b610954565b34801561034057600080fd5b506102336115b381565b34801561035657600080fd5b50610233600d5481565b34801561036c57600080fd5b5061029961037b36600461152b565b610974565b34801561038c57600080fd5b506102c461039b3660046115c6565b61097f565b3480156103ac57600080fd5b5061026c6109b6565b3480156103c157600080fd5b506102336103d0366004611669565b610a44565b3480156103e157600080fd5b506102c4610a93565b3480156103f657600080fd5b506102336104053660046116d0565b610aa7565b34801561041657600080fd5b506102c4610425366004611560565b610b92565b34801561043657600080fd5b506008546001600160a01b0316610299565b34801561045457600080fd5b5061026c610bda565b34801561046957600080fd5b50610233600a5481565b34801561047f57600080fd5b506102c461048e36600461172a565b610be9565b34801561049f57600080fd5b5060005460001901610233565b6102c46104ba36600461177c565b610c55565b3480156104cb57600080fd5b5061026c6104da36600461152b565b610c9f565b3480156104eb57600080fd5b506102336104fa366004611669565b610d24565b6102c461050d366004611858565b610d4f565b34801561051e57600080fd5b5061020861052d366004611893565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561056757600080fd5b506102c46105763660046118c6565b610e58565b34801561058757600080fd5b506102c4610596366004611669565b610ed8565b60006301ffc9a760e01b6001600160e01b0319831614806105cc57506380ac58cd60e01b6001600160e01b03198316145b806105e75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105fc90611926565b80601f016020809104026020016040519081016040528092919081815260200182805461062890611926565b80156106755780601f1061064a57610100808354040283529160200191610675565b820191906000526020600020905b81548152906001019060200180831161065857829003601f168201915b5050505050905090565b600061068a82610f53565b6106a7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ce82610974565b9050336001600160a01b03821614610707576106ea813361052d565b610707576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061076e82610f88565b9050836001600160a01b0316816001600160a01b0316146107a15760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107ee576107d1863361052d565b6107ee57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661081557604051633a954ecd60e21b815260040160405180910390fd5b801561082057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b83166108ab57600184016000818152600460205260409020546108a95760005481146108a95760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6108fc610ff1565b604051600090339047908381818185875af1925050503d806000811461093e576040519150601f19603f3d011682016040523d82523d6000602084013e610943565b606091505b505090508061095157600080fd5b50565b61096f83838360405180602001604052806000815250610c55565b505050565b60006105e782610f88565b610987610ff1565b6009879055600a869055600b859055600c849055600d8390556109ac600e83836113f4565b5050505050505050565b600e80546109c390611926565b80601f01602080910402602001604051908101604052809291908181526020018280546109ef90611926565b8015610a3c5780601f10610a1157610100808354040283529160200191610a3c565b820191906000526020600020905b815481529060010190602001808311610a1f57829003601f168201915b505050505081565b60006001600160a01b038216610a6d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610a9b610ff1565b610aa5600061104b565b565b6001600160a01b03841660009081526005602052604081205460c01c8411610ad157506000610b8a565b610b5883838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a546040516bffffffffffffffffffffffff1960608c901b166020820152601d60f91b6034820152603581018a905290925060550190506040516020818303038152906040528051906020012061109d565b610b6157600080fd5b6001600160a01b038516600090815260056020526040902054610b879060c01c85611977565b90505b949350505050565b610b9a610ff1565b600081118015610bc357506115b381610bb66000546000190190565b610bc0919061198e565b11155b610bcc57600080fd5b610bd682826110b3565b5050565b6060600380546105fc90611926565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c60848484610763565b6001600160a01b0383163b15610c9957610c7c848484846110cd565b610c99576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610caa82610f53565b610cc757604051630a14c4b560e41b815260040160405180910390fd5b6000610cd16111c1565b9050805160001415610cf25760405180602001604052806000815250610d1d565b80610cfc846111d0565b604051602001610d0d9291906119a6565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166105e7565b323314610d5b57600080fd5b600084118015610d8457506115b384610d776000546000190190565b610d81919061198e565b11155b610d8d57600080fd5b600b544210158015610da15750600c544211155b15610e1d576000610db433858585610aa7565b9050848114610dc257600080fd5b33600081815260056020526040902054610e179190610de590889060c01c6119d5565b6001600160a01b03909116600090815260056020526040902080546001600160c01b031660c09290921b919091179055565b50610e4e565b600d54421015610e2c57600080fd5b60095484610e3933610d24565b610e43919061198e565b1115610e4e57600080fd5b610c9933856110b3565b610e60610ff1565b828114610e6c57600080fd5b60005b83811015610ed157610ebf858583818110610e8c57610e8c6119f8565b9050602002016020810190610ea19190611669565b848484818110610eb357610eb36119f8565b90506020020135610b92565b80610ec981611a0e565b915050610e6f565b5050505050565b610ee0610ff1565b6001600160a01b038116610f4a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b6109518161104b565b600081600111158015610f67575060005482105b80156105e7575050600090815260046020526040902054600160e01b161590565b60008180600111610fd857600054811015610fd857600081815260046020526040902054600160e01b8116610fd6575b80610d1d575060001901600081815260046020526040902054610fb8565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610aa55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f41565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826110aa858461121e565b14949350505050565b610bd682826040518060200160405280600081525061126b565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611102903390899088908890600401611a29565b602060405180830381600087803b15801561111c57600080fd5b505af192505050801561114c575060408051601f3d908101601f1916820190925261114991810190611a66565b60015b6111a7573d80801561117a576040519150601f19603f3d011682016040523d82523d6000602084013e61117f565b606091505b50805161119f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b8a565b6060600e80546105fc90611926565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806112075761120c565b6111ea565b50819003601f19909101908152919050565b600081815b84518110156112635761124f82868381518110611242576112426119f8565b60200260200101516112d1565b91508061125b81611a0e565b915050611223565b509392505050565b61127583836112fd565b6001600160a01b0383163b1561096f576000548281035b61129f60008683806001019450866110cd565b6112bc576040516368d2bf6b60e11b815260040160405180910390fd5b81811061128c578160005414610ed157600080fd5b60008183106112ed576000828152602084905260409020610d1d565b5060009182526020526040902090565b6000548161131e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146113cd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611395565b50816113eb57604051622e076360e81b815260040160405180910390fd5b60005550505050565b82805461140090611926565b90600052602060002090601f0160209004810192826114225760008555611468565b82601f1061143b5782800160ff19823516178555611468565b82800160010185558215611468579182015b8281111561146857823582559160200191906001019061144d565b50611474929150611478565b5090565b5b808211156114745760008155600101611479565b6001600160e01b03198116811461095157600080fd5b6000602082840312156114b557600080fd5b8135610d1d8161148d565b60005b838110156114db5781810151838201526020016114c3565b83811115610c995750506000910152565b600081518084526115048160208601602086016114c0565b601f01601f19169290920160200192915050565b602081526000610d1d60208301846114ec565b60006020828403121561153d57600080fd5b5035919050565b80356001600160a01b038116811461155b57600080fd5b919050565b6000806040838503121561157357600080fd5b61157c83611544565b946020939093013593505050565b60008060006060848603121561159f57600080fd5b6115a884611544565b92506115b660208501611544565b9150604084013590509250925092565b600080600080600080600060c0888a0312156115e157600080fd5b873596506020880135955060408801359450606088013593506080880135925060a088013567ffffffffffffffff8082111561161c57600080fd5b818a0191508a601f83011261163057600080fd5b81358181111561163f57600080fd5b8b602082850101111561165157600080fd5b60208301945080935050505092959891949750929550565b60006020828403121561167b57600080fd5b610d1d82611544565b60008083601f84011261169657600080fd5b50813567ffffffffffffffff8111156116ae57600080fd5b6020830191508360208260051b85010111156116c957600080fd5b9250929050565b600080600080606085870312156116e657600080fd5b6116ef85611544565b935060208501359250604085013567ffffffffffffffff81111561171257600080fd5b61171e87828801611684565b95989497509550505050565b6000806040838503121561173d57600080fd5b61174683611544565b91506020830135801515811461175b57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561179257600080fd5b61179b85611544565b93506117a960208601611544565b925060408501359150606085013567ffffffffffffffff808211156117cd57600080fd5b818701915087601f8301126117e157600080fd5b8135818111156117f3576117f3611766565b604051601f8201601f19908116603f0116810190838211818310171561181b5761181b611766565b816040528281528a602084870101111561183457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806000806060858703121561186e57600080fd5b8435935060208501359250604085013567ffffffffffffffff81111561171257600080fd5b600080604083850312156118a657600080fd5b6118af83611544565b91506118bd60208401611544565b90509250929050565b600080600080604085870312156118dc57600080fd5b843567ffffffffffffffff808211156118f457600080fd5b61190088838901611684565b9096509450602087013591508082111561191957600080fd5b5061171e87828801611684565b600181811c9082168061193a57607f821691505b6020821081141561195b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561198957611989611961565b500390565b600082198211156119a1576119a1611961565b500190565b600083516119b88184602088016114c0565b8351908301906119cc8183602088016114c0565b01949350505050565b600067ffffffffffffffff8083168185168083038211156119cc576119cc611961565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611a2257611a22611961565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a5c908301846114ec565b9695505050505050565b600060208284031215611a7857600080fd5b8151610d1d8161148d56fea2646970667358221220d594c7c4289fb13f80d8061865a38345d0d5b9b0e2ba2cbb4d25c011cf50314c64736f6c63430008080033

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

052acebd4e7074540ab10b8cceb7dd87088af21a569f8af5696482686a0f6fea0000000000000000000000000000000000000000000000000000000064a658600000000000000000000000000000000000000000000000000000000064a7a9df0000000000000000000000000000000000000000000000000000000064a7a9e000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f7468656d6f6d656e74332e61692f6d6574612e6a736f6e23

-----Decoded View---------------
Arg [0] : allowListMerkleRoot_ (bytes32): 0x052acebd4e7074540ab10b8cceb7dd87088af21a569f8af5696482686a0f6fea
Arg [1] : allowListStartTime_ (uint256): 1688623200
Arg [2] : allowListEndTime_ (uint256): 1688709599
Arg [3] : publicStartTime_ (uint256): 1688709600
Arg [4] : baseURI_ (string): https://themoment3.ai/meta.json#

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 052acebd4e7074540ab10b8cceb7dd87088af21a569f8af5696482686a0f6fea
Arg [1] : 0000000000000000000000000000000000000000000000000000000064a65860
Arg [2] : 0000000000000000000000000000000000000000000000000000000064a7a9df
Arg [3] : 0000000000000000000000000000000000000000000000000000000064a7a9e0
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [6] : 68747470733a2f2f7468656d6f6d656e74332e61692f6d6574612e6a736f6e23


Deployed Bytecode Sourcemap

1124:3928:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:4;;;;;;;;;;-1:-1:-1;9155:630:4;;;;;:::i;:::-;;:::i;:::-;;;565:14:6;;558:22;540:41;;528:2;513:18;9155:630:4;;;;;;;;1217:42:3;;;;;;;;;;;;;;;;;;;738:25:6;;;726:2;711:18;1217:42:3;592:177:6;1344:31:3;;;;;;;;;;;;;;;;10039:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16360:214::-;;;;;;;;;;-1:-1:-1;16360:214:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:6;;;1856:51;;1844:2;1829:18;16360:214:4;1710:203:6;15812:398:4;;;;;;:::i;:::-;;:::i;:::-;;5894:317;;;;;;;;;;-1:-1:-1;4952:1:3;6164:12:4;5955:7;6148:13;:28;-1:-1:-1;;6148:46:4;5894:317;;19903:2764;;;;;;:::i;:::-;;:::i;1305:33:3:-;;;;;;;;;;;;;;;;4399:148;;;;;;;;;;;;;:::i;22758:187:4:-;;;;;;:::i;:::-;;:::i;1166:45:3:-;;;;;;;;;;;;1207:4;1166:45;;1381:30;;;;;;;;;;;;;;;;11391:150:4;;;;;;;;;;-1:-1:-1;11391:150:4;;;;;:::i;:::-;;:::i;3844:549:3:-;;;;;;;;;;-1:-1:-1;3844:549:3;;;;;:::i;:::-;;:::i;1417:21::-;;;;;;;;;;;;;:::i;7045:230:4:-;;;;;;;;;;-1:-1:-1;7045:230:4;;;;;:::i;:::-;;:::i;1824:101:0:-;;;;;;;;;;;;;:::i;2826:526:3:-;;;;;;;;;;-1:-1:-1;2826:526:3;;;;;:::i;:::-;;:::i;3358:177::-;;;;;;;;;;-1:-1:-1;3358:177:3;;;;;:::i;:::-;;:::i;1201:85:0:-;;;;;;;;;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1273:6:0;1201:85;;10208:102:4;;;;;;;;;;;;;:::i;1265:34:3:-;;;;;;;;;;;;;;;;16901:231:4;;;;;;;;;;-1:-1:-1;16901:231:4;;;;;:::i;:::-;;:::i;4553:91:3:-;;;;;;;;;;-1:-1:-1;4597:7:3;6546:13:4;-1:-1:-1;;6546:31:4;4553:91:3;;23526:396:4;;;;;;:::i;:::-;;:::i;10411:313::-;;;;;;;;;;-1:-1:-1;10411:313:4;;;;;:::i;:::-;;:::i;4650:109:3:-;;;;;;;;;;-1:-1:-1;4650:109:3;;;;;:::i;:::-;;:::i;1906:914::-;;;;;;:::i;:::-;;:::i;17282:162:4:-;;;;;;;;;;-1:-1:-1;17282:162:4;;;;;:::i;:::-;-1:-1:-1;;;;;17402:25:4;;;17379:4;17402:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17282:162;3541:297:3;;;;;;;;;;-1:-1:-1;3541:297:3;;;;;:::i;:::-;;:::i;2074:198:0:-;;;;;;;;;;-1:-1:-1;2074:198:0;;;;;:::i;:::-;;:::i;9155:630:4:-;9240:4;-1:-1:-1;;;;;;;;;9558:25:4;;;;:101;;-1:-1:-1;;;;;;;;;;9634:25:4;;;9558:101;:177;;;-1:-1:-1;;;;;;;;;;9710:25:4;;;9558:177;9539:196;9155:630;-1:-1:-1;;9155:630:4:o;10039:98::-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;-1:-1:-1;;;16485:34:4;;;;;;;;;;;16455:64;-1:-1:-1;16537:24:4;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;16537:30:4;;16360:214::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;-1:-1:-1;39523:10:4;-1:-1:-1;;;;;15947:28:4;;;15943:172;;15994:44;16011:5;39523:10;17282:162;:::i;15994:44::-;15989:126;;16065:35;;-1:-1:-1;;;16065:35:4;;;;;;;;;;;15989:126;16125:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;16125:35:4;-1:-1:-1;;;;;16125:35:4;;;;;;;;;16175:28;;16125:24;;16175:28;;;;;;;15890:320;15812:398;;:::o;19903:2764::-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;-1:-1:-1;;;;;20112:45:4;20128:19;-1:-1:-1;;;;;20112:45:4;;20108:86;;20166:28;;-1:-1:-1;;;20166:28:4;;;;;;;;;;;20108:86;20206:27;19036:24;;;:15;:24;;;;;19260:26;;39523:10;18673:30;;;-1:-1:-1;;;;;18370:28:4;;18651:20;;;18648:56;20389:179;;20481:43;20498:4;39523:10;17282:162;:::i;20481:43::-;20476:92;;20533:35;;-1:-1:-1;;;20533:35:4;;;;;;;;;;;20476:92;-1:-1:-1;;;;;20583:16:4;;20579:52;;20608:23;;-1:-1:-1;;;20608:23:4;;;;;;;;;;;20579:52;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;-1:-1:-1;;;;;21300:24:4;;;;;;;:18;:24;;;;;;21298:26;;-1:-1:-1;;21298:26:4;;;21368:22;;;;;;;;;21366:24;;-1:-1:-1;21366:24:4;;;14703:11;14678:23;14674:41;14661:63;-1:-1:-1;;;14661:63:4;21654:26;;;;:17;:26;;;;;:172;-1:-1:-1;;;21943:47:4;;21939:617;;22047:1;22037:11;;22015:19;22168:30;;;:17;:30;;;;;;22164:378;;22304:13;;22289:11;:28;22285:239;;22449:30;;;;:17;:30;;;;;:52;;;22285:239;21997:559;21939:617;22600:7;22596:2;-1:-1:-1;;;;;22581:27:4;22590:4;-1:-1:-1;;;;;22581:27:4;;;;;;;;;;;20030:2637;;;19903:2764;;;:::o;4399:148:3:-;1094:13:0;:11;:13::i;:::-;4465:49:3::1;::::0;4447:12:::1;::::0;4465:10:::1;::::0;4488:21:::1;::::0;4447:12;4465:49;4447:12;4465:49;4488:21;4465:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4446:68;;;4532:7;4524:16;;;::::0;::::1;;4436:111;4399:148::o:0;22758:187:4:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;11391:150::-;11463:7;11505:27;11524:7;11505:18;:27::i;3844:549:3:-;1094:13:0;:11;:13::i;:::-;4116:23:3::1;:50:::0;;;4176:19:::1;:42:::0;;;4228:18:::1;:40:::0;;;4278:16:::1;:36:::0;;;4324:15:::1;:34:::0;;;4368:18:::1;:7;4378:8:::0;;4368:18:::1;:::i;:::-;;3844:549:::0;;;;;;;:::o;1417:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7045:230:4:-;7117:7;-1:-1:-1;;;;;7140:19:4;;7136:60;;7168:28;;-1:-1:-1;;;7168:28:4;;;;;;;;;;;7136:60;-1:-1:-1;;;;;;7213:25:4;;;;;:18;:25;;;;;;1360:13;7213:55;;7045:230::o;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;2826:526:3:-;-1:-1:-1;;;;;7997:25:4;;2996:7:3;7997:25:4;;;:18;:25;;;;;;1725:3;7997:40;3019:37:3;;3015:51;;-1:-1:-1;3065:1:3;3058:8;;3015:51;3097:185;3133:20;;3097:185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3171:19:3;;3218:49;;-1:-1:-1;;9078:2:6;9074:15;;;9070:53;3218:49:3;;;9058:66:6;-1:-1:-1;;;9140:12:6;;;9133:25;9174:12;;;9167:28;;;3171:19:3;;-1:-1:-1;9211:12:6;;;-1:-1:-1;3218:49:3;;;;;;;;;;;;3208:60;;;;;;3097:18;:185::i;:::-;3076:216;;;;;;-1:-1:-1;;;;;7997:25:4;;7965:6;7997:25;;;:18;:25;;;;;;3309:36:3;;1725:3:4;7997:40;3309:20:3;:36;:::i;:::-;3302:43;;2826:526;;;;;;;:::o;3358:177::-;1094:13:0;:11;:13::i;:::-;3449:1:3::1;3440:6;:10;:54;;;;;1207:4;3470:6;3454:13;4597:7:::0;6546:13:4;-1:-1:-1;;6546:31:4;;4553:91:3;3454:13:::1;:22;;;;:::i;:::-;:40;;3440:54;3432:63;;;::::0;::::1;;3505:23;3515:4;3521:6;3505:9;:23::i;:::-;3358:177:::0;;:::o;10208:102:4:-;10264:13;10296:7;10289:14;;;;;:::i;16901:231::-;39523:10;16995:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;16995:49:4;;;;;;;;;;;;:60;;-1:-1:-1;;16995:60:4;;;;;;;;;;17070:55;;540:41:6;;;16995:49:4;;39523:10;17070:55;;513:18:6;17070:55:4;;;;;;;16901:231;;:::o;23526:396::-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;-1:-1:-1;;;;;23740:14:4;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;-1:-1:-1;;;23861:40:4;;;;;;;;;;;23773:143;23526:396;;;;:::o;10411:313::-;10484:13;10514:16;10522:7;10514;:16::i;:::-;10509:59;;10539:29;;-1:-1:-1;;;10539:29:4;;;;;;;;;;;10509:59;10579:21;10603:10;:8;:10::i;:::-;10579:34;;10636:7;10630:21;10655:1;10630:26;;:87;;;;;;;;;;;;;;;;;10683:7;10692:18;10702:7;10692:9;:18::i;:::-;10666:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10630:87;10623:94;10411:313;-1:-1:-1;;;10411:313:4:o;4650:109:3:-;-1:-1:-1;;;;;7440:25:4;;4707:7:3;7440:25:4;;;:18;:25;;1495:2;7440:25;;;;1360:13;7440:50;;7439:82;4733:19:3;7352:176:4;1906:914:3;5008:9;5021:10;5008:23;5000:32;;;;;;2092:1:::1;2083:6;:10;:54;;;;;1207:4;2113:6;2097:13;4597:7:::0;6546:13:4;-1:-1:-1;;6546:31:4;;4553:91:3;2097:13:::1;:22;;;;:::i;:::-;:40;;2083:54;2075:63;;;::::0;::::1;;2184:18;;2165:15;:37;;:88;;;;;2237:16;;2218:15;:35;;2165:88;2148:627;;;2278:29;2310:142;2352:10;2380:20;2418;;2310:24;:142::i;:::-;2278:174;;2499:6;2474:21;:31;2466:40;;;::::0;::::1;;2528:10;7965:6:4::0;7997:25;;;:18;:25;;;;;;2520:57:3::1;::::0;2528:10;2540:36:::1;::::0;2569:6;;1725:3:4;7997:40;2540:36:3::1;:::i;:::-;-1:-1:-1::0;;;;;8315:25:4;;;8298:14;8315:25;;;:18;:25;;;;;;;-1:-1:-1;;;;;8509:32:4;1725:3;8546:24;;;;8508:63;;;;8581:34;;8227:395;2520:57:3::1;2264:324;2148:627;;;2635:15;;2616;:34;;2608:43;;;::::0;::::1;;2727:23;;2717:6;2690:24;2703:10;2690:12;:24::i;:::-;:33;;;;:::i;:::-;:60;;2665:99;;;::::0;::::1;;2784:29;2794:10;2806:6;2784:9;:29::i;3541:297::-:0;1094:13:0;:11;:13::i;:::-;3679:36:3;;::::1;3671:45;;;::::0;::::1;;3731:9;3726:106;3746:19:::0;;::::1;3726:106;;;3786:35;3794:8;;3803:1;3794:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3807:10;;3818:1;3807:13;;;;;;;:::i;:::-;;;;;;;3786:7;:35::i;:::-;3767:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3726:106;;;;3541:297:::0;;;;:::o;2074:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:0;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:0;;10819:2:6;2154:73:0::1;::::0;::::1;10801:21:6::0;10858:2;10838:18;;;10831:30;10897:34;10877:18;;;10870:62;-1:-1:-1;;;10948:18:6;;;10941:36;10994:19;;2154:73:0::1;;;;;;;;;2237:28;2256:8;2237:18;:28::i;17693:277:4:-:0;17758:4;17812:7;4952:1:3;17793:26:4;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;-1:-1:-1;;17895:26:4;;;;:17;:26;;;;;;-1:-1:-1;;;17895:44:4;:49;;17693:277::o;12515:1249::-;12582:7;12616;;4952:1:3;12662:23:4;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:23;;;:17;:23;;;;;;-1:-1:-1;;;12855:24:4;;12851:831;;13510:111;13517:11;13510:111;;-1:-1:-1;;;13587:6:4;13569:25;;;;:17;:25;;;;;;13510:111;;12851:831;12729:971;12703:997;13726:31;;-1:-1:-1;;;13726:31:4;;;;;;;;;;;1359:130:0;1273:6;;-1:-1:-1;;;;;1273:6:0;39523:10:4;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;11226:2:6;1414:68:0;;;11208:21:6;;;11245:18;;;11238:30;11304:34;11284:18;;;11277:62;11356:18;;1414:68:0;11024:356:6;2426:187:0;2518:6;;;-1:-1:-1;;;;;2534:17:0;;;-1:-1:-1;;;;;;2534:17:0;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;1156:154:2:-;1247:4;1299;1270:25;1283:5;1290:4;1270:12;:25::i;:::-;:33;;1156:154;-1:-1:-1;;;;1156:154:2:o;33423:110:4:-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;25948:697::-;26126:88;;-1:-1:-1;;;26126:88:4;;26106:4;;-1:-1:-1;;;;;26126:45:4;;;;;:88;;39523:10;;26193:4;;26199:7;;26208:5;;26126:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26126:88:4;;;;;;;;-1:-1:-1;;26126:88:4;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26404:13:4;;26400:229;;26449:40;;-1:-1:-1;;;26449:40:4;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;-1:-1:-1;;;;;;26282:64:4;-1:-1:-1;;;26282:64:4;;-1:-1:-1;26275:71:4;;4765:98:3;4817:13;4849:7;4842:14;;;;;:::i;39637:1708:4:-;39702:17;40130:4;40123;40117:11;40113:22;40220:1;40214:4;40207:15;40293:4;40290:1;40286:12;40279:19;;;40373:1;40368:3;40361:14;40474:3;40708:5;40690:419;40755:1;40750:3;40746:11;40739:18;;40923:2;40917:4;40913:13;40909:2;40905:22;40900:3;40892:36;41015:2;41005:13;;;41070:25;;41088:5;;41070:25;40690:419;;;-1:-1:-1;41137:13:4;;;-1:-1:-1;;41250:14:4;;;41310:19;;;41250:14;39637:1708;-1:-1:-1;39637:1708:4:o;1934:290:2:-;2017:7;2059:4;2017:7;2073:116;2097:5;:12;2093:1;:16;2073:116;;;2145:33;2155:12;2169:5;2175:1;2169:8;;;;;;;;:::i;:::-;;;;;;;2145:9;:33::i;:::-;2130:48;-1:-1:-1;2111:3:2;;;;:::i;:::-;;;;2073:116;;;-1:-1:-1;2205:12:2;1934:290;-1:-1:-1;;;1934:290:2:o;32675:669:4:-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;-1:-1:-1;;;;;32859:14:4;;;:19;32855:473;;32898:11;32912:13;32959:14;;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;-1:-1:-1;;;33118:40:4;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;8975:147:2;9038:7;9068:1;9064;:5;:51;;9196:13;9287:15;;;9322:4;9315:15;;;9368:4;9352:21;;9064:51;;;-1:-1:-1;9196:13:2;9287:15;;;9322:4;9315:15;9368:4;9352:21;;;8975:147::o;27091:2902:4:-;27163:20;27186:13;27213;27209:44;;27235:18;;-1:-1:-1;;;27235:18:4;;;;;;;;;;;27209:44;-1:-1:-1;;;;;27728:22:4;;;;;;:18;:22;;;;1495:2;27728:22;;;:71;;27766:32;27754:45;;27728:71;;;28035:31;;;:17;:31;;;;;-1:-1:-1;15123:15:4;;15097:24;15093:46;14703:11;14678:23;14674:41;14671:52;14661:63;;28035:170;;28264:23;;;;28035:31;;27728:22;;29016:25;27728:22;;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29599:15;29461:339;;;-1:-1:-1;29831:13:4;29827:45;;29853:19;;-1:-1:-1;;;29853:19:4;;;;;;;;;;;29827:45;29887:13;:19;-1:-1:-1;22758:187:4;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:6;-1:-1:-1;;;;;;88:32:6;;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;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:6;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:6;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:6:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:6;;1525:180;-1:-1:-1;1525:180:6:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:6;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:6:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:935::-;2804:6;2812;2820;2828;2836;2844;2852;2905:3;2893:9;2884:7;2880:23;2876:33;2873:53;;;2922:1;2919;2912:12;2873:53;2958:9;2945:23;2935:33;;3015:2;3004:9;3000:18;2987:32;2977:42;;3066:2;3055:9;3051:18;3038:32;3028:42;;3117:2;3106:9;3102:18;3089:32;3079:42;;3168:3;3157:9;3153:19;3140:33;3130:43;;3224:3;3213:9;3209:19;3196:33;3248:18;3289:2;3281:6;3278:14;3275:34;;;3305:1;3302;3295:12;3275:34;3343:6;3332:9;3328:22;3318:32;;3388:7;3381:4;3377:2;3373:13;3369:27;3359:55;;3410:1;3407;3400:12;3359:55;3450:2;3437:16;3476:2;3468:6;3465:14;3462:34;;;3492:1;3489;3482:12;3462:34;3537:7;3532:2;3523:6;3519:2;3515:15;3511:24;3508:37;3505:57;;;3558:1;3555;3548:12;3505:57;3589:2;3585;3581:11;3571:21;;3611:6;3601:16;;;;;2688:935;;;;;;;;;;:::o;3628:186::-;3687:6;3740:2;3728:9;3719:7;3715:23;3711:32;3708:52;;;3756:1;3753;3746:12;3708:52;3779:29;3798:9;3779:29;:::i;3819:367::-;3882:8;3892:6;3946:3;3939:4;3931:6;3927:17;3923:27;3913:55;;3964:1;3961;3954:12;3913:55;-1:-1:-1;3987:20:6;;4030:18;4019:30;;4016:50;;;4062:1;4059;4052:12;4016:50;4099:4;4091:6;4087:17;4075:29;;4159:3;4152:4;4142:6;4139:1;4135:14;4127:6;4123:27;4119:38;4116:47;4113:67;;;4176:1;4173;4166:12;4113:67;3819:367;;;;;:::o;4191:579::-;4295:6;4303;4311;4319;4372:2;4360:9;4351:7;4347:23;4343:32;4340:52;;;4388:1;4385;4378:12;4340:52;4411:29;4430:9;4411:29;:::i;:::-;4401:39;;4487:2;4476:9;4472:18;4459:32;4449:42;;4542:2;4531:9;4527:18;4514:32;4569:18;4561:6;4558:30;4555:50;;;4601:1;4598;4591:12;4555:50;4640:70;4702:7;4693:6;4682:9;4678:22;4640:70;:::i;:::-;4191:579;;;;-1:-1:-1;4729:8:6;-1:-1:-1;;;;4191:579:6:o;4957:347::-;5022:6;5030;5083:2;5071:9;5062:7;5058:23;5054:32;5051:52;;;5099:1;5096;5089:12;5051:52;5122:29;5141:9;5122:29;:::i;:::-;5112:39;;5201:2;5190:9;5186:18;5173:32;5248:5;5241:13;5234:21;5227:5;5224:32;5214:60;;5270:1;5267;5260:12;5214:60;5293:5;5283:15;;;4957:347;;;;;:::o;5309:127::-;5370:10;5365:3;5361:20;5358:1;5351:31;5401:4;5398:1;5391:15;5425:4;5422:1;5415:15;5441:1138;5536:6;5544;5552;5560;5613:3;5601:9;5592:7;5588:23;5584:33;5581:53;;;5630:1;5627;5620:12;5581:53;5653:29;5672:9;5653:29;:::i;:::-;5643:39;;5701:38;5735:2;5724:9;5720:18;5701:38;:::i;:::-;5691:48;;5786:2;5775:9;5771:18;5758:32;5748:42;;5841:2;5830:9;5826:18;5813:32;5864:18;5905:2;5897:6;5894:14;5891:34;;;5921:1;5918;5911:12;5891:34;5959:6;5948:9;5944:22;5934:32;;6004:7;5997:4;5993:2;5989:13;5985:27;5975:55;;6026:1;6023;6016:12;5975:55;6062:2;6049:16;6084:2;6080;6077:10;6074:36;;;6090:18;;:::i;:::-;6165:2;6159:9;6133:2;6219:13;;-1:-1:-1;;6215:22:6;;;6239:2;6211:31;6207:40;6195:53;;;6263:18;;;6283:22;;;6260:46;6257:72;;;6309:18;;:::i;:::-;6349:10;6345:2;6338:22;6384:2;6376:6;6369:18;6424:7;6419:2;6414;6410;6406:11;6402:20;6399:33;6396:53;;;6445:1;6442;6435:12;6396:53;6501:2;6496;6492;6488:11;6483:2;6475:6;6471:15;6458:46;6546:1;6541:2;6536;6528:6;6524:15;6520:24;6513:35;6567:6;6557:16;;;;;;;5441:1138;;;;;;;:::o;6584:573::-;6688:6;6696;6704;6712;6765:2;6753:9;6744:7;6740:23;6736:32;6733:52;;;6781:1;6778;6771:12;6733:52;6817:9;6804:23;6794:33;;6874:2;6863:9;6859:18;6846:32;6836:42;;6929:2;6918:9;6914:18;6901:32;6956:18;6948:6;6945:30;6942:50;;;6988:1;6985;6978:12;7162:260;7230:6;7238;7291:2;7279:9;7270:7;7266:23;7262:32;7259:52;;;7307:1;7304;7297:12;7259:52;7330:29;7349:9;7330:29;:::i;:::-;7320:39;;7378:38;7412:2;7401:9;7397:18;7378:38;:::i;:::-;7368:48;;7162:260;;;;;:::o;7427:773::-;7549:6;7557;7565;7573;7626:2;7614:9;7605:7;7601:23;7597:32;7594:52;;;7642:1;7639;7632:12;7594:52;7682:9;7669:23;7711:18;7752:2;7744:6;7741:14;7738:34;;;7768:1;7765;7758:12;7738:34;7807:70;7869:7;7860:6;7849:9;7845:22;7807:70;:::i;:::-;7896:8;;-1:-1:-1;7781:96:6;-1:-1:-1;7984:2:6;7969:18;;7956:32;;-1:-1:-1;8000:16:6;;;7997:36;;;8029:1;8026;8019:12;7997:36;;8068:72;8132:7;8121:8;8110:9;8106:24;8068:72;:::i;8205:380::-;8284:1;8280:12;;;;8327;;;8348:61;;8402:4;8394:6;8390:17;8380:27;;8348:61;8455:2;8447:6;8444:14;8424:18;8421:38;8418:161;;;8501:10;8496:3;8492:20;8489:1;8482:31;8536:4;8533:1;8526:15;8564:4;8561:1;8554:15;8418:161;;8205:380;;;:::o;9234:127::-;9295:10;9290:3;9286:20;9283:1;9276:31;9326:4;9323:1;9316:15;9350:4;9347:1;9340:15;9366:125;9406:4;9434:1;9431;9428:8;9425:34;;;9439:18;;:::i;:::-;-1:-1:-1;9476:9:6;;9366:125::o;9496:128::-;9536:3;9567:1;9563:6;9560:1;9557:13;9554:39;;;9573:18;;:::i;:::-;-1:-1:-1;9609:9:6;;9496:128::o;9629:470::-;9808:3;9846:6;9840:13;9862:53;9908:6;9903:3;9896:4;9888:6;9884:17;9862:53;:::i;:::-;9978:13;;9937:16;;;;10000:57;9978:13;9937:16;10034:4;10022:17;;10000:57;:::i;:::-;10073:20;;9629:470;-1:-1:-1;;;;9629:470:6:o;10104:236::-;10143:3;10171:18;10216:2;10213:1;10209:10;10246:2;10243:1;10239:10;10277:3;10273:2;10269:12;10264:3;10261:21;10258:47;;;10285:18;;:::i;10345:127::-;10406:10;10401:3;10397:20;10394:1;10387:31;10437:4;10434:1;10427:15;10461:4;10458:1;10451:15;10477:135;10516:3;-1:-1:-1;;10537:17:6;;10534:43;;;10557:18;;:::i;:::-;-1:-1:-1;10604:1:6;10593:13;;10477:135::o;11385:489::-;-1:-1:-1;;;;;11654:15:6;;;11636:34;;11706:15;;11701:2;11686:18;;11679:43;11753:2;11738:18;;11731:34;;;11801:3;11796:2;11781:18;;11774:31;;;11579:4;;11822:46;;11848:19;;11840:6;11822:46;:::i;:::-;11814:54;11385:489;-1:-1:-1;;;;;;11385:489:6:o;11879:249::-;11948:6;12001:2;11989:9;11980:7;11976:23;11972:32;11969:52;;;12017:1;12014;12007:12;11969:52;12049:9;12043:16;12068:30;12092:5;12068:30;:::i

Swarm Source

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