ETH Price: $3,335.61 (-3.74%)
Gas: 3 Gwei

Token

The InkMoods. (INKMOODS)
 

Overview

Max Total Supply

346 INKMOODS

Holders

49

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*老兵不死只是凋零.eth
Balance
12 INKMOODS
0xe9d6b82db4c62a51d19314f52c0a4c07a61e04ac
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:
TheInkMoods

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : theinkmoods.sol
// The InkMoods.
// Proof of huamn and proof of work

// Website: https://moods.ink
// Twitter: https://twitter.com/TheInkMoods

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "vrfV2.sol";

interface Verifier {
    function verify(bytes memory secret) external returns (bool, bytes memory);
}

contract TheInkMoods is Ownable, ERC721A, VRFv2DirectFundingConsumer {
    struct Settings {
        uint256 maxSupply;
        uint256 maxTotalMint;
        uint256 maxPerMint;
        uint256 price;
        uint256 phase;
        uint256 freeSlots;
        uint256 lockedSec;
        uint256 lockedAt;
    }

    bool unlockAll = false;
    string _tokenURI;
    Settings public settings;
    Verifier verifier;
    mapping(bytes => bool) nUsed;
    mapping(uint256 => uint256) public mintedAt;

    constructor() Ownable(msg.sender) ERC721A("The InkMoods.", "INKMOODS") {
        settings = Settings(10000, 12, 3, 0.0069 ether, 0, 600, 30 seconds, 1735574400);
    }

    function prove(bytes memory secret, uint256 amount) public payable {
        (bool isHuman, bytes memory n) = verifier.verify(secret);

        uint256 pay = settings.price * amount;
        if (settings.freeSlots > 0) {
            pay -= settings.price;
            settings.freeSlots -= 1;
        }

        require(
            _numberMinted(msg.sender) + amount <= settings.maxTotalMint,
            "Exceeds the maximum minting quantity."
        );
        require(
            totalSupply() + amount <= settings.maxSupply,
            "Exceeds the maximum supply."
        );
        require(pay <= msg.value, "The sent ETH is insufficient.");
        require(
            amount <= settings.maxPerMint,
            "Exceeds the maximum single minting quantity."
        );
        require(tx.origin == msg.sender, "Invalid sender.");
        require(settings.phase >= 2, "Not in the minting phase.");
        require(!nUsed[n], "Invalid secret.");
        require(isHuman, "Not a human.");

        nUsed[n] = true;

        _safeMint(msg.sender, amount);
    }

    function toEarlyBirds(address[] calldata _addresses) external onlyOwner {
        require(
            totalSupply() + _addresses.length <= settings.maxSupply,
            "Exceeds the maximum supply."
        );
        for (uint256 i = 0; i < _addresses.length; ) {
            _safeMint(_addresses[i], 1);

            unchecked {
                ++i;
            }
        }
    }

    function devMint(uint256 amount) external onlyOwner {
        require(
            totalSupply() + amount <= settings.maxSupply,
            "Exceeds the maximum supply."
        );
        _safeMint(msg.sender, amount);
    }

    function tokenURI(uint256 _id)
        public
        view
        override(ERC721A)
        returns (string memory)
    {
        require(_id > 0 && _id <= totalSupply(), "Invalid token ID.");

        return string(abi.encodePacked(_tokenURI, shuffleId(_id)));
    }

    function shuffleId(uint256 _id) private view returns (string memory) {
        uint256 m = settings.maxSupply;
        uint256[] memory t = new uint256[](m + 1);

        for (uint256 i = 1; i <= m; i += 1) {
            t[i] = i;
        }

        for (uint256 i = 1; i <= m; i += 1) {
            uint256 j = (uint256(keccak256(abi.encode(hash[0], i))) % (m)) + 1;

            (t[i], t[j]) = (t[j], t[i]);
        }

        return Strings.toString(t[_id]);
    }

    function updateSettings(
        uint256 _maxSupply,
        uint256 _maxTotalMint,
        uint256 _maxPermint,
        uint256 _price
    ) external onlyOwner {
        settings = Settings(
            _maxSupply,
            _maxTotalMint,
            _maxPermint,
            _price,
            settings.phase,
            settings.freeSlots,
            settings.lockedSec,
            settings.lockedAt
        );
    }

    function updatePhase(uint256 _phase) external onlyOwner {
        settings.phase = _phase;
    }

    function updateFreeSlots(uint256 _slots) external onlyOwner {
        settings.freeSlots = _slots;
    }

    function updateLockedSec(uint256 _sec) external onlyOwner {
        settings.lockedSec = _sec;
    }

    function updateLockedAt(uint256 _timestamp) external onlyOwner {
        settings.lockedAt = _timestamp;
    }

    function updateTokenURI(string calldata _uri) external onlyOwner {
        _tokenURI = _uri;
    }

    function updateVerifier(address _address) external onlyOwner {
        verifier = Verifier(_address);
    }

    function unlock() external onlyOwner {
        unlockAll = true;
    }

    function numberMinted(address _address) external view returns (uint256) {
        return _numberMinted(_address);
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual override(ERC721A) {
        if (
            totalSupply() != settings.maxSupply &&
            settings.phase == 2 &&
            from != address(0) &&
            !unlockAll
        ) {           
            uint256 unlockTM = getUnlockTM(startTokenId);
            require(unlockTM < block.timestamp, "Locked");
        }
    }

    /// Locking token logic.
    function getUnlockTM(uint256 tokenId) public view returns (uint256) {
        uint256 intervalIndex = tokenId * 1000;
        uint256 coefficient = (settings.maxSupply * 1000 - intervalIndex);
        uint256 baseLockedTime = (settings.lockedSec * coefficient) / 83333;
        return (settings.lockedAt + baseLockedTime);
    }

    function nextTokenId() public view returns (uint256) {
        return _nextTokenId();
    }

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

    function requestVRF() external onlyOwner {
        _requestRandomWords();
    }

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

    function withdrawLink() external onlyOwner {
        _withdrawLink();
    }

    function ownedTokens(address owner)
        public
        view
        virtual
        returns (uint256[] memory)
    {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (
                uint256 i = _startTokenId();
                tokenIdsIdx != tokenIdsLength;
                ++i
            ) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 2 of 12 : vrfV2.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@chainlink/contracts/src/v0.8/VRFV2WrapperConsumerBase.sol";

contract VRFv2DirectFundingConsumer is VRFV2WrapperConsumerBase {
    event RequestSent(uint256 requestId, uint32 numWords);
    event RequestFulfilled(
        uint256 requestId,
        uint256[] randomWords,
        uint256 payment
    );

    struct RequestStatus {
        uint256 paid;
        bool fulfilled;
        uint256[] randomWords;
    }
    mapping(uint256 => RequestStatus) internal s_requests;

    uint256[] internal requestIds;
    uint256[] internal hash;
    bool hashRequested;

    uint32 callbackGasLimit = 1000000;
    uint16 requestConfirmations = 3;
    uint32 numWords = 1;
    address linkAddress = 0x514910771AF9Ca656af840dff83E8264EcF986CA;
    address wrapperAddress = 0x5A861794B927983406fCE1D062e00b9368d97Df6;

    constructor() VRFV2WrapperConsumerBase(linkAddress, wrapperAddress) {}

    function _requestRandomWords() internal returns (uint256 requestId) {
        requestId = requestRandomness(
            callbackGasLimit,
            requestConfirmations,
            numWords
        );
        s_requests[requestId] = RequestStatus({
            paid: VRF_V2_WRAPPER.calculateRequestPrice(callbackGasLimit),
            randomWords: new uint256[](0),
            fulfilled: false
        });
        requestIds.push(requestId);
        emit RequestSent(requestId, numWords);
        return requestId;
    }

    function fulfillRandomWords(
        uint256 _requestId,
        uint256[] memory _randomWords
    ) internal override {
        require(s_requests[_requestId].paid > 0, "request not found");
        s_requests[_requestId].fulfilled = true;
        s_requests[_requestId].randomWords = _randomWords;
        hash = _randomWords;
        hashRequested = true;
        emit RequestFulfilled(
            _requestId,
            _randomWords,
            s_requests[_requestId].paid
        );
    }

    function _withdrawLink() internal {
        LinkTokenInterface link = LinkTokenInterface(linkAddress);
        require(
            link.transfer(msg.sender, link.balanceOf(address(this))),
            "Unable to transfer"
        );
    }
}

File 3 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;

import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";

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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 4 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 5 of 12 : 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 12 : VRFV2WrapperConsumerBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./interfaces/LinkTokenInterface.sol";
import "./interfaces/VRFV2WrapperInterface.sol";

/** *******************************************************************************
 * @notice Interface for contracts using VRF randomness through the VRF V2 wrapper
 * ********************************************************************************
 * @dev PURPOSE
 *
 * @dev Create VRF V2 requests without the need for subscription management. Rather than creating
 * @dev and funding a VRF V2 subscription, a user can use this wrapper to create one off requests,
 * @dev paying up front rather than at fulfillment.
 *
 * @dev Since the price is determined using the gas price of the request transaction rather than
 * @dev the fulfillment transaction, the wrapper charges an additional premium on callback gas
 * @dev usage, in addition to some extra overhead costs associated with the VRFV2Wrapper contract.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFV2WrapperConsumerBase. The consumer must be funded
 * @dev with enough LINK to make the request, otherwise requests will revert. To request randomness,
 * @dev call the 'requestRandomness' function with the desired VRF parameters. This function handles
 * @dev paying for the request based on the current pricing.
 *
 * @dev Consumers must implement the fullfillRandomWords function, which will be called during
 * @dev fulfillment with the randomness result.
 */
abstract contract VRFV2WrapperConsumerBase {
  LinkTokenInterface internal immutable LINK;
  VRFV2WrapperInterface internal immutable VRF_V2_WRAPPER;

  /**
   * @param _link is the address of LinkToken
   * @param _vrfV2Wrapper is the address of the VRFV2Wrapper contract
   */
  constructor(address _link, address _vrfV2Wrapper) {
    LINK = LinkTokenInterface(_link);
    VRF_V2_WRAPPER = VRFV2WrapperInterface(_vrfV2Wrapper);
  }

  /**
   * @dev Requests randomness from the VRF V2 wrapper.
   *
   * @param _callbackGasLimit is the gas limit that should be used when calling the consumer's
   *        fulfillRandomWords function.
   * @param _requestConfirmations is the number of confirmations to wait before fulfilling the
   *        request. A higher number of confirmations increases security by reducing the likelihood
   *        that a chain re-org changes a published randomness outcome.
   * @param _numWords is the number of random words to request.
   *
   * @return requestId is the VRF V2 request ID of the newly created randomness request.
   */
  function requestRandomness(
    uint32 _callbackGasLimit,
    uint16 _requestConfirmations,
    uint32 _numWords
  ) internal returns (uint256 requestId) {
    LINK.transferAndCall(
      address(VRF_V2_WRAPPER),
      VRF_V2_WRAPPER.calculateRequestPrice(_callbackGasLimit),
      abi.encode(_callbackGasLimit, _requestConfirmations, _numWords)
    );
    return VRF_V2_WRAPPER.lastRequestId();
  }

  /**
   * @notice fulfillRandomWords handles the VRF V2 wrapper response. The consuming contract must
   * @notice implement it.
   *
   * @param _requestId is the VRF V2 request ID.
   * @param _randomWords is the randomness result.
   */
  function fulfillRandomWords(uint256 _requestId, uint256[] memory _randomWords) internal virtual;

  function rawFulfillRandomWords(uint256 _requestId, uint256[] memory _randomWords) external {
    require(msg.sender == address(VRF_V2_WRAPPER), "only VRF V2 wrapper can fulfill");
    fulfillRandomWords(_requestId, _randomWords);
  }
}

File 7 of 12 : 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);
}

File 8 of 12 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 9 of 12 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 10 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 11 of 12 : VRFV2WrapperInterface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface VRFV2WrapperInterface {
  /**
   * @return the request ID of the most recent VRF V2 request made by this wrapper. This should only
   * be relied option within the same transaction that the request was made.
   */
  function lastRequestId() external view returns (uint256);

  /**
   * @notice Calculates the price of a VRF request with the given callbackGasLimit at the current
   * @notice block.
   *
   * @dev This function relies on the transaction gas price which is not automatically set during
   * @dev simulation. To estimate the price at a specific gas price, use the estimatePrice function.
   *
   * @param _callbackGasLimit is the gas limit used to estimate the price.
   */
  function calculateRequestPrice(uint32 _callbackGasLimit) external view returns (uint256);

  /**
   * @notice Estimates the price of a VRF request with a specific gas limit and gas price.
   *
   * @dev This is a convenience function that can be called in simulation to better understand
   * @dev pricing.
   *
   * @param _callbackGasLimit is the gas limit used to estimate the price.
   * @param _requestGasPriceWei is the gas price in wei used for the estimation.
   */
  function estimateRequestPrice(uint32 _callbackGasLimit, uint256 _requestGasPriceWei) external view returns (uint256);
}

File 12 of 12 : LinkTokenInterface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface LinkTokenInterface {
  function allowance(address owner, address spender) external view returns (uint256 remaining);

  function approve(address spender, uint256 value) external returns (bool success);

  function balanceOf(address owner) external view returns (uint256 balance);

  function decimals() external view returns (uint8 decimalPlaces);

  function decreaseApproval(address spender, uint256 addedValue) external returns (bool success);

  function increaseApproval(address spender, uint256 subtractedValue) external;

  function name() external view returns (string memory tokenName);

  function symbol() external view returns (string memory tokenSymbol);

  function totalSupply() external view returns (uint256 totalTokensIssued);

  function transfer(address to, uint256 value) external returns (bool success);

  function transferAndCall(
    address to,
    uint256 value,
    bytes calldata data
  ) external returns (bool success);

  function transferFrom(
    address from,
    address to,
    uint256 value
  ) external returns (bool success);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":false,"internalType":"uint256","name":"requestId","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"randomWords","type":"uint256[]"},{"indexed":false,"internalType":"uint256","name":"payment","type":"uint256"}],"name":"RequestFulfilled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"requestId","type":"uint256"},{"indexed":false,"internalType":"uint32","name":"numWords","type":"uint32"}],"name":"RequestSent","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":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getUnlockTM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"","type":"uint256"}],"name":"mintedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ownedTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"secret","type":"bytes"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"prove","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_requestId","type":"uint256"},{"internalType":"uint256[]","name":"_randomWords","type":"uint256[]"}],"name":"rawFulfillRandomWords","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestVRF","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":[],"name":"settings","outputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"maxTotalMint","type":"uint256"},{"internalType":"uint256","name":"maxPerMint","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"phase","type":"uint256"},{"internalType":"uint256","name":"freeSlots","type":"uint256"},{"internalType":"uint256","name":"lockedSec","type":"uint256"},{"internalType":"uint256","name":"lockedAt","type":"uint256"}],"stateMutability":"view","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":"address[]","name":"_addresses","type":"address[]"}],"name":"toEarlyBirds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_slots","type":"uint256"}],"name":"updateFreeSlots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"updateLockedAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sec","type":"uint256"}],"name":"updateLockedSec","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_phase","type":"uint256"}],"name":"updatePhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxTotalMint","type":"uint256"},{"internalType":"uint256","name":"_maxPermint","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"updateSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"updateTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"updateVerifier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawLink","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600c80547e514910771af9ca656af840dff83e8264ecf986ca000000010003000f4240007fff000000000000000000000000000000000000000000000000000000000000ff909116179055600d80546001600160a81b031916735a861794b927983406fce1d062e00b9368d97df617905534801562000081575f80fd5b50600c54600d80546040805180820182529283526c2a34329024b735a6b7b7b2399760991b60208085019190915281518083019092526008825267494e4b4d4f4f445360c01b908201526b0100000000000000000000009093046001600160a01b03908116939116919033806200011157604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6200011c81620001df565b5060036200012b8382620002cc565b5060046200013a8282620002cc565b506001805550506001600160a01b039182166080908152911660a09081526040805161010081018252612710808252600c6020830181905260039383018490526618838370f34000606084018190525f968401879052610258958401869052601e60c08501819052636772c38060e0909501859052600f9390935560109190915560119390935560129290925560139390935560149190915560155560165562000398565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200025757607f821691505b6020821081036200027657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620002c757805f5260205f20601f840160051c81016020851015620002a35750805b601f840160051c820191505b81811015620002c4575f8155600101620002af565b50505b505050565b81516001600160401b03811115620002e857620002e86200022e565b6200030081620002f9845462000242565b846200027c565b602080601f83116001811462000336575f84156200031e5750858301515b5f19600386901b1c1916600185901b17855562000390565b5f85815260208120601f198616915b82811015620003665788860151825594840194600190910190840162000345565b50858210156200038457878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b60805160a051612b66620003cf5f395f81816108a30152818161176201528181611de30152611ee701525f611db90152612b665ff3fe60806040526004361061021d575f3560e01c8063715018a61161011e578063a22cb465116100a8578063dc33e6811161006d578063dc33e681146105d5578063e06174e4146105f4578063e985e9c514610661578063f1b0aa1514610680578063f2fde38b146106ab575f80fd5b8063a22cb46514610544578063a69df4b514610563578063b12ab40f14610577578063b88d4fde146105a3578063c87b56dd146105b6575f80fd5b80638da5cb5b116100ee5780638da5cb5b146104c25780638dc654a2146104de57806395d89b41146104f257806397fc007c1461050657806398cd615314610525575f80fd5b8063715018a61461045c578063715d48001461047057806375794a3c1461048f5780637e932014146104a3575f80fd5b806336cfeefe116101aa5780636352211e1161016f5780636352211e146103d857806363da45ab146103f757806366805793146104165780636a385c041461042957806370a082311461043d575f80fd5b806336cfeefe14610354578063375a069a146103735780633ccfd60b1461039257806341cabeaf146103a657806342842e0e146103c5575f80fd5b806318160ddd116101f057806318160ddd146102c25780631fe543e3146102e457806323b872dd14610303578063299b81d3146103165780632e81d4da14610335575f80fd5b806301ffc9a71461022157806306fdde0314610255578063081812fc14610276578063095ea7b3146102ad575b5f80fd5b34801561022c575f80fd5b5061024061023b366004612242565b6106ca565b60405190151581526020015b60405180910390f35b348015610260575f80fd5b5061026961071b565b60405161024c91906122aa565b348015610281575f80fd5b506102956102903660046122bc565b6107ab565b6040516001600160a01b03909116815260200161024c565b6102c06102bb3660046122ee565b6107ed565b005b3480156102cd575f80fd5b506102d661088b565b60405190815260200161024c565b3480156102ef575f80fd5b506102c06102fe36600461235a565b610898565b6102c0610311366004612406565b610923565b348015610321575f80fd5b506102c06103303660046122bc565b610ac0565b348015610340575f80fd5b506102c061034f36600461243f565b610acd565b34801561035f575f80fd5b506102d661036e3660046122bc565b610b51565b34801561037e575f80fd5b506102c061038d3660046122bc565b610bbb565b34801561039d575f80fd5b506102c0610c04565b3480156103b1575f80fd5b506102c06103c03660046122bc565b610c7a565b6102c06103d3366004612406565b610c87565b3480156103e3575f80fd5b506102956103f23660046122bc565b610ca1565b348015610402575f80fd5b506102c06104113660046122bc565b610cab565b6102c0610424366004612525565b610cb8565b348015610434575f80fd5b506102c061105f565b348015610448575f80fd5b506102d6610457366004612566565b61106f565b348015610467575f80fd5b506102c06110bb565b34801561047b575f80fd5b506102c061048a36600461257f565b6110ce565b34801561049a575f80fd5b506102d661112d565b3480156104ae575f80fd5b506102c06104bd3660046122bc565b61113c565b3480156104cd575f80fd5b505f546001600160a01b0316610295565b3480156104e9575f80fd5b506102c0611149565b3480156104fd575f80fd5b50610269611159565b348015610511575f80fd5b506102c0610520366004612566565b611168565b348015610530575f80fd5b506102c061053f3660046125ae565b611192565b34801561054f575f80fd5b506102c061055e366004612614565b6111a7565b34801561056e575f80fd5b506102c0611212565b348015610582575f80fd5b50610596610591366004612566565b61122f565b60405161024c9190612683565b6102c06105b1366004612695565b611333565b3480156105c1575f80fd5b506102696105d03660046122bc565b61137d565b3480156105e0575f80fd5b506102d66105ef366004612566565b611407565b3480156105ff575f80fd5b50600f54601054601154601254601354601454601554601654610626979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e08201526101000161024c565b34801561066c575f80fd5b5061024061067b3660046126f8565b611430565b34801561068b575f80fd5b506102d661069a3660046122bc565b60196020525f908152604090205481565b3480156106b6575f80fd5b506102c06106c5366004612566565b61145d565b5f6301ffc9a760e01b6001600160e01b0319831614806106fa57506380ac58cd60e01b6001600160e01b03198316145b806107155750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461072a90612729565b80601f016020809104026020016040519081016040528092919081815260200182805461075690612729565b80156107a15780601f10610778576101008083540402835291602001916107a1565b820191905f5260205f20905b81548152906001019060200180831161078457829003601f168201915b5050505050905090565b5f6107b582611497565b6107d2576040516333d1c03960e21b815260040160405180910390fd5b505f908152600760205260409020546001600160a01b031690565b5f6107f782610ca1565b9050336001600160a01b03821614610830576108138133611430565b610830576040516367d9dca160e11b815260040160405180910390fd5b5f8281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600254600154035f190190565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146109155760405162461bcd60e51b815260206004820152601f60248201527f6f6e6c792056524620563220777261707065722063616e2066756c66696c6c0060448201526064015b60405180910390fd5b61091f82826114ca565b5050565b5f61092d826115bb565b9050836001600160a01b0316816001600160a01b0316146109605760405162a1148160e81b815260040160405180910390fd5b5f8281526007602052604090208054338082146001600160a01b038816909114176109ac5761098f8633611430565b6109ac57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109d357604051633a954ecd60e21b815260040160405180910390fd5b6109e0868686600161162c565b80156109ea575f82555b6001600160a01b038681165f9081526006602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260056020526040812091909155600160e11b84169003610a7757600184015f818152600560205260408120549003610a75576001548114610a75575f8181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610ac86116ba565b601355565b610ad56116ba565b600f5481610ae161088b565b610aeb9190612775565b1115610b095760405162461bcd60e51b815260040161090c90612788565b5f5b81811015610b4c57610b44838383818110610b2857610b286127bf565b9050602002016020810190610b3d9190612566565b60016116e6565b600101610b0b565b505050565b5f80610b5f836103e86127d3565b90505f81600f5f01546103e8610b7591906127d3565b610b7f91906127ea565b90505f6201458582600f60060154610b9791906127d3565b610ba19190612811565b601654909150610bb2908290612775565b95945050505050565b610bc36116ba565b600f5481610bcf61088b565b610bd99190612775565b1115610bf75760405162461bcd60e51b815260040161090c90612788565b610c0133826116e6565b50565b610c0c6116ba565b6040515f90339047908381818185875af1925050503d805f8114610c4b576040519150601f19603f3d011682016040523d82523d5f602084013e610c50565b606091505b5050905080610c015760405162461bcd60e51b8152602060048201525f602482015260440161090c565b610c826116ba565b601455565b610b4c83838360405180602001604052805f815250611333565b5f610715826115bb565b610cb36116ba565b601655565b60175460405163473b057f60e11b81525f9182916001600160a01b0390911690638e760afe90610cec9087906004016122aa565b5f604051808303815f875af1158015610d07573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d2e9190810190612824565b915091505f83600f60030154610d4491906127d3565b60145490915015610d7957601254610d5c90826127ea565b90506001600f6005015f828254610d7391906127ea565b90915550505b601054335f90815260066020526040908190205486911c6001600160401b0316610da39190612775565b1115610dff5760405162461bcd60e51b815260206004820152602560248201527f4578636565647320746865206d6178696d756d206d696e74696e67207175616e6044820152643a34ba3c9760d91b606482015260840161090c565b600f5484610e0b61088b565b610e159190612775565b1115610e335760405162461bcd60e51b815260040161090c90612788565b34811115610e835760405162461bcd60e51b815260206004820152601d60248201527f5468652073656e742045544820697320696e73756666696369656e742e000000604482015260640161090c565b601154841115610eea5760405162461bcd60e51b815260206004820152602c60248201527f4578636565647320746865206d6178696d756d2073696e676c65206d696e746960448201526b37339038bab0b73a34ba3c9760a11b606482015260840161090c565b323314610f2b5760405162461bcd60e51b815260206004820152600f60248201526e24b73b30b634b21039b2b73232b91760891b604482015260640161090c565b60135460021115610f7e5760405162461bcd60e51b815260206004820152601960248201527f4e6f7420696e20746865206d696e74696e672070686173652e00000000000000604482015260640161090c565b601882604051610f8e91906128ab565b9081526040519081900360200190205460ff1615610fe05760405162461bcd60e51b815260206004820152600f60248201526e24b73b30b634b21039b2b1b932ba1760891b604482015260640161090c565b8261101c5760405162461bcd60e51b815260206004820152600c60248201526b2737ba103090343ab6b0b71760a11b604482015260640161090c565b600160188360405161102e91906128ab565b908152604051908190036020019020805491151560ff1990921691909117905561105833856116e6565b5050505050565b6110676116ba565b610c016116ff565b5f6001600160a01b038216611097576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f908152600660205260409020546001600160401b031690565b6110c36116ba565b6110cc5f6118ae565b565b6110d66116ba565b60408051610100810182528581526020810185905290810183905260608101829052601354608082015260145460a082015260155460c082015260165460e090910152600f93909355601091909155601155601255565b5f61113760015490565b905090565b6111446116ba565b601555565b6111516116ba565b6110cc6118fd565b60606004805461072a90612729565b6111706116ba565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b61119a6116ba565b600e610b4c82848361290a565b335f8181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61121a6116ba565b600d805460ff60a01b1916600160a01b179055565b60605f805f61123d8561106f565b90505f816001600160401b0381111561125857611258612316565b604051908082528060200260200182016040528015611281578160200160208202803683370190505b5090506112ad604080516080810182525f80825260208201819052918101829052606081019190915290565b60015b838614611327576112c081611a26565b9150816040015161131f5781516001600160a01b0316156112e057815194505b876001600160a01b0316856001600160a01b03160361131f5780838780600101985081518110611312576113126127bf565b6020026020010181815250505b6001016112b0565b50909695505050505050565b61133e848484610923565b6001600160a01b0383163b156113775761135a84848484611aa2565b611377576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60605f82118015611395575061139161088b565b8211155b6113d55760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b2103a37b5b2b71024a21760791b604482015260640161090c565b600e6113e083611b8a565b6040516020016113f19291906129c3565b6040516020818303038152906040529050919050565b6001600160a01b0381165f90815260066020526040808220546001600160401b03911c16610715565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205460ff1690565b6114656116ba565b6001600160a01b03811661148e57604051631e4fbdf760e01b81525f600482015260240161090c565b610c01816118ae565b5f816001111580156114aa575060015482105b80156107155750505f90815260056020526040902054600160e01b161590565b5f828152600960205260409020546115185760405162461bcd60e51b81526020600482015260116024820152701c995c5d595cdd081b9bdd08199bdd5b99607a1b604482015260640161090c565b5f8281526009602090815260409091206001818101805460ff19169091179055825161154c926002909201918401906121d0565b50805161156090600b9060208401906121d0565b50600c805460ff191660011790555f82815260096020526040908190205490517f147eb1ff0c82f87f2b03e2c43f5a36488ff63ec6b730195fde4605f612f8db51916115af9185918591612a46565b60405180910390a15050565b5f818060011161161357600154811015611613575f8181526005602052604081205490600160e01b82169003611611575b805f0361160a57505f19015f818152600560205260409020546115ec565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600f5461163761088b565b1415801561164757506013546002145b801561165b57506001600160a01b03841615155b80156116715750600d54600160a01b900460ff16155b15611377575f61168083610b51565b90504281106110585760405162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015260640161090c565b5f546001600160a01b031633146110cc5760405163118cdaa760e01b815233600482015260240161090c565b61091f828260405180602001604052805f815250611d30565b600c545f906117319063ffffffff610100820481169161ffff6501000000000082041691600160381b90910416611d94565b604080516060810191829052600c546310c1b4d560e21b90925261010090910463ffffffff166064820152909150807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634306d35460848301602060405180830381865afa1580156117ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117d29190612a6e565b81525f6020808301829052604080518381528083018252938101939093528482526009815290829020835181558382015160018201805460ff191691151591909117905591830151805161182c92600285019201906121d0565b5050600a80546001810182555f919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80182905550600c5460408051838152600160381b90920463ffffffff1660208301527fcc58b13ad3eab50626c6a6300b1d139cd6ebb1688a7cced9461c2f7e762665ee910160405180910390a190565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600c546040516370a0823160e01b8152306004820152600160581b9091046001600160a01b031690819063a9059cbb90339083906370a0823190602401602060405180830381865afa158015611955573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119799190612a6e565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af11580156119c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119e59190612a85565b610c015760405162461bcd60e51b81526020600482015260126024820152712ab730b13632903a37903a3930b739b332b960711b604482015260640161090c565b604080516080810182525f8082526020820181905291810182905260608101919091525f8281526005602052604090205461071590604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290611ad6903390899088908890600401612aa0565b6020604051808303815f875af1925050508015611b10575060408051601f3d908101601f19168201909252611b0d91810190612adc565b60015b611b6c573d808015611b3d576040519150601f19603f3d011682016040523d82523d5f602084013e611b42565b606091505b5080515f03611b64576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600f546060905f611b9c826001612775565b6001600160401b03811115611bb357611bb3612316565b604051908082528060200260200182016040528015611bdc578160200160208202803683370190505b50905060015b828111611c195780828281518110611bfc57611bfc6127bf565b6020908102919091010152611c12600182612775565b9050611be2565b5060015b828111611d0d575f83600b5f81548110611c3957611c396127bf565b905f5260205f20015483604051602001611c5d929190918252602082015260400190565b604051602081830303815290604052805190602001205f1c611c7f9190612af7565b611c8a906001612775565b9050828181518110611c9e57611c9e6127bf565b6020026020010151838381518110611cb857611cb86127bf565b6020026020010151848481518110611cd257611cd26127bf565b60200260200101858481518110611ceb57611ceb6127bf565b60209081029190910101919091525250611d06600182612775565b9050611c1d565b50611b82818581518110611d2357611d236127bf565b6020026020010151611f65565b611d3a8383611ff4565b6001600160a01b0383163b15610b4c576001548281035b611d635f868380600101945086611aa2565b611d80576040516368d2bf6b60e11b815260040160405180910390fd5b818110611d51578160015414611058575f80fd5b6040516310c1b4d560e21b815263ffffffff841660048201525f906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811691634000aea0917f00000000000000000000000000000000000000000000000000000000000000009190821690634306d35490602401602060405180830381865afa158015611e2b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e4f9190612a6e565b6040805163ffffffff808b16602083015261ffff8a169282019290925290871660608201526080016040516020818303038152906040526040518463ffffffff1660e01b8152600401611ea493929190612b0a565b6020604051808303815f875af1158015611ec0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ee49190612a85565b507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663fc2a88c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f41573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b829190612a6e565b60605f611f71836120f9565b60010190505f816001600160401b03811115611f8f57611f8f612316565b6040519080825280601f01601f191660200182016040528015611fb9576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611fc357509392505050565b6001545f8290036120185760405163b562e8dd60e01b815260040160405180910390fd5b6120245f84838561162c565b6001600160a01b0383165f8181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146120d05780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460010161209a565b50815f036120f057604051622e076360e81b815260040160405180910390fd5b60015550505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106121375772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612163576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061218157662386f26fc10000830492506010015b6305f5e1008310612199576305f5e100830492506008015b61271083106121ad57612710830492506004015b606483106121bf576064830492506002015b600a83106107155760010192915050565b828054828255905f5260205f20908101928215612209579160200282015b828111156122095782518255916020019190600101906121ee565b50612215929150612219565b5090565b5b80821115612215575f815560010161221a565b6001600160e01b031981168114610c01575f80fd5b5f60208284031215612252575f80fd5b813561160a8161222d565b5f5b8381101561227757818101518382015260200161225f565b50505f910152565b5f815180845261229681602086016020860161225d565b601f01601f19169290920160200192915050565b602081525f61160a602083018461227f565b5f602082840312156122cc575f80fd5b5035919050565b80356001600160a01b03811681146122e9575f80fd5b919050565b5f80604083850312156122ff575f80fd5b612308836122d3565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b038111828210171561235257612352612316565b604052919050565b5f806040838503121561236b575f80fd5b823591506020808401356001600160401b0380821115612389575f80fd5b818601915086601f83011261239c575f80fd5b8135818111156123ae576123ae612316565b8060051b91506123bf84830161232a565b81815291830184019184810190898411156123d8575f80fd5b938501935b838510156123f6578435825293850193908501906123dd565b8096505050505050509250929050565b5f805f60608486031215612418575f80fd5b612421846122d3565b925061242f602085016122d3565b9150604084013590509250925092565b5f8060208385031215612450575f80fd5b82356001600160401b0380821115612466575f80fd5b818501915085601f830112612479575f80fd5b813581811115612487575f80fd5b8660208260051b850101111561249b575f80fd5b60209290920196919550909350505050565b5f6001600160401b038211156124c5576124c5612316565b50601f01601f191660200190565b5f82601f8301126124e2575f80fd5b81356124f56124f0826124ad565b61232a565b818152846020838601011115612509575f80fd5b816020850160208301375f918101602001919091529392505050565b5f8060408385031215612536575f80fd5b82356001600160401b0381111561254b575f80fd5b612557858286016124d3565b95602094909401359450505050565b5f60208284031215612576575f80fd5b61160a826122d3565b5f805f8060808587031215612592575f80fd5b5050823594602084013594506040840135936060013592509050565b5f80602083850312156125bf575f80fd5b82356001600160401b03808211156125d5575f80fd5b818501915085601f8301126125e8575f80fd5b8135818111156125f6575f80fd5b86602082850101111561249b575f80fd5b8015158114610c01575f80fd5b5f8060408385031215612625575f80fd5b61262e836122d3565b9150602083013561263e81612607565b809150509250929050565b5f815180845260208085019450602084015f5b838110156126785781518752958201959082019060010161265c565b509495945050505050565b602081525f61160a6020830184612649565b5f805f80608085870312156126a8575f80fd5b6126b1856122d3565b93506126bf602086016122d3565b92506040850135915060608501356001600160401b038111156126e0575f80fd5b6126ec878288016124d3565b91505092959194509250565b5f8060408385031215612709575f80fd5b612712836122d3565b9150612720602084016122d3565b90509250929050565b600181811c9082168061273d57607f821691505b60208210810361275b57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561071557610715612761565b6020808252601b908201527f4578636565647320746865206d6178696d756d20737570706c792e0000000000604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b808202811582820484141761071557610715612761565b8181038181111561071557610715612761565b634e487b7160e01b5f52601260045260245ffd5b5f8261281f5761281f6127fd565b500490565b5f8060408385031215612835575f80fd5b825161284081612607565b60208401519092506001600160401b0381111561285b575f80fd5b8301601f8101851361286b575f80fd5b80516128796124f0826124ad565b81815286602083850101111561288d575f80fd5b61289e82602083016020860161225d565b8093505050509250929050565b5f82516128bc81846020870161225d565b9190910192915050565b601f821115610b4c57805f5260205f20601f840160051c810160208510156128eb5750805b601f840160051c820191505b81811015611058575f81556001016128f7565b6001600160401b0383111561292157612921612316565b6129358361292f8354612729565b836128c6565b5f601f841160018114612966575f851561294f5750838201355b5f19600387901b1c1916600186901b178355611058565b5f83815260208120601f198716915b828110156129955786850135825560209485019460019092019101612975565b50868210156129b1575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b5f8084546129d081612729565b600182811680156129e857600181146129fd57612a29565b60ff1984168752821515830287019450612a29565b885f526020805f205f5b85811015612a205781548a820152908401908201612a07565b50505082870194505b505050508351612a3d81836020880161225d565b01949350505050565b838152606060208201525f612a5e6060830185612649565b9050826040830152949350505050565b5f60208284031215612a7e575f80fd5b5051919050565b5f60208284031215612a95575f80fd5b815161160a81612607565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90612ad29083018461227f565b9695505050505050565b5f60208284031215612aec575f80fd5b815161160a8161222d565b5f82612b0557612b056127fd565b500690565b60018060a01b0384168152826020820152606060408201525f610bb2606083018461227f56fea26469706673582212201fc0eafbff244138ac6ae92302ec579968f704eca7fe452f89debceabf5eac0564736f6c63430008180033

Deployed Bytecode

0x60806040526004361061021d575f3560e01c8063715018a61161011e578063a22cb465116100a8578063dc33e6811161006d578063dc33e681146105d5578063e06174e4146105f4578063e985e9c514610661578063f1b0aa1514610680578063f2fde38b146106ab575f80fd5b8063a22cb46514610544578063a69df4b514610563578063b12ab40f14610577578063b88d4fde146105a3578063c87b56dd146105b6575f80fd5b80638da5cb5b116100ee5780638da5cb5b146104c25780638dc654a2146104de57806395d89b41146104f257806397fc007c1461050657806398cd615314610525575f80fd5b8063715018a61461045c578063715d48001461047057806375794a3c1461048f5780637e932014146104a3575f80fd5b806336cfeefe116101aa5780636352211e1161016f5780636352211e146103d857806363da45ab146103f757806366805793146104165780636a385c041461042957806370a082311461043d575f80fd5b806336cfeefe14610354578063375a069a146103735780633ccfd60b1461039257806341cabeaf146103a657806342842e0e146103c5575f80fd5b806318160ddd116101f057806318160ddd146102c25780631fe543e3146102e457806323b872dd14610303578063299b81d3146103165780632e81d4da14610335575f80fd5b806301ffc9a71461022157806306fdde0314610255578063081812fc14610276578063095ea7b3146102ad575b5f80fd5b34801561022c575f80fd5b5061024061023b366004612242565b6106ca565b60405190151581526020015b60405180910390f35b348015610260575f80fd5b5061026961071b565b60405161024c91906122aa565b348015610281575f80fd5b506102956102903660046122bc565b6107ab565b6040516001600160a01b03909116815260200161024c565b6102c06102bb3660046122ee565b6107ed565b005b3480156102cd575f80fd5b506102d661088b565b60405190815260200161024c565b3480156102ef575f80fd5b506102c06102fe36600461235a565b610898565b6102c0610311366004612406565b610923565b348015610321575f80fd5b506102c06103303660046122bc565b610ac0565b348015610340575f80fd5b506102c061034f36600461243f565b610acd565b34801561035f575f80fd5b506102d661036e3660046122bc565b610b51565b34801561037e575f80fd5b506102c061038d3660046122bc565b610bbb565b34801561039d575f80fd5b506102c0610c04565b3480156103b1575f80fd5b506102c06103c03660046122bc565b610c7a565b6102c06103d3366004612406565b610c87565b3480156103e3575f80fd5b506102956103f23660046122bc565b610ca1565b348015610402575f80fd5b506102c06104113660046122bc565b610cab565b6102c0610424366004612525565b610cb8565b348015610434575f80fd5b506102c061105f565b348015610448575f80fd5b506102d6610457366004612566565b61106f565b348015610467575f80fd5b506102c06110bb565b34801561047b575f80fd5b506102c061048a36600461257f565b6110ce565b34801561049a575f80fd5b506102d661112d565b3480156104ae575f80fd5b506102c06104bd3660046122bc565b61113c565b3480156104cd575f80fd5b505f546001600160a01b0316610295565b3480156104e9575f80fd5b506102c0611149565b3480156104fd575f80fd5b50610269611159565b348015610511575f80fd5b506102c0610520366004612566565b611168565b348015610530575f80fd5b506102c061053f3660046125ae565b611192565b34801561054f575f80fd5b506102c061055e366004612614565b6111a7565b34801561056e575f80fd5b506102c0611212565b348015610582575f80fd5b50610596610591366004612566565b61122f565b60405161024c9190612683565b6102c06105b1366004612695565b611333565b3480156105c1575f80fd5b506102696105d03660046122bc565b61137d565b3480156105e0575f80fd5b506102d66105ef366004612566565b611407565b3480156105ff575f80fd5b50600f54601054601154601254601354601454601554601654610626979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e08201526101000161024c565b34801561066c575f80fd5b5061024061067b3660046126f8565b611430565b34801561068b575f80fd5b506102d661069a3660046122bc565b60196020525f908152604090205481565b3480156106b6575f80fd5b506102c06106c5366004612566565b61145d565b5f6301ffc9a760e01b6001600160e01b0319831614806106fa57506380ac58cd60e01b6001600160e01b03198316145b806107155750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461072a90612729565b80601f016020809104026020016040519081016040528092919081815260200182805461075690612729565b80156107a15780601f10610778576101008083540402835291602001916107a1565b820191905f5260205f20905b81548152906001019060200180831161078457829003601f168201915b5050505050905090565b5f6107b582611497565b6107d2576040516333d1c03960e21b815260040160405180910390fd5b505f908152600760205260409020546001600160a01b031690565b5f6107f782610ca1565b9050336001600160a01b03821614610830576108138133611430565b610830576040516367d9dca160e11b815260040160405180910390fd5b5f8281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600254600154035f190190565b336001600160a01b037f0000000000000000000000005a861794b927983406fce1d062e00b9368d97df616146109155760405162461bcd60e51b815260206004820152601f60248201527f6f6e6c792056524620563220777261707065722063616e2066756c66696c6c0060448201526064015b60405180910390fd5b61091f82826114ca565b5050565b5f61092d826115bb565b9050836001600160a01b0316816001600160a01b0316146109605760405162a1148160e81b815260040160405180910390fd5b5f8281526007602052604090208054338082146001600160a01b038816909114176109ac5761098f8633611430565b6109ac57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109d357604051633a954ecd60e21b815260040160405180910390fd5b6109e0868686600161162c565b80156109ea575f82555b6001600160a01b038681165f9081526006602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260056020526040812091909155600160e11b84169003610a7757600184015f818152600560205260408120549003610a75576001548114610a75575f8181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610ac86116ba565b601355565b610ad56116ba565b600f5481610ae161088b565b610aeb9190612775565b1115610b095760405162461bcd60e51b815260040161090c90612788565b5f5b81811015610b4c57610b44838383818110610b2857610b286127bf565b9050602002016020810190610b3d9190612566565b60016116e6565b600101610b0b565b505050565b5f80610b5f836103e86127d3565b90505f81600f5f01546103e8610b7591906127d3565b610b7f91906127ea565b90505f6201458582600f60060154610b9791906127d3565b610ba19190612811565b601654909150610bb2908290612775565b95945050505050565b610bc36116ba565b600f5481610bcf61088b565b610bd99190612775565b1115610bf75760405162461bcd60e51b815260040161090c90612788565b610c0133826116e6565b50565b610c0c6116ba565b6040515f90339047908381818185875af1925050503d805f8114610c4b576040519150601f19603f3d011682016040523d82523d5f602084013e610c50565b606091505b5050905080610c015760405162461bcd60e51b8152602060048201525f602482015260440161090c565b610c826116ba565b601455565b610b4c83838360405180602001604052805f815250611333565b5f610715826115bb565b610cb36116ba565b601655565b60175460405163473b057f60e11b81525f9182916001600160a01b0390911690638e760afe90610cec9087906004016122aa565b5f604051808303815f875af1158015610d07573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d2e9190810190612824565b915091505f83600f60030154610d4491906127d3565b60145490915015610d7957601254610d5c90826127ea565b90506001600f6005015f828254610d7391906127ea565b90915550505b601054335f90815260066020526040908190205486911c6001600160401b0316610da39190612775565b1115610dff5760405162461bcd60e51b815260206004820152602560248201527f4578636565647320746865206d6178696d756d206d696e74696e67207175616e6044820152643a34ba3c9760d91b606482015260840161090c565b600f5484610e0b61088b565b610e159190612775565b1115610e335760405162461bcd60e51b815260040161090c90612788565b34811115610e835760405162461bcd60e51b815260206004820152601d60248201527f5468652073656e742045544820697320696e73756666696369656e742e000000604482015260640161090c565b601154841115610eea5760405162461bcd60e51b815260206004820152602c60248201527f4578636565647320746865206d6178696d756d2073696e676c65206d696e746960448201526b37339038bab0b73a34ba3c9760a11b606482015260840161090c565b323314610f2b5760405162461bcd60e51b815260206004820152600f60248201526e24b73b30b634b21039b2b73232b91760891b604482015260640161090c565b60135460021115610f7e5760405162461bcd60e51b815260206004820152601960248201527f4e6f7420696e20746865206d696e74696e672070686173652e00000000000000604482015260640161090c565b601882604051610f8e91906128ab565b9081526040519081900360200190205460ff1615610fe05760405162461bcd60e51b815260206004820152600f60248201526e24b73b30b634b21039b2b1b932ba1760891b604482015260640161090c565b8261101c5760405162461bcd60e51b815260206004820152600c60248201526b2737ba103090343ab6b0b71760a11b604482015260640161090c565b600160188360405161102e91906128ab565b908152604051908190036020019020805491151560ff1990921691909117905561105833856116e6565b5050505050565b6110676116ba565b610c016116ff565b5f6001600160a01b038216611097576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f908152600660205260409020546001600160401b031690565b6110c36116ba565b6110cc5f6118ae565b565b6110d66116ba565b60408051610100810182528581526020810185905290810183905260608101829052601354608082015260145460a082015260155460c082015260165460e090910152600f93909355601091909155601155601255565b5f61113760015490565b905090565b6111446116ba565b601555565b6111516116ba565b6110cc6118fd565b60606004805461072a90612729565b6111706116ba565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b61119a6116ba565b600e610b4c82848361290a565b335f8181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61121a6116ba565b600d805460ff60a01b1916600160a01b179055565b60605f805f61123d8561106f565b90505f816001600160401b0381111561125857611258612316565b604051908082528060200260200182016040528015611281578160200160208202803683370190505b5090506112ad604080516080810182525f80825260208201819052918101829052606081019190915290565b60015b838614611327576112c081611a26565b9150816040015161131f5781516001600160a01b0316156112e057815194505b876001600160a01b0316856001600160a01b03160361131f5780838780600101985081518110611312576113126127bf565b6020026020010181815250505b6001016112b0565b50909695505050505050565b61133e848484610923565b6001600160a01b0383163b156113775761135a84848484611aa2565b611377576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60605f82118015611395575061139161088b565b8211155b6113d55760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b2103a37b5b2b71024a21760791b604482015260640161090c565b600e6113e083611b8a565b6040516020016113f19291906129c3565b6040516020818303038152906040529050919050565b6001600160a01b0381165f90815260066020526040808220546001600160401b03911c16610715565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205460ff1690565b6114656116ba565b6001600160a01b03811661148e57604051631e4fbdf760e01b81525f600482015260240161090c565b610c01816118ae565b5f816001111580156114aa575060015482105b80156107155750505f90815260056020526040902054600160e01b161590565b5f828152600960205260409020546115185760405162461bcd60e51b81526020600482015260116024820152701c995c5d595cdd081b9bdd08199bdd5b99607a1b604482015260640161090c565b5f8281526009602090815260409091206001818101805460ff19169091179055825161154c926002909201918401906121d0565b50805161156090600b9060208401906121d0565b50600c805460ff191660011790555f82815260096020526040908190205490517f147eb1ff0c82f87f2b03e2c43f5a36488ff63ec6b730195fde4605f612f8db51916115af9185918591612a46565b60405180910390a15050565b5f818060011161161357600154811015611613575f8181526005602052604081205490600160e01b82169003611611575b805f0361160a57505f19015f818152600560205260409020546115ec565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600f5461163761088b565b1415801561164757506013546002145b801561165b57506001600160a01b03841615155b80156116715750600d54600160a01b900460ff16155b15611377575f61168083610b51565b90504281106110585760405162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015260640161090c565b5f546001600160a01b031633146110cc5760405163118cdaa760e01b815233600482015260240161090c565b61091f828260405180602001604052805f815250611d30565b600c545f906117319063ffffffff610100820481169161ffff6501000000000082041691600160381b90910416611d94565b604080516060810191829052600c546310c1b4d560e21b90925261010090910463ffffffff166064820152909150807f0000000000000000000000005a861794b927983406fce1d062e00b9368d97df66001600160a01b0316634306d35460848301602060405180830381865afa1580156117ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117d29190612a6e565b81525f6020808301829052604080518381528083018252938101939093528482526009815290829020835181558382015160018201805460ff191691151591909117905591830151805161182c92600285019201906121d0565b5050600a80546001810182555f919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80182905550600c5460408051838152600160381b90920463ffffffff1660208301527fcc58b13ad3eab50626c6a6300b1d139cd6ebb1688a7cced9461c2f7e762665ee910160405180910390a190565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600c546040516370a0823160e01b8152306004820152600160581b9091046001600160a01b031690819063a9059cbb90339083906370a0823190602401602060405180830381865afa158015611955573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119799190612a6e565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af11580156119c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119e59190612a85565b610c015760405162461bcd60e51b81526020600482015260126024820152712ab730b13632903a37903a3930b739b332b960711b604482015260640161090c565b604080516080810182525f8082526020820181905291810182905260608101919091525f8281526005602052604090205461071590604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290611ad6903390899088908890600401612aa0565b6020604051808303815f875af1925050508015611b10575060408051601f3d908101601f19168201909252611b0d91810190612adc565b60015b611b6c573d808015611b3d576040519150601f19603f3d011682016040523d82523d5f602084013e611b42565b606091505b5080515f03611b64576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600f546060905f611b9c826001612775565b6001600160401b03811115611bb357611bb3612316565b604051908082528060200260200182016040528015611bdc578160200160208202803683370190505b50905060015b828111611c195780828281518110611bfc57611bfc6127bf565b6020908102919091010152611c12600182612775565b9050611be2565b5060015b828111611d0d575f83600b5f81548110611c3957611c396127bf565b905f5260205f20015483604051602001611c5d929190918252602082015260400190565b604051602081830303815290604052805190602001205f1c611c7f9190612af7565b611c8a906001612775565b9050828181518110611c9e57611c9e6127bf565b6020026020010151838381518110611cb857611cb86127bf565b6020026020010151848481518110611cd257611cd26127bf565b60200260200101858481518110611ceb57611ceb6127bf565b60209081029190910101919091525250611d06600182612775565b9050611c1d565b50611b82818581518110611d2357611d236127bf565b6020026020010151611f65565b611d3a8383611ff4565b6001600160a01b0383163b15610b4c576001548281035b611d635f868380600101945086611aa2565b611d80576040516368d2bf6b60e11b815260040160405180910390fd5b818110611d51578160015414611058575f80fd5b6040516310c1b4d560e21b815263ffffffff841660048201525f906001600160a01b037f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca811691634000aea0917f0000000000000000000000005a861794b927983406fce1d062e00b9368d97df69190821690634306d35490602401602060405180830381865afa158015611e2b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e4f9190612a6e565b6040805163ffffffff808b16602083015261ffff8a169282019290925290871660608201526080016040516020818303038152906040526040518463ffffffff1660e01b8152600401611ea493929190612b0a565b6020604051808303815f875af1158015611ec0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ee49190612a85565b507f0000000000000000000000005a861794b927983406fce1d062e00b9368d97df66001600160a01b031663fc2a88c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f41573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b829190612a6e565b60605f611f71836120f9565b60010190505f816001600160401b03811115611f8f57611f8f612316565b6040519080825280601f01601f191660200182016040528015611fb9576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611fc357509392505050565b6001545f8290036120185760405163b562e8dd60e01b815260040160405180910390fd5b6120245f84838561162c565b6001600160a01b0383165f8181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146120d05780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a460010161209a565b50815f036120f057604051622e076360e81b815260040160405180910390fd5b60015550505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106121375772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612163576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061218157662386f26fc10000830492506010015b6305f5e1008310612199576305f5e100830492506008015b61271083106121ad57612710830492506004015b606483106121bf576064830492506002015b600a83106107155760010192915050565b828054828255905f5260205f20908101928215612209579160200282015b828111156122095782518255916020019190600101906121ee565b50612215929150612219565b5090565b5b80821115612215575f815560010161221a565b6001600160e01b031981168114610c01575f80fd5b5f60208284031215612252575f80fd5b813561160a8161222d565b5f5b8381101561227757818101518382015260200161225f565b50505f910152565b5f815180845261229681602086016020860161225d565b601f01601f19169290920160200192915050565b602081525f61160a602083018461227f565b5f602082840312156122cc575f80fd5b5035919050565b80356001600160a01b03811681146122e9575f80fd5b919050565b5f80604083850312156122ff575f80fd5b612308836122d3565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b038111828210171561235257612352612316565b604052919050565b5f806040838503121561236b575f80fd5b823591506020808401356001600160401b0380821115612389575f80fd5b818601915086601f83011261239c575f80fd5b8135818111156123ae576123ae612316565b8060051b91506123bf84830161232a565b81815291830184019184810190898411156123d8575f80fd5b938501935b838510156123f6578435825293850193908501906123dd565b8096505050505050509250929050565b5f805f60608486031215612418575f80fd5b612421846122d3565b925061242f602085016122d3565b9150604084013590509250925092565b5f8060208385031215612450575f80fd5b82356001600160401b0380821115612466575f80fd5b818501915085601f830112612479575f80fd5b813581811115612487575f80fd5b8660208260051b850101111561249b575f80fd5b60209290920196919550909350505050565b5f6001600160401b038211156124c5576124c5612316565b50601f01601f191660200190565b5f82601f8301126124e2575f80fd5b81356124f56124f0826124ad565b61232a565b818152846020838601011115612509575f80fd5b816020850160208301375f918101602001919091529392505050565b5f8060408385031215612536575f80fd5b82356001600160401b0381111561254b575f80fd5b612557858286016124d3565b95602094909401359450505050565b5f60208284031215612576575f80fd5b61160a826122d3565b5f805f8060808587031215612592575f80fd5b5050823594602084013594506040840135936060013592509050565b5f80602083850312156125bf575f80fd5b82356001600160401b03808211156125d5575f80fd5b818501915085601f8301126125e8575f80fd5b8135818111156125f6575f80fd5b86602082850101111561249b575f80fd5b8015158114610c01575f80fd5b5f8060408385031215612625575f80fd5b61262e836122d3565b9150602083013561263e81612607565b809150509250929050565b5f815180845260208085019450602084015f5b838110156126785781518752958201959082019060010161265c565b509495945050505050565b602081525f61160a6020830184612649565b5f805f80608085870312156126a8575f80fd5b6126b1856122d3565b93506126bf602086016122d3565b92506040850135915060608501356001600160401b038111156126e0575f80fd5b6126ec878288016124d3565b91505092959194509250565b5f8060408385031215612709575f80fd5b612712836122d3565b9150612720602084016122d3565b90509250929050565b600181811c9082168061273d57607f821691505b60208210810361275b57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561071557610715612761565b6020808252601b908201527f4578636565647320746865206d6178696d756d20737570706c792e0000000000604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b808202811582820484141761071557610715612761565b8181038181111561071557610715612761565b634e487b7160e01b5f52601260045260245ffd5b5f8261281f5761281f6127fd565b500490565b5f8060408385031215612835575f80fd5b825161284081612607565b60208401519092506001600160401b0381111561285b575f80fd5b8301601f8101851361286b575f80fd5b80516128796124f0826124ad565b81815286602083850101111561288d575f80fd5b61289e82602083016020860161225d565b8093505050509250929050565b5f82516128bc81846020870161225d565b9190910192915050565b601f821115610b4c57805f5260205f20601f840160051c810160208510156128eb5750805b601f840160051c820191505b81811015611058575f81556001016128f7565b6001600160401b0383111561292157612921612316565b6129358361292f8354612729565b836128c6565b5f601f841160018114612966575f851561294f5750838201355b5f19600387901b1c1916600186901b178355611058565b5f83815260208120601f198716915b828110156129955786850135825560209485019460019092019101612975565b50868210156129b1575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b5f8084546129d081612729565b600182811680156129e857600181146129fd57612a29565b60ff1984168752821515830287019450612a29565b885f526020805f205f5b85811015612a205781548a820152908401908201612a07565b50505082870194505b505050508351612a3d81836020880161225d565b01949350505050565b838152606060208201525f612a5e6060830185612649565b9050826040830152949350505050565b5f60208284031215612a7e575f80fd5b5051919050565b5f60208284031215612a95575f80fd5b815161160a81612607565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90612ad29083018461227f565b9695505050505050565b5f60208284031215612aec575f80fd5b815161160a8161222d565b5f82612b0557612b056127fd565b500690565b60018060a01b0384168152826020820152606060408201525f610bb2606083018461227f56fea26469706673582212201fc0eafbff244138ac6ae92302ec579968f704eca7fe452f89debceabf5eac0564736f6c63430008180033

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.