ETH Price: $3,332.26 (-1.53%)
Gas: 16 Gwei

Token

Garden Tomb (GT)
 

Overview

Max Total Supply

299 GT

Holders

163

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fomoplz.eth
Balance
1 GT
0x87f8652128dd9ddc7938b277b14311dbf05240ab
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:
GardenTomb

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 8 : GardenTomb.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/Base64.sol";

contract GardenTomb is ERC721A, Ownable{
    using ECDSA for bytes32;
    uint256 public constant MAX_SUPPLY = 4321;
    string public baseTokenURI;
    address public signAddress;
    mapping(uint256 => Metadata) metadata;
    mapping(uint256 => bool) holderProofs;

    struct Metadata {
        string imgUri;
        uint8 tombstone;
        uint8 goods;
    }

    event MintEvent(address to,uint256 holderProof);

    constructor(string memory _baseTokenUri,address _signAddress) ERC721A("Garden Tomb", "GT"){
        baseTokenURI = _baseTokenUri;
        signAddress=_signAddress;
    }

    function mint(address to, string calldata imgUri, uint8 tombstone, uint8 goods, uint256 holderProof,bytes calldata _singature) external {
        require(totalSupply() < MAX_SUPPLY, "sold out");
        require(!holderProofs[holderProof] , "The holderProof has already been used");
        require(hasProof(holderProof,_singature),"You don't have permission");
        holderProofs[holderProof] = true;
        metadata[_nextTokenId()] = Metadata(imgUri,tombstone,goods);
        emit MintEvent(_msgSender(),holderProof);
        _mint(to,1);
    }

    function hasProof(uint256 _holderProof,bytes calldata _singature) internal view returns(bool){
        bytes32 signedMessageHash=keccak256(abi.encodePacked(uint256(uint160(address(_msgSender()))),_holderProof));
        return signedMessageHash.toEthSignedMessageHash().recover(_singature) == signAddress;
    }

    function getMetadata(uint256 tokenId) internal view returns (string memory){
        return string(
                abi.encodePacked(
                    "data:application/json;base64,",
                    Base64.encode(
                        abi.encodePacked(
                           '{"name":"Garden Tomb #', Strings.toString(tokenId),
                            '","description":"APEs are bored, NFTs are bored and the whole space is bored, now the Garden Tomb has opened, let the party rock: [Garden Tomb](https://www.nftmeme.club/gardenTomb.html)","image": "',_baseURI(),metadata[tokenId].imgUri,
                            '","attributes":[{"trait_type": "Tombstone","value": "',_getTomb(metadata[tokenId].tombstone),'"}, {"trait_type": "Goods","value": "',_getProp(metadata[tokenId].goods),'"}]}'
                        )
                    )
                )
        );
    }

    function ownerMint(address to ,string calldata imgUri, uint8 tombstone, uint8 goods) external onlyOwner{
        require(totalSupply() < MAX_SUPPLY, "sold out");
        metadata[_nextTokenId()] = Metadata(imgUri,tombstone,goods);
        _mint(to,1);
    }

    function setMetadata(uint256 tokenId,string calldata imgUri, uint8 tombstone, uint8 goods) external onlyOwner{
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        metadata[tokenId] = Metadata(imgUri,tombstone,goods);
    }

    function setSignedAddress(address _signAddress)external onlyOwner{
         signAddress=_signAddress;
    }

    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory)
	{
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return getMetadata(tokenId);
	}

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

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

    function _getTomb(uint256 id) internal pure returns (string memory name_) {
        if (id == 1)  name_ = "BlackCat";
        if (id == 2)  name_ = "Coffin";
        if (id == 3)  name_ = "Crystal";
        if (id == 4)  name_ = "Dryad";
        if (id == 5)  name_ = "Gargoyle";
        if (id == 6)  name_ = "Ghost";
        if (id == 7)  name_ = "Gold";
        if (id == 8)  name_ = "Lucifer";
        if (id == 9)  name_ = "Satan";
        if (id == 10) name_ = "Stormtrooper";
    }

    function _getProp(uint256 id) internal pure returns (string memory name_) {
        if (id == 1)  name_ = "Bear";
        if (id == 2)  name_ = "Boom";
        if (id == 3)  name_ = "Broken";
        if (id == 4)  name_ = "Candle";
        if (id == 5)  name_ = "Crown";
        if (id == 6)  name_ = "Cup";
        if (id == 7)  name_ = "Ethereum";
        if (id == 8)  name_ = "Flower";
        if (id == 9)  name_ = "Gold";
        if (id == 10) name_ = "Kitty";
        if (id == 11) name_ = "Poop";
        if (id == 12) name_ = "Rottenegg";
        if (id == 13) name_ = "Skeleton";
        if (id == 14) name_ = "Snake";
        if (id == 15) name_ = "TNT";
    }


}

File 2 of 8 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 3 of 8 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 4 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 5 of 8 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// 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 {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 8 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        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_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 8 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"},{"internalType":"address","name":"_signAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"holderProof","type":"uint256"}],"name":"MintEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"imgUri","type":"string"},{"internalType":"uint8","name":"tombstone","type":"uint8"},{"internalType":"uint8","name":"goods","type":"uint8"},{"internalType":"uint256","name":"holderProof","type":"uint256"},{"internalType":"bytes","name":"_singature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"imgUri","type":"string"},{"internalType":"uint8","name":"tombstone","type":"uint8"},{"internalType":"uint8","name":"goods","type":"uint8"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"imgUri","type":"string"},{"internalType":"uint8","name":"tombstone","type":"uint8"},{"internalType":"uint8","name":"goods","type":"uint8"}],"name":"setMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signAddress","type":"address"}],"name":"setSignedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002aea38038062002aea833981016040819052620000349162000206565b6040518060400160405280600b81526020016a23b0b93232b7102a37b6b160a91b8152506040518060400160405280600281526020016111d560f21b81525081600290805190602001906200008b92919062000143565b508051620000a190600390602084019062000143565b5050600160005550620000b433620000f1565b8151620000c990600990602085019062000143565b50600a80546001600160a01b0319166001600160a01b0392909216919091179055506200034a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015190620002f7565b90600052602060002090601f016020900481019282620001755760008555620001c0565b82601f106200019057805160ff1916838001178555620001c0565b82800160010185558215620001c0579182015b82811115620001c0578251825591602001919060010190620001a3565b50620001ce929150620001d2565b5090565b5b80821115620001ce5760008155600101620001d3565b80516001600160a01b03811681146200020157600080fd5b919050565b600080604083850312156200021a57600080fd5b82516001600160401b03808211156200023257600080fd5b818501915085601f8301126200024757600080fd5b8151818111156200025c576200025c62000334565b604051601f8201601f19908116603f0116810190838211818310171562000287576200028762000334565b81604052828152602093508884848701011115620002a457600080fd5b600091505b82821015620002c85784820184015181830185015290830190620002a9565b82821115620002da5760008484830101525b9550620002ec915050858201620001e9565b925050509250929050565b600181811c908216806200030c57607f821691505b602082108114156200032e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612790806200035a6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80636352211e116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd1461031d578063d547cfb714610330578063e985e9c514610338578063f2fde38b1461037457600080fd5b8063a22cb465146102e4578063b36e4e55146102f7578063b88d4fde1461030a57600080fd5b80636352211e1461028a578063666254e31461029d57806370a08231146102b0578063715018a6146102c35780638da5cb5b146102cb57806395d89b41146102dc57600080fd5b806318160ddd1161013057806318160ddd1461021b57806323b872dd1461023557806330176e131461024857806332cb6b0c1461025b57806342842e0e14610264578063499548e41461027757600080fd5b806301ffc9a7146101785780630682bdbc146101a057806306fdde03146101cb578063081812fc146101e0578063095ea7b3146101f35780630b38840314610208575b600080fd5b61018b61018636600461210d565b610387565b60405190151581526020015b60405180910390f35b600a546101b3906001600160a01b031681565b6040516001600160a01b039091168152602001610197565b6101d36103d9565b604051610197919061253c565b6101b36101ee366004612189565b61046b565b6102066102013660046120e3565b6104af565b005b610206610216366004612035565b61054f565b60015460005403600019015b604051908152602001610197565b610206610243366004611e6b565b61078b565b610206610256366004612147565b61091c565b6102276110e181565b610206610272366004611e6b565b610935565b610206610285366004611fbf565b610950565b6101b3610298366004612189565b610a6c565b6102066102ab3660046121a2565b610a77565b6102276102be366004611e1d565b610b53565b610206610ba2565b6008546001600160a01b03166101b3565b6101d3610bb6565b6102066102f2366004611f83565b610bc5565b610206610305366004611e1d565b610c5b565b610206610318366004611ea7565b610c85565b6101d361032b366004612189565b610ccf565b6101d3610cff565b61018b610346366004611e38565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610206610382366004611e1d565b610d8d565b60006301ffc9a760e01b6001600160e01b0319831614806103b857506380ac58cd60e01b6001600160e01b03198316145b806103d35750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546103e89061262c565b80601f01602080910402602001604051908101604052809291908181526020018280546104149061262c565b80156104615780601f1061043657610100808354040283529160200191610461565b820191906000526020600020905b81548152906001019060200180831161044457829003601f168201915b5050505050905090565b600061047682610e06565b610493576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104ba82610a6c565b9050336001600160a01b038216146104f3576104d68133610346565b6104f3576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001546000546110e1919003600019011061059c5760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064015b60405180910390fd5b6000838152600c602052604090205460ff16156106095760405162461bcd60e51b815260206004820152602560248201527f54686520686f6c64657250726f6f662068617320616c7265616479206265656e604482015264081d5cd95960da1b6064820152608401610593565b610614838383610e3b565b6106605760405162461bcd60e51b815260206004820152601960248201527f596f7520646f6e27742068617665207065726d697373696f6e000000000000006044820152606401610593565b6000838152600c6020908152604091829020805460ff1916600117905581516080601f8a01839004909202810182019092526060820188815282918a908a9081908501838280828437600092018290525093855250505060ff80891660208401528716604090920191909152600b906106d860005490565b81526020808201929092526040016000208251805191926106fe92849290910190611ca6565b5060208201516001909101805460409093015160ff9081166101000261ffff199094169216919091179190911790557f3fffaa5804a26fcec0d70b1d0fb0a2d0031df3a5f9c8af2127c2f4360e97b4636107553390565b604080516001600160a01b039092168252602082018690520160405180910390a1610781886001610edb565b5050505050505050565b600061079682610fd2565b9050836001600160a01b0316816001600160a01b0316146107c95760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610816576107f98633610346565b61081657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661083d57604051633a954ecd60e21b815260040160405180910390fd5b801561084857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b83166108d357600184016000818152600460205260409020546108d15760005481146108d15760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610924611042565b61093060098383611d2a565b505050565b61093083838360405180602001604052806000815250610c85565b610958611042565b6001546000546110e191900360001901106109a05760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b6044820152606401610593565b604051806060016040528085858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525093855250505060ff80861660208401528416604090920191909152600b90610a0460005490565b8152602080820192909252604001600020825180519192610a2a92849290910190611ca6565b5060208201516001918201805460409094015160ff9081166101000261ffff1990951692169190911792909217909155610a65908690610edb565b5050505050565b60006103d382610fd2565b610a7f611042565b610a8885610e06565b610aa45760405162461bcd60e51b81526004016105939061254f565b604051806060016040528085858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525093855250505060ff808616602080850191909152908516604093840152888252600b8152919020825180519192610b1d92849290910190611ca6565b5060208201516001909101805460409093015160ff9081166101000261ffff199094169216919091179190911790555050505050565b60006001600160a01b038216610b7c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610baa611042565b610bb4600061109c565b565b6060600380546103e89061262c565b6001600160a01b038216331415610bef5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c63611042565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b610c9084848461078b565b6001600160a01b0383163b15610cc957610cac848484846110ee565b610cc9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610cda82610e06565b610cf65760405162461bcd60e51b81526004016105939061254f565b6103d3826111e6565b60098054610d0c9061262c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d389061262c565b8015610d855780601f10610d5a57610100808354040283529160200191610d85565b820191906000526020600020905b815481529060010190602001808311610d6857829003601f168201915b505050505081565b610d95611042565b6001600160a01b038116610dfa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610593565b610e038161109c565b50565b600081600111158015610e1a575060005482105b80156103d3575050600090815260046020526040902054600160e01b161590565b60008033604080516001600160a01b03929092166020830152810186905260600160408051601f198184030181528282528051602091820120600a54601f880183900483028501830190935286845293506001600160a01b0390911691610ec8918790879081908401838280828437600092019190915250610ec2925086915061128c9050565b906112df565b6001600160a01b03161495945050505050565b60005481610efc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610fab57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610f73565b5081610fc957604051622e076360e81b815260040160405180910390fd5b60005550505050565b600081806001116110295760005481101561102957600081815260046020526040902054600160e01b8116611027575b80611020575060001901600081815260046020526040902054611002565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610bb45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610593565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111239033908990889088906004016124ff565b602060405180830381600087803b15801561113d57600080fd5b505af192505050801561116d575060408051601f3d908101601f1916820190925261116a9181019061212a565b60015b6111c8573d80801561119b576040519150601f19603f3d011682016040523d82523d6000602084013e6111a0565b606091505b5080516111c0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606112666111f483611303565b6111fc611401565b6000858152600b60205260409020600181015461121b9060ff16611410565b6000878152600b602052604090206001015461123e90610100900460ff166115ae565b6040516020016112529594939291906122ba565b604051602081830303815290604052611801565b60405160200161127691906124ba565b6040516020818303038152906040529050919050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b60008060006112ee8585611955565b915091506112fb816119c5565b509392505050565b6060816113275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611351578061133b81612667565b915061134a9050600a836125b6565b915061132b565b60008167ffffffffffffffff81111561136c5761136c6126ee565b6040519080825280601f01601f191660200182016040528015611396576020820181803683370190505b5090505b84156111de576113ab6001836125e9565b91506113b8600a86612682565b6113c390603061259e565b60f81b8183815181106113d8576113d86126d8565b60200101906001600160f81b031916908160001a9053506113fa600a866125b6565b945061139a565b6060600980546103e89061262c565b6060816001141561143c5750604080518082019091526008815267109b1858dad0d85d60c21b60208201525b8160021415611464575060408051808201909152600681526521b7b33334b760d11b60208201525b816003141561148d575060408051808201909152600781526610dc9e5cdd185b60ca1b60208201525b81600414156114b45750604080518082019091526005815264111c9e585960da1b60208201525b81600514156114de5750604080518082019091526008815267476172676f796c6560c01b60208201525b8160061415611505575060408051808201909152600581526411da1bdcdd60da1b60208201525b816007141561152b575060408051808201909152600481526311dbdb1960e21b60208201525b81600814156115545750604080518082019091526007815266263ab1b4b332b960c91b60208201525b816009141561157b575060408051808201909152600581526429b0ba30b760d91b60208201525b81600a14156115a9575060408051808201909152600c81526b29ba37b936ba3937b7b832b960a11b60208201525b919050565b606081600114156115d657506040805180820190915260048152632132b0b960e11b60208201525b81600214156115fc5750604080518082019091526004815263426f6f6d60e01b60208201525b81600314156116245750604080518082019091526006815265213937b5b2b760d11b60208201525b816004141561164c575060408051808201909152600681526543616e646c6560d01b60208201525b8160051415611673575060408051808201909152600581526421b937bbb760d91b60208201525b8160061415611698575060408051808201909152600381526204375760ec1b60208201525b81600714156116c25750604080518082019091526008815267457468657265756d60c01b60208201525b81600814156116ea5750604080518082019091526006815265233637bbb2b960d11b60208201525b8160091415611710575060408051808201909152600481526311dbdb1960e21b60208201525b81600a141561173757506040805180820190915260058152644b6974747960d81b60208201525b81600b141561175d57506040805180820190915260048152630506f6f760e41b60208201525b81600c14156117885750604080518082019091526009815268526f7474656e65676760b81b60208201525b81600d14156117b2575060408051808201909152600881526729b5b2b632ba37b760c11b60208201525b81600e14156117d95750604080518082019091526005815264536e616b6560d81b60208201525b81600f14156115a957505060408051808201909152600381526215139560ea1b602082015290565b606081516000141561182157505060408051602081019091526000815290565b600060405180606001604052806040815260200161271b6040913990506000600384516002611850919061259e565b61185a91906125b6565b6118659060046125ca565b67ffffffffffffffff81111561187d5761187d6126ee565b6040519080825280601f01601f1916602001820160405280156118a7576020820181803683370190505b509050600182016020820185865187015b80821015611913576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506118b8565b505060038651066001811461192f57600281146119425761194a565b603d6001830353603d600283035361194a565b603d60018303535b509195945050505050565b60008082516041141561198c5760208301516040840151606085015160001a61198087828585611b80565b945094505050506119be565b8251604014156119b657602083015160408401516119ab868383611c6d565b9350935050506119be565b506000905060025b9250929050565b60008160048111156119d9576119d96126c2565b14156119e25750565b60018160048111156119f6576119f66126c2565b1415611a445760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610593565b6002816004811115611a5857611a586126c2565b1415611aa65760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610593565b6003816004811115611aba57611aba6126c2565b1415611b135760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610593565b6004816004811115611b2757611b276126c2565b1415610e035760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610593565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611bb75750600090506003611c64565b8460ff16601b14158015611bcf57508460ff16601c14155b15611be05750600090506004611c64565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611c34573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611c5d57600060019250925050611c64565b9150600090505b94509492505050565b6000806001600160ff1b03831681611c8a60ff86901c601b61259e565b9050611c9887828885611b80565b935093505050935093915050565b828054611cb29061262c565b90600052602060002090601f016020900481019282611cd45760008555611d1a565b82601f10611ced57805160ff1916838001178555611d1a565b82800160010185558215611d1a579182015b82811115611d1a578251825591602001919060010190611cff565b50611d26929150611d9e565b5090565b828054611d369061262c565b90600052602060002090601f016020900481019282611d585760008555611d1a565b82601f10611d715782800160ff19823516178555611d1a565b82800160010185558215611d1a579182015b82811115611d1a578235825591602001919060010190611d83565b5b80821115611d265760008155600101611d9f565b80356001600160a01b03811681146115a957600080fd5b60008083601f840112611ddc57600080fd5b50813567ffffffffffffffff811115611df457600080fd5b6020830191508360208285010111156119be57600080fd5b803560ff811681146115a957600080fd5b600060208284031215611e2f57600080fd5b61102082611db3565b60008060408385031215611e4b57600080fd5b611e5483611db3565b9150611e6260208401611db3565b90509250929050565b600080600060608486031215611e8057600080fd5b611e8984611db3565b9250611e9760208501611db3565b9150604084013590509250925092565b60008060008060808587031215611ebd57600080fd5b611ec685611db3565b9350611ed460208601611db3565b925060408501359150606085013567ffffffffffffffff80821115611ef857600080fd5b818701915087601f830112611f0c57600080fd5b813581811115611f1e57611f1e6126ee565b604051601f8201601f19908116603f01168101908382118183101715611f4657611f466126ee565b816040528281528a6020848701011115611f5f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f9657600080fd5b611f9f83611db3565b915060208301358015158114611fb457600080fd5b809150509250929050565b600080600080600060808688031215611fd757600080fd5b611fe086611db3565b9450602086013567ffffffffffffffff811115611ffc57600080fd5b61200888828901611dca565b909550935061201b905060408701611e0c565b915061202960608701611e0c565b90509295509295909350565b60008060008060008060008060c0898b03121561205157600080fd5b61205a89611db3565b9750602089013567ffffffffffffffff8082111561207757600080fd5b6120838c838d01611dca565b909950975087915061209760408c01611e0c565b96506120a560608c01611e0c565b955060808b0135945060a08b01359150808211156120c257600080fd5b506120cf8b828c01611dca565b999c989b5096995094979396929594505050565b600080604083850312156120f657600080fd5b6120ff83611db3565b946020939093013593505050565b60006020828403121561211f57600080fd5b813561102081612704565b60006020828403121561213c57600080fd5b815161102081612704565b6000806020838503121561215a57600080fd5b823567ffffffffffffffff81111561217157600080fd5b61217d85828601611dca565b90969095509350505050565b60006020828403121561219b57600080fd5b5035919050565b6000806000806000608086880312156121ba57600080fd5b85359450602086013567ffffffffffffffff811115611ffc57600080fd5b600081518084526121f0816020860160208601612600565b601f01601f19169290920160200192915050565b60008151612216818560208601612600565b9290920192915050565b8054600090600181811c908083168061223a57607f831692505b602080841082141561225c57634e487b7160e01b600052602260045260246000fd5b8180156122705760018114612281576122ae565b60ff198616895284890196506122ae565b60008881526020902060005b868110156122a65781548b82015290850190830161228d565b505084890196505b50505050505092915050565b757b226e616d65223a2247617264656e20546f6d62202360501b815285516000906122ec816016850160208b01612600565b7f222c226465736372697074696f6e223a22415045732061726520626f7265642c6016918401918201527f204e4654732061726520626f72656420616e64207468652077686f6c6520737060368201527f61636520697320626f7265642c206e6f77207468652047617264656e20546f6d60568201527f6220686173206f70656e65642c206c65742074686520706172747920726f636b60768201527f3a205b47617264656e20546f6d625d2868747470733a2f2f7777772e6e66746d60968201527f656d652e636c75622f67617264656e546f6d622e68746d6c29222c22696d616760b68201526432911d101160d91b60d682015286516123f58160db840160208b01612600565b6124ad61249d61249761246061245a61241360db878901018d612220565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a20228152742a37b6b139ba37b7329116113b30b63ab2911d101160591b602082015260350190565b8a612204565b7f227d2c207b2274726169745f74797065223a2022476f6f6473222c2276616c7581526432911d101160d91b602082015260250190565b87612204565b63227d5d7d60e01b815260040190565b9998505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516124f281601d850160208701612600565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612532908301846121d8565b9695505050505050565b60208152600061102060208301846121d8565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b600082198211156125b1576125b1612696565b500190565b6000826125c5576125c56126ac565b500490565b60008160001904831182151516156125e4576125e4612696565b500290565b6000828210156125fb576125fb612696565b500390565b60005b8381101561261b578181015183820152602001612603565b83811115610cc95750506000910152565b600181811c9082168061264057607f821691505b6020821081141561266157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561267b5761267b612696565b5060010190565b600082612691576126916126ac565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e0357600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220845767a1ae6e5534a9483b67b924ca4179b9caa6e41286d6fc51c4295a0dcbce64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ad570bc60adc14772542503d4d68b04486d18606000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f7777772e6e66746d656d652e636c75622f746f6d6273746f6e652f726573756c742f00000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80636352211e116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd1461031d578063d547cfb714610330578063e985e9c514610338578063f2fde38b1461037457600080fd5b8063a22cb465146102e4578063b36e4e55146102f7578063b88d4fde1461030a57600080fd5b80636352211e1461028a578063666254e31461029d57806370a08231146102b0578063715018a6146102c35780638da5cb5b146102cb57806395d89b41146102dc57600080fd5b806318160ddd1161013057806318160ddd1461021b57806323b872dd1461023557806330176e131461024857806332cb6b0c1461025b57806342842e0e14610264578063499548e41461027757600080fd5b806301ffc9a7146101785780630682bdbc146101a057806306fdde03146101cb578063081812fc146101e0578063095ea7b3146101f35780630b38840314610208575b600080fd5b61018b61018636600461210d565b610387565b60405190151581526020015b60405180910390f35b600a546101b3906001600160a01b031681565b6040516001600160a01b039091168152602001610197565b6101d36103d9565b604051610197919061253c565b6101b36101ee366004612189565b61046b565b6102066102013660046120e3565b6104af565b005b610206610216366004612035565b61054f565b60015460005403600019015b604051908152602001610197565b610206610243366004611e6b565b61078b565b610206610256366004612147565b61091c565b6102276110e181565b610206610272366004611e6b565b610935565b610206610285366004611fbf565b610950565b6101b3610298366004612189565b610a6c565b6102066102ab3660046121a2565b610a77565b6102276102be366004611e1d565b610b53565b610206610ba2565b6008546001600160a01b03166101b3565b6101d3610bb6565b6102066102f2366004611f83565b610bc5565b610206610305366004611e1d565b610c5b565b610206610318366004611ea7565b610c85565b6101d361032b366004612189565b610ccf565b6101d3610cff565b61018b610346366004611e38565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610206610382366004611e1d565b610d8d565b60006301ffc9a760e01b6001600160e01b0319831614806103b857506380ac58cd60e01b6001600160e01b03198316145b806103d35750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546103e89061262c565b80601f01602080910402602001604051908101604052809291908181526020018280546104149061262c565b80156104615780601f1061043657610100808354040283529160200191610461565b820191906000526020600020905b81548152906001019060200180831161044457829003601f168201915b5050505050905090565b600061047682610e06565b610493576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104ba82610a6c565b9050336001600160a01b038216146104f3576104d68133610346565b6104f3576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001546000546110e1919003600019011061059c5760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064015b60405180910390fd5b6000838152600c602052604090205460ff16156106095760405162461bcd60e51b815260206004820152602560248201527f54686520686f6c64657250726f6f662068617320616c7265616479206265656e604482015264081d5cd95960da1b6064820152608401610593565b610614838383610e3b565b6106605760405162461bcd60e51b815260206004820152601960248201527f596f7520646f6e27742068617665207065726d697373696f6e000000000000006044820152606401610593565b6000838152600c6020908152604091829020805460ff1916600117905581516080601f8a01839004909202810182019092526060820188815282918a908a9081908501838280828437600092018290525093855250505060ff80891660208401528716604090920191909152600b906106d860005490565b81526020808201929092526040016000208251805191926106fe92849290910190611ca6565b5060208201516001909101805460409093015160ff9081166101000261ffff199094169216919091179190911790557f3fffaa5804a26fcec0d70b1d0fb0a2d0031df3a5f9c8af2127c2f4360e97b4636107553390565b604080516001600160a01b039092168252602082018690520160405180910390a1610781886001610edb565b5050505050505050565b600061079682610fd2565b9050836001600160a01b0316816001600160a01b0316146107c95760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610816576107f98633610346565b61081657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661083d57604051633a954ecd60e21b815260040160405180910390fd5b801561084857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b83166108d357600184016000818152600460205260409020546108d15760005481146108d15760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610924611042565b61093060098383611d2a565b505050565b61093083838360405180602001604052806000815250610c85565b610958611042565b6001546000546110e191900360001901106109a05760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b6044820152606401610593565b604051806060016040528085858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525093855250505060ff80861660208401528416604090920191909152600b90610a0460005490565b8152602080820192909252604001600020825180519192610a2a92849290910190611ca6565b5060208201516001918201805460409094015160ff9081166101000261ffff1990951692169190911792909217909155610a65908690610edb565b5050505050565b60006103d382610fd2565b610a7f611042565b610a8885610e06565b610aa45760405162461bcd60e51b81526004016105939061254f565b604051806060016040528085858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525093855250505060ff808616602080850191909152908516604093840152888252600b8152919020825180519192610b1d92849290910190611ca6565b5060208201516001909101805460409093015160ff9081166101000261ffff199094169216919091179190911790555050505050565b60006001600160a01b038216610b7c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610baa611042565b610bb4600061109c565b565b6060600380546103e89061262c565b6001600160a01b038216331415610bef5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c63611042565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b610c9084848461078b565b6001600160a01b0383163b15610cc957610cac848484846110ee565b610cc9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610cda82610e06565b610cf65760405162461bcd60e51b81526004016105939061254f565b6103d3826111e6565b60098054610d0c9061262c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d389061262c565b8015610d855780601f10610d5a57610100808354040283529160200191610d85565b820191906000526020600020905b815481529060010190602001808311610d6857829003601f168201915b505050505081565b610d95611042565b6001600160a01b038116610dfa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610593565b610e038161109c565b50565b600081600111158015610e1a575060005482105b80156103d3575050600090815260046020526040902054600160e01b161590565b60008033604080516001600160a01b03929092166020830152810186905260600160408051601f198184030181528282528051602091820120600a54601f880183900483028501830190935286845293506001600160a01b0390911691610ec8918790879081908401838280828437600092019190915250610ec2925086915061128c9050565b906112df565b6001600160a01b03161495945050505050565b60005481610efc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610fab57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610f73565b5081610fc957604051622e076360e81b815260040160405180910390fd5b60005550505050565b600081806001116110295760005481101561102957600081815260046020526040902054600160e01b8116611027575b80611020575060001901600081815260046020526040902054611002565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610bb45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610593565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111239033908990889088906004016124ff565b602060405180830381600087803b15801561113d57600080fd5b505af192505050801561116d575060408051601f3d908101601f1916820190925261116a9181019061212a565b60015b6111c8573d80801561119b576040519150601f19603f3d011682016040523d82523d6000602084013e6111a0565b606091505b5080516111c0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606112666111f483611303565b6111fc611401565b6000858152600b60205260409020600181015461121b9060ff16611410565b6000878152600b602052604090206001015461123e90610100900460ff166115ae565b6040516020016112529594939291906122ba565b604051602081830303815290604052611801565b60405160200161127691906124ba565b6040516020818303038152906040529050919050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b60008060006112ee8585611955565b915091506112fb816119c5565b509392505050565b6060816113275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611351578061133b81612667565b915061134a9050600a836125b6565b915061132b565b60008167ffffffffffffffff81111561136c5761136c6126ee565b6040519080825280601f01601f191660200182016040528015611396576020820181803683370190505b5090505b84156111de576113ab6001836125e9565b91506113b8600a86612682565b6113c390603061259e565b60f81b8183815181106113d8576113d86126d8565b60200101906001600160f81b031916908160001a9053506113fa600a866125b6565b945061139a565b6060600980546103e89061262c565b6060816001141561143c5750604080518082019091526008815267109b1858dad0d85d60c21b60208201525b8160021415611464575060408051808201909152600681526521b7b33334b760d11b60208201525b816003141561148d575060408051808201909152600781526610dc9e5cdd185b60ca1b60208201525b81600414156114b45750604080518082019091526005815264111c9e585960da1b60208201525b81600514156114de5750604080518082019091526008815267476172676f796c6560c01b60208201525b8160061415611505575060408051808201909152600581526411da1bdcdd60da1b60208201525b816007141561152b575060408051808201909152600481526311dbdb1960e21b60208201525b81600814156115545750604080518082019091526007815266263ab1b4b332b960c91b60208201525b816009141561157b575060408051808201909152600581526429b0ba30b760d91b60208201525b81600a14156115a9575060408051808201909152600c81526b29ba37b936ba3937b7b832b960a11b60208201525b919050565b606081600114156115d657506040805180820190915260048152632132b0b960e11b60208201525b81600214156115fc5750604080518082019091526004815263426f6f6d60e01b60208201525b81600314156116245750604080518082019091526006815265213937b5b2b760d11b60208201525b816004141561164c575060408051808201909152600681526543616e646c6560d01b60208201525b8160051415611673575060408051808201909152600581526421b937bbb760d91b60208201525b8160061415611698575060408051808201909152600381526204375760ec1b60208201525b81600714156116c25750604080518082019091526008815267457468657265756d60c01b60208201525b81600814156116ea5750604080518082019091526006815265233637bbb2b960d11b60208201525b8160091415611710575060408051808201909152600481526311dbdb1960e21b60208201525b81600a141561173757506040805180820190915260058152644b6974747960d81b60208201525b81600b141561175d57506040805180820190915260048152630506f6f760e41b60208201525b81600c14156117885750604080518082019091526009815268526f7474656e65676760b81b60208201525b81600d14156117b2575060408051808201909152600881526729b5b2b632ba37b760c11b60208201525b81600e14156117d95750604080518082019091526005815264536e616b6560d81b60208201525b81600f14156115a957505060408051808201909152600381526215139560ea1b602082015290565b606081516000141561182157505060408051602081019091526000815290565b600060405180606001604052806040815260200161271b6040913990506000600384516002611850919061259e565b61185a91906125b6565b6118659060046125ca565b67ffffffffffffffff81111561187d5761187d6126ee565b6040519080825280601f01601f1916602001820160405280156118a7576020820181803683370190505b509050600182016020820185865187015b80821015611913576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506118b8565b505060038651066001811461192f57600281146119425761194a565b603d6001830353603d600283035361194a565b603d60018303535b509195945050505050565b60008082516041141561198c5760208301516040840151606085015160001a61198087828585611b80565b945094505050506119be565b8251604014156119b657602083015160408401516119ab868383611c6d565b9350935050506119be565b506000905060025b9250929050565b60008160048111156119d9576119d96126c2565b14156119e25750565b60018160048111156119f6576119f66126c2565b1415611a445760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610593565b6002816004811115611a5857611a586126c2565b1415611aa65760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610593565b6003816004811115611aba57611aba6126c2565b1415611b135760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610593565b6004816004811115611b2757611b276126c2565b1415610e035760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610593565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611bb75750600090506003611c64565b8460ff16601b14158015611bcf57508460ff16601c14155b15611be05750600090506004611c64565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611c34573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611c5d57600060019250925050611c64565b9150600090505b94509492505050565b6000806001600160ff1b03831681611c8a60ff86901c601b61259e565b9050611c9887828885611b80565b935093505050935093915050565b828054611cb29061262c565b90600052602060002090601f016020900481019282611cd45760008555611d1a565b82601f10611ced57805160ff1916838001178555611d1a565b82800160010185558215611d1a579182015b82811115611d1a578251825591602001919060010190611cff565b50611d26929150611d9e565b5090565b828054611d369061262c565b90600052602060002090601f016020900481019282611d585760008555611d1a565b82601f10611d715782800160ff19823516178555611d1a565b82800160010185558215611d1a579182015b82811115611d1a578235825591602001919060010190611d83565b5b80821115611d265760008155600101611d9f565b80356001600160a01b03811681146115a957600080fd5b60008083601f840112611ddc57600080fd5b50813567ffffffffffffffff811115611df457600080fd5b6020830191508360208285010111156119be57600080fd5b803560ff811681146115a957600080fd5b600060208284031215611e2f57600080fd5b61102082611db3565b60008060408385031215611e4b57600080fd5b611e5483611db3565b9150611e6260208401611db3565b90509250929050565b600080600060608486031215611e8057600080fd5b611e8984611db3565b9250611e9760208501611db3565b9150604084013590509250925092565b60008060008060808587031215611ebd57600080fd5b611ec685611db3565b9350611ed460208601611db3565b925060408501359150606085013567ffffffffffffffff80821115611ef857600080fd5b818701915087601f830112611f0c57600080fd5b813581811115611f1e57611f1e6126ee565b604051601f8201601f19908116603f01168101908382118183101715611f4657611f466126ee565b816040528281528a6020848701011115611f5f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f9657600080fd5b611f9f83611db3565b915060208301358015158114611fb457600080fd5b809150509250929050565b600080600080600060808688031215611fd757600080fd5b611fe086611db3565b9450602086013567ffffffffffffffff811115611ffc57600080fd5b61200888828901611dca565b909550935061201b905060408701611e0c565b915061202960608701611e0c565b90509295509295909350565b60008060008060008060008060c0898b03121561205157600080fd5b61205a89611db3565b9750602089013567ffffffffffffffff8082111561207757600080fd5b6120838c838d01611dca565b909950975087915061209760408c01611e0c565b96506120a560608c01611e0c565b955060808b0135945060a08b01359150808211156120c257600080fd5b506120cf8b828c01611dca565b999c989b5096995094979396929594505050565b600080604083850312156120f657600080fd5b6120ff83611db3565b946020939093013593505050565b60006020828403121561211f57600080fd5b813561102081612704565b60006020828403121561213c57600080fd5b815161102081612704565b6000806020838503121561215a57600080fd5b823567ffffffffffffffff81111561217157600080fd5b61217d85828601611dca565b90969095509350505050565b60006020828403121561219b57600080fd5b5035919050565b6000806000806000608086880312156121ba57600080fd5b85359450602086013567ffffffffffffffff811115611ffc57600080fd5b600081518084526121f0816020860160208601612600565b601f01601f19169290920160200192915050565b60008151612216818560208601612600565b9290920192915050565b8054600090600181811c908083168061223a57607f831692505b602080841082141561225c57634e487b7160e01b600052602260045260246000fd5b8180156122705760018114612281576122ae565b60ff198616895284890196506122ae565b60008881526020902060005b868110156122a65781548b82015290850190830161228d565b505084890196505b50505050505092915050565b757b226e616d65223a2247617264656e20546f6d62202360501b815285516000906122ec816016850160208b01612600565b7f222c226465736372697074696f6e223a22415045732061726520626f7265642c6016918401918201527f204e4654732061726520626f72656420616e64207468652077686f6c6520737060368201527f61636520697320626f7265642c206e6f77207468652047617264656e20546f6d60568201527f6220686173206f70656e65642c206c65742074686520706172747920726f636b60768201527f3a205b47617264656e20546f6d625d2868747470733a2f2f7777772e6e66746d60968201527f656d652e636c75622f67617264656e546f6d622e68746d6c29222c22696d616760b68201526432911d101160d91b60d682015286516123f58160db840160208b01612600565b6124ad61249d61249761246061245a61241360db878901018d612220565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a20228152742a37b6b139ba37b7329116113b30b63ab2911d101160591b602082015260350190565b8a612204565b7f227d2c207b2274726169745f74797065223a2022476f6f6473222c2276616c7581526432911d101160d91b602082015260250190565b87612204565b63227d5d7d60e01b815260040190565b9998505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516124f281601d850160208701612600565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612532908301846121d8565b9695505050505050565b60208152600061102060208301846121d8565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b600082198211156125b1576125b1612696565b500190565b6000826125c5576125c56126ac565b500490565b60008160001904831182151516156125e4576125e4612696565b500290565b6000828210156125fb576125fb612696565b500390565b60005b8381101561261b578181015183820152602001612603565b83811115610cc95750506000910152565b600181811c9082168061264057607f821691505b6020821081141561266157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561267b5761267b612696565b5060010190565b600082612691576126916126ac565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e0357600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220845767a1ae6e5534a9483b67b924ca4179b9caa6e41286d6fc51c4295a0dcbce64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ad570bc60adc14772542503d4d68b04486d18606000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f7777772e6e66746d656d652e636c75622f746f6d6273746f6e652f726573756c742f00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenUri (string): https://www.nftmeme.club/tombstone/result/
Arg [1] : _signAddress (address): 0xad570BC60ADC14772542503d4d68B04486d18606

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000ad570bc60adc14772542503d4d68b04486d18606
Arg [2] : 000000000000000000000000000000000000000000000000000000000000002a
Arg [3] : 68747470733a2f2f7777772e6e66746d656d652e636c75622f746f6d6273746f
Arg [4] : 6e652f726573756c742f00000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

271:4829:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9112:630:6;;;;;;:::i;:::-;;:::i;:::-;;;12822:14:8;;12815:22;12797:41;;12785:2;12770:18;9112:630:6;;;;;;;;428:26:5;;;;;-1:-1:-1;;;;;428:26:5;;;;;;-1:-1:-1;;;;;11841:32:8;;;11823:51;;11811:2;11796:18;428:26:5;11677:203:8;9996:98:6;;;:::i;:::-;;;;;;;:::i;16309:214::-;;;;;;:::i;:::-;;:::i;15769:390::-;;;;;;:::i;:::-;;:::i;:::-;;891:556:5;;;;;;:::i;:::-;;:::i;5851:317:6:-;3882:1:5;6121:12:6;5912:7;6105:13;:28;-1:-1:-1;;6105:46:6;5851:317;;;17421:25:8;;;17409:2;17394:18;5851:317:6;17275:177:8;19918:2756:6;;;;;;:::i;:::-;;:::i;3353:104:5:-;;;;;;:::i;:::-;;:::i;347:41::-;;384:4;347:41;;22765:179:6;;;;;;:::i;:::-;;:::i;2692:261:5:-;;;;;;:::i;:::-;;:::i;11348:150:6:-;;;;;;:::i;:::-;;:::i;2961:267:5:-;;;;;;:::i;:::-;;:::i;7002:230:6:-;;;;;;:::i;:::-;;:::i;1831:101:0:-;;;:::i;1201:85::-;1273:6;;-1:-1:-1;;;;;1273:6:0;1201:85;;10165:102:6;;;:::i;16850:303::-;;;;;;:::i;:::-;;:::i;3236:109:5:-;;;;;;:::i;:::-;;:::i;23525:388:6:-;;;;;;:::i;:::-;;:::i;3465:212:5:-;;;;;;:::i;:::-;;:::i;395:26::-;;;:::i;17303:162:6:-;;;;;;:::i;:::-;-1:-1:-1;;;;;17423:25:6;;;17400:4;17423:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17303:162;2081:198:0;;;;;;:::i;:::-;;:::i;9112:630:6:-;9197:4;-1:-1:-1;;;;;;;;;9515:25:6;;;;:101;;-1:-1:-1;;;;;;;;;;9591:25:6;;;9515:101;:177;;;-1:-1:-1;;;;;;;;;;9667:25:6;;;9515:177;9496:196;9112:630;-1:-1:-1;;9112:630:6:o;9996:98::-;10050:13;10082:5;10075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9996:98;:::o;16309:214::-;16385:7;16409:16;16417:7;16409;:16::i;:::-;16404:64;;16434:34;;-1:-1:-1;;;16434:34:6;;;;;;;;;;;16404:64;-1:-1:-1;16486:24:6;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;16486:30:6;;16309:214::o;15769:390::-;15849:13;15865:16;15873:7;15865;:16::i;:::-;15849:32;-1:-1:-1;39008:10:6;-1:-1:-1;;;;;15896:28:6;;;15892:172;;15943:44;15960:5;39008:10;17303:162;:::i;15943:44::-;15938:126;;16014:35;;-1:-1:-1;;;16014:35:6;;;;;;;;;;;15938:126;16074:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;16074:35:6;-1:-1:-1;;;;;16074:35:6;;;;;;;;;16124:28;;16074:24;;16124:28;;;;;;;15839:320;15769:390;;:::o;891:556:5:-;3882:1;6121:12:6;5912:7;6105:13;384:4:5;;6105:28:6;;-1:-1:-1;;6105:46:6;1046:26:5;1038:47;;;;-1:-1:-1;;;1038:47:5;;15201:2:8;1038:47:5;;;15183:21:8;15240:1;15220:18;;;15213:29;-1:-1:-1;;;15258:18:8;;;15251:38;15306:18;;1038:47:5;;;;;;;;;1105:25;;;;:12;:25;;;;;;;;1104:26;1096:77;;;;-1:-1:-1;;;1096:77:5;;15537:2:8;1096:77:5;;;15519:21:8;15576:2;15556:18;;;15549:30;15615:34;15595:18;;;15588:62;-1:-1:-1;;;15666:18:8;;;15659:35;15711:19;;1096:77:5;15335:401:8;1096:77:5;1192:32;1201:11;1213:10;;1192:8;:32::i;:::-;1184:69;;;;-1:-1:-1;;;1184:69:5;;16346:2:8;1184:69:5;;;16328:21:8;16385:2;16365:18;;;16358:30;16424:27;16404:18;;;16397:55;16469:18;;1184:69:5;16144:349:8;1184:69:5;1264:25;;;;:12;:25;;;;;;;;;:32;;-1:-1:-1;;1264:32:5;1292:4;1264:32;;;1334;;;;;;;;;;;;;;;;;;;;;;;;;;;1343:6;;;;;;1334:32;;1343:6;;;;1334:32;;;;;;;;-1:-1:-1;1334:32:5;;;-1:-1:-1;;;1334:32:5;;;;;;;;;;;;;;;;;;1307:8;;1316:14;5602:7:6;5628:13;;5547:101;1316:14:5;1307:24;;;;;;;;;;;;-1:-1:-1;1307:24:5;:59;;;;:24;;:59;;:24;;:59;;;;;:::i;:::-;-1:-1:-1;1307:59:5;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1307:59:5;;;;;;;;;;;;;;;1382:35;1392:12;39008:10:6;;38922:103;1392:12:5;1382:35;;;-1:-1:-1;;;;;12570:32:8;;;12552:51;;12634:2;12619:18;;12612:34;;;12525:18;1382:35:5;;;;;;;1428:11;1434:2;1437:1;1428:5;:11::i;:::-;891:556;;;;;;;;:::o;19918:2756:6:-;20047:27;20077;20096:7;20077:18;:27::i;:::-;20047:57;;20160:4;-1:-1:-1;;;;;20119:45:6;20135:19;-1:-1:-1;;;;;20119:45:6;;20115:86;;20173:28;;-1:-1:-1;;;20173:28:6;;;;;;;;;;;20115:86;20213:27;19057:24;;;:15;:24;;;;;19275:26;;39008:10;18694:30;;;-1:-1:-1;;;;;18391:28:6;;18672:20;;;18669:56;20396:179;;20488:43;20505:4;39008:10;17303:162;:::i;20488:43::-;20483:92;;20540:35;;-1:-1:-1;;;20540:35:6;;;;;;;;;;;20483:92;-1:-1:-1;;;;;20590:16:6;;20586:52;;20615:23;;-1:-1:-1;;;20615:23:6;;;;;;;;;;;20586:52;20781:15;20778:157;;;20919:1;20898:19;20891:30;20778:157;-1:-1:-1;;;;;21307:24:6;;;;;;;:18;:24;;;;;;21305:26;;-1:-1:-1;;21305:26:6;;;21375:22;;;;;;;;;21373:24;;-1:-1:-1;21373:24:6;;;14660:11;14635:23;14631:41;14618:63;-1:-1:-1;;;14618:63:6;21661:26;;;;:17;:26;;;;;:172;-1:-1:-1;;;21950:47:6;;21946:617;;22054:1;22044:11;;22022:19;22175:30;;;:17;:30;;;;;;22171:378;;22311:13;;22296:11;:28;22292:239;;22456:30;;;;:17;:30;;;;;:52;;;22292:239;22004:559;21946:617;22607:7;22603:2;-1:-1:-1;;;;;22588:27:6;22597:4;-1:-1:-1;;;;;22588:27:6;;;;;;;;;;;20037:2637;;;19918:2756;;;:::o;3353:104:5:-;1094:13:0;:11;:13::i;:::-;3430:19:5::1;:12;3445:4:::0;;3430:19:::1;:::i;:::-;;3353:104:::0;;:::o;22765:179:6:-;22898:39;22915:4;22921:2;22925:7;22898:39;;;;;;;;;;;;:16;:39::i;2692:261:5:-;1094:13:0;:11;:13::i;:::-;3882:1:5;6121:12:6;5912:7;6105:13;384:4:5::1;::::0;6105:28:6;;-1:-1:-1;;6105:46:6;2814:26:5::1;2806:47;;;::::0;-1:-1:-1;;;2806:47:5;;15201:2:8;2806:47:5::1;::::0;::::1;15183:21:8::0;15240:1;15220:18;;;15213:29;-1:-1:-1;;;15258:18:8;;;15251:38;15306:18;;2806:47:5::1;14999:331:8::0;2806:47:5::1;2891:32;;;;;;;;2900:6;;2891:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;-1:-1:-1;2891:32:5;;;-1:-1:-1;;;2891:32:5::1;::::0;;::::1;;::::0;::::1;::::0;;::::1;::::0;;;;;;;;2864:8:::1;::::0;2873:14:::1;5602:7:6::0;5628:13;;5547:101;2873:14:5::1;2864:24:::0;;::::1;::::0;;::::1;::::0;;;;;;-1:-1:-1;2864:24:5;:59;;;;:24;;:59:::1;::::0;:24;;:59;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;2864:59:5::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;;;-1:-1:-1::0;;2864:59:5;;;;::::1;::::0;;;;;;;::::1;::::0;;;2934:11:::1;::::0;2940:2;;2934:5:::1;:11::i;:::-;2692:261:::0;;;;;:::o;11348:150:6:-;11420:7;11462:27;11481:7;11462:18;:27::i;2961:267:5:-;1094:13:0;:11;:13::i;:::-;3089:16:5::1;3097:7;3089;:16::i;:::-;3081:76;;;;-1:-1:-1::0;;;3081:76:5::1;;;;;;;:::i;:::-;3188:32;;;;;;;;3197:6;;3188:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;-1:-1:-1;3188:32:5;;;-1:-1:-1;;;3188:32:5::1;::::0;;::::1;;::::0;;::::1;::::0;;;;;;::::1;::::0;;;;;3168:17;;;:8:::1;:17:::0;;;;;:52;;;;:17;;:52:::1;::::0;:17;;:52;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;3168:52:5::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;;;-1:-1:-1::0;;3168:52:5;;;;::::1;::::0;;;;;;;::::1;::::0;;-1:-1:-1;;;;;2961:267:5:o;7002:230:6:-;7074:7;-1:-1:-1;;;;;7097:19:6;;7093:60;;7125:28;;-1:-1:-1;;;7125:28:6;;;;;;;;;;;7093:60;-1:-1:-1;;;;;;7170:25:6;;;;;:18;:25;;;;;;1317:13;7170:55;;7002:230::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;10165:102:6:-;10221:13;10253:7;10246:14;;;;;:::i;16850:303::-;-1:-1:-1;;;;;16948:31:6;;39008:10;16948:31;16944:61;;;16988:17;;-1:-1:-1;;;16988:17:6;;;;;;;;;;;16944:61;39008:10;17016:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;17016:49:6;;;;;;;;;;;;:60;;-1:-1:-1;;17016:60:6;;;;;;;;;;17091:55;;12797:41:8;;;17016:49:6;;39008:10;17091:55;;12770:18:8;17091:55:6;;;;;;;16850:303;;:::o;3236:109:5:-;1094:13:0;:11;:13::i;:::-;3313:11:5::1;:24:::0;;-1:-1:-1;;;;;;3313:24:5::1;-1:-1:-1::0;;;;;3313:24:5;;;::::1;::::0;;;::::1;::::0;;3236:109::o;23525:388:6:-;23686:31;23699:4;23705:2;23709:7;23686:12;:31::i;:::-;-1:-1:-1;;;;;23731:14:6;;;:19;23727:180;;23769:56;23800:4;23806:2;23810:7;23819:5;23769:30;:56::i;:::-;23764:143;;23852:40;;-1:-1:-1;;;23852:40:6;;;;;;;;;;;23764:143;23525:388;;;;:::o;3465:212:5:-;3530:13;3566:16;3574:7;3566;:16::i;:::-;3558:76;;;;-1:-1:-1;;;3558:76:5;;;;;;;:::i;:::-;3652:20;3664:7;3652:11;:20::i;395:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;14391:2:8;2161:73:0::1;::::0;::::1;14373:21:8::0;14430:2;14410:18;;;14403:30;14469:34;14449:18;;;14442:62;-1:-1:-1;;;14520:18:8;;;14513:36;14566:19;;2161:73:0::1;14189:402:8::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;17714:277:6:-;17779:4;17833:7;3882:1:5;17814:26:6;;:65;;;;;17866:13;;17856:7;:23;17814:65;:151;;;;-1:-1:-1;;17916:26:6;;;;:17;:26;;;;;;-1:-1:-1;;;17916:44:6;:49;;17714:277::o;1455:314:5:-;1543:4;;39008:10:6;1595:70:5;;;-1:-1:-1;;;;;1612:39:5;;;;1595:70;;;11582:19:8;11617:12;;11610:28;;;11654:12;;1595:70:5;;;-1:-1:-1;;1595:70:5;;;;;;;;;1585:81;;1595:70;1585:81;;;;1750:11;;1684:62;;;;;;;;;;;;;;;;;;1585:81;-1:-1:-1;;;;;;1750:11:5;;;;1684:62;;1735:10;;;;;;1684:62;;1735:10;;;;1684:62;;;;;;;;;-1:-1:-1;1684:42:5;;-1:-1:-1;1684:17:5;;-1:-1:-1;1684:40:5;;-1:-1:-1;1684:42:5:i;:::-;:50;;:62::i;:::-;-1:-1:-1;;;;;1684:77:5;;;1455:314;-1:-1:-1;;;;;1455:314:5:o;27082:2396:6:-;27154:20;27177:13;27204;27200:44;;27226:18;;-1:-1:-1;;;27226:18:6;;;;;;;;;;;27200:44;-1:-1:-1;;;;;27719:22:6;;;;;;:18;:22;;;;1452:2;27719:22;;;:71;;27757:32;27745:45;;27719:71;;;28026:31;;;:17;:31;;;;;-1:-1:-1;15080:15:6;;15054:24;15050:46;14660:11;14635:23;14631:41;14628:52;14618:63;;28026:170;;28255:23;;;;28026:31;;27719:22;;28744:25;27719:22;;28600:328;29005:1;28991:12;28987:20;28946:339;29045:3;29036:7;29033:16;28946:339;;29259:7;29249:8;29246:1;29219:25;29216:1;29213;29208:59;29097:1;29084:15;28946:339;;;-1:-1:-1;29316:13:6;29312:45;;29338:19;;-1:-1:-1;;;29338:19:6;;;;;;;;;;;29312:45;29372:13;:19;-1:-1:-1;3430:19:5::1;3353:104:::0;;:::o;12472:1249:6:-;12539:7;12573;;3882:1:5;12619:23:6;12615:1042;;12671:13;;12664:4;:20;12660:997;;;12708:14;12725:23;;;:17;:23;;;;;;-1:-1:-1;;;12812:24:6;;12808:831;;13467:111;13474:11;13467:111;;-1:-1:-1;;;13544:6:6;13526:25;;;;:17;:25;;;;;;13467:111;;;13610:6;12472:1249;-1:-1:-1;;;12472:1249:6:o;12808:831::-;12686:971;12660:997;13683:31;;-1:-1:-1;;;13683:31:6;;;;;;;;;;;1359:130:0;1273:6;;-1:-1:-1;;;;;1273:6:0;39008:10:6;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;16700:2:8;1414:68:0;;;16682:21:8;;;16719:18;;;16712:30;16778:34;16758:18;;;16751:62;16830:18;;1414:68:0;16498:356:8;2433:187:0;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;-1:-1:-1;;;;;;2541:17:0;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;25939:697:6:-;26117:88;;-1:-1:-1;;;26117:88:6;;26097:4;;-1:-1:-1;;;;;26117:45:6;;;;;:88;;39008:10;;26184:4;;26190:7;;26199:5;;26117:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26117:88:6;;;;;;;;-1:-1:-1;;26117:88:6;;;;;;;;;;;;:::i;:::-;;;26113:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26395:13:6;;26391:229;;26440:40;;-1:-1:-1;;;26440:40:6;;;;;;;;;;;26391:229;26580:6;26574:13;26565:6;26561:2;26557:15;26550:38;26113:517;-1:-1:-1;;;;;;26273:64:6;-1:-1:-1;;;26273:64:6;;-1:-1:-1;26113:517:6;25939:697;;;;;;:::o;1777:907:5:-;1838:13;1988:658;2100:25;2117:7;2100:16;:25::i;:::-;2356:10;:8;:10::i;:::-;2367:17;;;;:8;:17;;;;;2487:27;;;;2478:37;;2487:27;;2478:8;:37::i;:::-;2565:17;;;;:8;:17;;;;;:23;;;2556:33;;2565:23;;;;;2556:8;:33::i;:::-;2028:595;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1988:13;:658::i;:::-;1895:770;;;;;;;;:::i;:::-;;;;;;;;;;;;;1863:813;;1777:907;;;:::o;8012:265:4:-;8211:58;;8925:66:8;8211:58:4;;;8913:79:8;9008:12;;;9001:28;;;8081:7:4;;9045:12:8;;8211:58:4;;;;;;;;;;;;8201:69;;;;;;8194:76;;8012:265;;;:::o;4308:227::-;4386:7;4406:17;4425:18;4447:27;4458:4;4464:9;4447:10;:27::i;:::-;4405:69;;;;4484:18;4496:5;4484:11;:18::i;:::-;-1:-1:-1;4519:9:4;4308:227;-1:-1:-1;;;4308:227:4:o;328:703:3:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:3;;;;;;;;;;;;-1:-1:-1;;;627:10:3;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:3;;-1:-1:-1;773:2:3;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:3;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:3;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:3;;;;;;;;-1:-1:-1;972:11:3;981:2;972:11;;:::i;:::-;;;844:150;;3685:105:5;3737:13;3770:12;3763:19;;;;;:::i;3899:499::-;3952:19;3988:2;3994:1;3988:7;3984:32;;;-1:-1:-1;3998:18:5;;;;;;;;;;;;-1:-1:-1;;;3998:18:5;;;;3984:32;4031:2;4037:1;4031:7;4027:30;;;-1:-1:-1;4041:16:5;;;;;;;;;;;;-1:-1:-1;;;4041:16:5;;;;4027:30;4072:2;4078:1;4072:7;4068:31;;;-1:-1:-1;4082:17:5;;;;;;;;;;;;-1:-1:-1;;;4082:17:5;;;;4068:31;4114:2;4120:1;4114:7;4110:29;;;-1:-1:-1;4124:15:5;;;;;;;;;;;;-1:-1:-1;;;4124:15:5;;;;4110:29;4154:2;4160:1;4154:7;4150:32;;;-1:-1:-1;4164:18:5;;;;;;;;;;;;-1:-1:-1;;;4164:18:5;;;;4150:32;4197:2;4203:1;4197:7;4193:29;;;-1:-1:-1;4207:15:5;;;;;;;;;;;;-1:-1:-1;;;4207:15:5;;;;4193:29;4237:2;4243:1;4237:7;4233:28;;;-1:-1:-1;4247:14:5;;;;;;;;;;;;-1:-1:-1;;;4247:14:5;;;;4233:28;4276:2;4282:1;4276:7;4272:31;;;-1:-1:-1;4286:17:5;;;;;;;;;;;;-1:-1:-1;;;4286:17:5;;;;4272:31;4318:2;4324:1;4318:7;4314:29;;;-1:-1:-1;4328:15:5;;;;;;;;;;;;-1:-1:-1;;;4328:15:5;;;;4314:29;4358:2;4364;4358:8;4354:36;;;-1:-1:-1;4368:22:5;;;;;;;;;;;;-1:-1:-1;;;4368:22:5;;;;4354:36;3899:499;;;:::o;4406:687::-;4459:19;4495:2;4501:1;4495:7;4491:28;;;-1:-1:-1;4505:14:5;;;;;;;;;;;;-1:-1:-1;;;4505:14:5;;;;4491:28;4534:2;4540:1;4534:7;4530:28;;;-1:-1:-1;4544:14:5;;;;;;;;;;;;-1:-1:-1;;;4544:14:5;;;;4530:28;4573:2;4579:1;4573:7;4569:30;;;-1:-1:-1;4583:16:5;;;;;;;;;;;;-1:-1:-1;;;4583:16:5;;;;4569:30;4614:2;4620:1;4614:7;4610:30;;;-1:-1:-1;4624:16:5;;;;;;;;;;;;-1:-1:-1;;;4624:16:5;;;;4610:30;4655:2;4661:1;4655:7;4651:29;;;-1:-1:-1;4665:15:5;;;;;;;;;;;;-1:-1:-1;;;4665:15:5;;;;4651:29;4695:2;4701:1;4695:7;4691:27;;;-1:-1:-1;4705:13:5;;;;;;;;;;;;-1:-1:-1;;;4705:13:5;;;;4691:27;4733:2;4739:1;4733:7;4729:32;;;-1:-1:-1;4743:18:5;;;;;;;;;;;;-1:-1:-1;;;4743:18:5;;;;4729:32;4776:2;4782:1;4776:7;4772:30;;;-1:-1:-1;4786:16:5;;;;;;;;;;;;-1:-1:-1;;;4786:16:5;;;;4772:30;4817:2;4823:1;4817:7;4813:28;;;-1:-1:-1;4827:14:5;;;;;;;;;;;;-1:-1:-1;;;4827:14:5;;;;4813:28;4856:2;4862;4856:8;4852:29;;;-1:-1:-1;4866:15:5;;;;;;;;;;;;-1:-1:-1;;;4866:15:5;;;;4852:29;4896:2;4902;4896:8;4892:28;;;-1:-1:-1;4906:14:5;;;;;;;;;;;;-1:-1:-1;;;4906:14:5;;;;4892:28;4935:2;4941;4935:8;4931:33;;;-1:-1:-1;4945:19:5;;;;;;;;;;;;-1:-1:-1;;;4945:19:5;;;;4931:33;4979:2;4985;4979:8;4975:32;;;-1:-1:-1;4989:18:5;;;;;;;;;;;;-1:-1:-1;;;4989:18:5;;;;4975:32;5022:2;5028;5022:8;5018:29;;;-1:-1:-1;5032:15:5;;;;;;;;;;;;-1:-1:-1;;;5032:15:5;;;;5018:29;5062:2;5068;5062:8;5058:27;;;-1:-1:-1;;5072:13:5;;;;;;;;;;;;-1:-1:-1;;;5072:13:5;;;;;4406:687::o;505:2983:1:-;563:13;795:4;:11;810:1;795:16;791:31;;;-1:-1:-1;;813:9:1;;;;;;;;;-1:-1:-1;813:9:1;;;505:2983::o;791:31::-;872:19;894:6;;;;;;;;;;;;;;;;;872:28;;1303:20;1362:1;1343:4;:11;1357:1;1343:15;;;;:::i;:::-;1342:21;;;;:::i;:::-;1337:27;;:1;:27;:::i;:::-;1326:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1326:39:1;;1303:62;;1497:1;1490:5;1486:13;1598:2;1590:6;1586:15;1705:4;1756;1750:11;1744:4;1740:22;1668:1403;1789:6;1780:7;1777:19;1668:1403;;;1891:1;1882:7;1878:15;1867:26;;1929:7;1923:14;2572:4;2564:5;2560:2;2556:14;2552:25;2542:8;2538:40;2532:47;2521:9;2513:67;2625:1;2614:9;2610:17;2597:30;;2715:4;2707:5;2703:2;2699:14;2695:25;2685:8;2681:40;2675:47;2664:9;2656:67;2768:1;2757:9;2753:17;2740:30;;2857:4;2849:5;2846:1;2842:13;2838:24;2828:8;2824:39;2818:46;2807:9;2799:66;2910:1;2899:9;2895:17;2882:30;;2991:4;2984:5;2980:16;2970:8;2966:31;2960:38;2949:9;2941:58;;3044:1;3033:9;3029:17;3016:30;;1668:1403;;;1672:104;;3229:1;3222:4;3216:11;3212:19;3249:1;3244:120;;;;3382:1;3377:71;;;;3205:243;;3244:120;3296:4;3292:1;3281:9;3277:17;3269:32;3345:4;3341:1;3330:9;3326:17;3318:32;3244:120;;3377:71;3429:4;3425:1;3414:9;3410:17;3402:32;3205:243;-1:-1:-1;3475:6:1;;505:2983;-1:-1:-1;;;;;505:2983:1:o;2243:1279:4:-;2324:7;2333:12;2554:9;:16;2574:2;2554:22;2550:966;;;2843:4;2828:20;;2822:27;2892:4;2877:20;;2871:27;2949:4;2934:20;;2928:27;2592:9;2920:36;2990:25;3001:4;2920:36;2822:27;2871;2990:10;:25::i;:::-;2983:32;;;;;;;;;2550:966;3036:9;:16;3056:2;3036:22;3032:484;;;3305:4;3290:20;;3284:27;3355:4;3340:20;;3334:27;3395:23;3406:4;3284:27;3334;3395:10;:23::i;:::-;3388:30;;;;;;;;3032:484;-1:-1:-1;3465:1:4;;-1:-1:-1;3469:35:4;3032:484;2243:1279;;;;;:::o;548:631::-;625:20;616:5;:29;;;;;;;;:::i;:::-;;612:561;;;548:631;:::o;612:561::-;721:29;712:5;:38;;;;;;;;:::i;:::-;;708:465;;;766:34;;-1:-1:-1;;;766:34:4;;13678:2:8;766:34:4;;;13660:21:8;13717:2;13697:18;;;13690:30;13756:26;13736:18;;;13729:54;13800:18;;766:34:4;13476:348:8;708:465:4;830:35;821:5;:44;;;;;;;;:::i;:::-;;817:356;;;881:41;;-1:-1:-1;;;881:41:4;;14031:2:8;881:41:4;;;14013:21:8;14070:2;14050:18;;;14043:30;14109:33;14089:18;;;14082:61;14160:18;;881:41:4;13829:355:8;817:356:4;952:30;943:5;:39;;;;;;;;:::i;:::-;;939:234;;;998:44;;-1:-1:-1;;;998:44:4;;14798:2:8;998:44:4;;;14780:21:8;14837:2;14817:18;;;14810:30;14876:34;14856:18;;;14849:62;-1:-1:-1;;;14927:18:8;;;14920:32;14969:19;;998:44:4;14596:398:8;939:234:4;1072:30;1063:5;:39;;;;;;;;:::i;:::-;;1059:114;;;1118:44;;-1:-1:-1;;;1118:44:4;;15943:2:8;1118:44:4;;;15925:21:8;15982:2;15962:18;;;15955:30;16021:34;16001:18;;;15994:62;-1:-1:-1;;;16072:18:8;;;16065:32;16114:19;;1118:44:4;15741:398:8;5716:1603:4;5842:7;;6766:66;6753:79;;6749:161;;;-1:-1:-1;6864:1:4;;-1:-1:-1;6868:30:4;6848:51;;6749:161;6923:1;:7;;6928:2;6923:7;;:18;;;;;6934:1;:7;;6939:2;6934:7;;6923:18;6919:100;;;-1:-1:-1;6973:1:4;;-1:-1:-1;6977:30:4;6957:51;;6919:100;7130:24;;;7113:14;7130:24;;;;;;;;;13076:25:8;;;13149:4;13137:17;;13117:18;;;13110:45;;;;13171:18;;;13164:34;;;13214:18;;;13207:34;;;7130:24:4;;13048:19:8;;7130:24:4;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7130:24:4;;-1:-1:-1;;7130:24:4;;;-1:-1:-1;;;;;;;7168:20:4;;7164:101;;7220:1;7224:29;7204:50;;;;;;;7164:101;7283:6;-1:-1:-1;7291:20:4;;-1:-1:-1;5716:1603:4;;;;;;;;:::o;4789:336::-;4899:7;;-1:-1:-1;;;;;4944:80:4;;4899:7;5050:25;5066:3;5051:18;;;5073:2;5050:25;:::i;:::-;5034:42;;5093:25;5104:4;5110:1;5113;5116;5093:10;:25::i;:::-;5086:32;;;;;;4789:336;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:8;82:20;;-1:-1:-1;;;;;131:31:8;;121:42;;111:70;;177:1;174;167:12;192:347;243:8;253:6;307:3;300:4;292:6;288:17;284:27;274:55;;325:1;322;315:12;274:55;-1:-1:-1;348:20:8;;391:18;380:30;;377:50;;;423:1;420;413:12;377:50;460:4;452:6;448:17;436:29;;512:3;505:4;496:6;488;484:19;480:30;477:39;474:59;;;529:1;526;519:12;544:156;610:20;;670:4;659:16;;649:27;;639:55;;690:1;687;680:12;705:186;764:6;817:2;805:9;796:7;792:23;788:32;785:52;;;833:1;830;823:12;785:52;856:29;875:9;856:29;:::i;896:260::-;964:6;972;1025:2;1013:9;1004:7;1000:23;996:32;993:52;;;1041:1;1038;1031:12;993:52;1064:29;1083:9;1064:29;:::i;:::-;1054:39;;1112:38;1146:2;1135:9;1131:18;1112:38;:::i;:::-;1102:48;;896:260;;;;;:::o;1161:328::-;1238:6;1246;1254;1307:2;1295:9;1286:7;1282:23;1278:32;1275:52;;;1323:1;1320;1313:12;1275:52;1346:29;1365:9;1346:29;:::i;:::-;1336:39;;1394:38;1428:2;1417:9;1413:18;1394:38;:::i;:::-;1384:48;;1479:2;1468:9;1464:18;1451:32;1441:42;;1161:328;;;;;:::o;1494:1138::-;1589:6;1597;1605;1613;1666:3;1654:9;1645:7;1641:23;1637:33;1634:53;;;1683:1;1680;1673:12;1634:53;1706:29;1725:9;1706:29;:::i;:::-;1696:39;;1754:38;1788:2;1777:9;1773:18;1754:38;:::i;:::-;1744:48;;1839:2;1828:9;1824:18;1811:32;1801:42;;1894:2;1883:9;1879:18;1866:32;1917:18;1958:2;1950:6;1947:14;1944:34;;;1974:1;1971;1964:12;1944:34;2012:6;2001:9;1997:22;1987:32;;2057:7;2050:4;2046:2;2042:13;2038:27;2028:55;;2079:1;2076;2069:12;2028:55;2115:2;2102:16;2137:2;2133;2130:10;2127:36;;;2143:18;;:::i;:::-;2218:2;2212:9;2186:2;2272:13;;-1:-1:-1;;2268:22:8;;;2292:2;2264:31;2260:40;2248:53;;;2316:18;;;2336:22;;;2313:46;2310:72;;;2362:18;;:::i;:::-;2402:10;2398:2;2391:22;2437:2;2429:6;2422:18;2477:7;2472:2;2467;2463;2459:11;2455:20;2452:33;2449:53;;;2498:1;2495;2488:12;2449:53;2554:2;2549;2545;2541:11;2536:2;2528:6;2524:15;2511:46;2599:1;2594:2;2589;2581:6;2577:15;2573:24;2566:35;2620:6;2610:16;;;;;;;1494:1138;;;;;;;:::o;2637:347::-;2702:6;2710;2763:2;2751:9;2742:7;2738:23;2734:32;2731:52;;;2779:1;2776;2769:12;2731:52;2802:29;2821:9;2802:29;:::i;:::-;2792:39;;2881:2;2870:9;2866:18;2853:32;2928:5;2921:13;2914:21;2907:5;2904:32;2894:60;;2950:1;2947;2940:12;2894:60;2973:5;2963:15;;;2637:347;;;;;:::o;2989:625::-;3083:6;3091;3099;3107;3115;3168:3;3156:9;3147:7;3143:23;3139:33;3136:53;;;3185:1;3182;3175:12;3136:53;3208:29;3227:9;3208:29;:::i;:::-;3198:39;;3288:2;3277:9;3273:18;3260:32;3315:18;3307:6;3304:30;3301:50;;;3347:1;3344;3337:12;3301:50;3386:58;3436:7;3427:6;3416:9;3412:22;3386:58;:::i;:::-;3463:8;;-1:-1:-1;3360:84:8;-1:-1:-1;3517:36:8;;-1:-1:-1;3549:2:8;3534:18;;3517:36;:::i;:::-;3507:46;;3572:36;3604:2;3593:9;3589:18;3572:36;:::i;:::-;3562:46;;2989:625;;;;;;;;:::o;3619:1003::-;3742:6;3750;3758;3766;3774;3782;3790;3798;3851:3;3839:9;3830:7;3826:23;3822:33;3819:53;;;3868:1;3865;3858:12;3819:53;3891:29;3910:9;3891:29;:::i;:::-;3881:39;;3971:2;3960:9;3956:18;3943:32;3994:18;4035:2;4027:6;4024:14;4021:34;;;4051:1;4048;4041:12;4021:34;4090:58;4140:7;4131:6;4120:9;4116:22;4090:58;:::i;:::-;4167:8;;-1:-1:-1;4064:84:8;-1:-1:-1;4064:84:8;;-1:-1:-1;4221:36:8;4253:2;4238:18;;4221:36;:::i;:::-;4211:46;;4276:36;4308:2;4297:9;4293:18;4276:36;:::i;:::-;4266:46;;4359:3;4348:9;4344:19;4331:33;4321:43;;4417:3;4406:9;4402:19;4389:33;4373:49;;4447:2;4437:8;4434:16;4431:36;;;4463:1;4460;4453:12;4431:36;;4502:60;4554:7;4543:8;4532:9;4528:24;4502:60;:::i;:::-;3619:1003;;;;-1:-1:-1;3619:1003:8;;-1:-1:-1;3619:1003:8;;;;;;4581:8;-1:-1:-1;;;3619:1003:8:o;4627:254::-;4695:6;4703;4756:2;4744:9;4735:7;4731:23;4727:32;4724:52;;;4772:1;4769;4762:12;4724:52;4795:29;4814:9;4795:29;:::i;:::-;4785:39;4871:2;4856:18;;;;4843:32;;-1:-1:-1;;;4627:254:8:o;4886:245::-;4944:6;4997:2;4985:9;4976:7;4972:23;4968:32;4965:52;;;5013:1;5010;5003:12;4965:52;5052:9;5039:23;5071:30;5095:5;5071:30;:::i;5136:249::-;5205:6;5258:2;5246:9;5237:7;5233:23;5229:32;5226:52;;;5274:1;5271;5264:12;5226:52;5306:9;5300:16;5325:30;5349:5;5325:30;:::i;5390:410::-;5461:6;5469;5522:2;5510:9;5501:7;5497:23;5493:32;5490:52;;;5538:1;5535;5528:12;5490:52;5578:9;5565:23;5611:18;5603:6;5600:30;5597:50;;;5643:1;5640;5633:12;5597:50;5682:58;5732:7;5723:6;5712:9;5708:22;5682:58;:::i;:::-;5759:8;;5656:84;;-1:-1:-1;5390:410:8;-1:-1:-1;;;;5390:410:8:o;5805:180::-;5864:6;5917:2;5905:9;5896:7;5892:23;5888:32;5885:52;;;5933:1;5930;5923:12;5885:52;-1:-1:-1;5956:23:8;;5805:180;-1:-1:-1;5805:180:8:o;5990:619::-;6084:6;6092;6100;6108;6116;6169:3;6157:9;6148:7;6144:23;6140:33;6137:53;;;6186:1;6183;6176:12;6137:53;6222:9;6209:23;6199:33;;6283:2;6272:9;6268:18;6255:32;6310:18;6302:6;6299:30;6296:50;;;6342:1;6339;6332:12;6614:257;6655:3;6693:5;6687:12;6720:6;6715:3;6708:19;6736:63;6792:6;6785:4;6780:3;6776:14;6769:4;6762:5;6758:16;6736:63;:::i;:::-;6853:2;6832:15;-1:-1:-1;;6828:29:8;6819:39;;;;6860:4;6815:50;;6614:257;-1:-1:-1;;6614:257:8:o;6876:185::-;6918:3;6956:5;6950:12;6971:52;7016:6;7011:3;7004:4;6997:5;6993:16;6971:52;:::i;:::-;7039:16;;;;;6876:185;-1:-1:-1;;6876:185:8:o;7066:973::-;7151:12;;7116:3;;7206:1;7226:18;;;;7279;;;;7306:61;;7360:4;7352:6;7348:17;7338:27;;7306:61;7386:2;7434;7426:6;7423:14;7403:18;7400:38;7397:161;;;7480:10;7475:3;7471:20;7468:1;7461:31;7515:4;7512:1;7505:15;7543:4;7540:1;7533:15;7397:161;7574:18;7601:104;;;;7719:1;7714:319;;;;7567:466;;7601:104;-1:-1:-1;;7634:24:8;;7622:37;;7679:16;;;;-1:-1:-1;7601:104:8;;7714:319;17530:1;17523:14;;;17567:4;17554:18;;7808:1;7822:165;7836:6;7833:1;7830:13;7822:165;;;7914:14;;7901:11;;;7894:35;7957:16;;;;7851:10;;7822:165;;;7826:3;;8016:6;8011:3;8007:16;8000:23;;7567:466;;;;;;;7066:973;;;;:::o;9068:1899::-;-1:-1:-1;;;9911:68:8;;10002:13;;9893:3;;10024:62;10002:13;10074:2;10065:12;;10058:4;10046:17;;10024:62;:::i;:::-;10150:66;10145:2;10105:16;;;10137:11;;;10130:87;10246:34;10241:2;10233:11;;10226:55;10310:34;10305:2;10297:11;;10290:55;10375:34;10369:3;10361:12;;10354:56;10440:34;10434:3;10426:12;;10419:56;10505:66;10499:3;10491:12;;10484:88;-1:-1:-1;;;10596:3:8;10588:12;;10581:44;10650:13;;10672:64;10650:13;10721:3;10713:12;;10706:4;10694:17;;10672:64;:::i;:::-;10752:209;10782:178;10808:151;10838:120;10864:93;10894:62;10951:3;10940:8;10936:2;10932:17;10928:27;10920:6;10894:62;:::i;:::-;8121:66;8109:79;;-1:-1:-1;;;8213:2:8;8204:12;;8197:75;8297:2;8288:12;;8044:262;10864:93;10856:6;10838:120;:::i;:::-;8388:66;8376:79;;-1:-1:-1;;;8480:2:8;8471:12;;8464:44;8533:2;8524:12;;8311:231;10808:151;10800:6;10782:178;:::i;:::-;-1:-1:-1;;;8612:33:8;;8670:1;8661:11;;8547:131;10752:209;10745:216;9068:1899;-1:-1:-1;;;;;;;;;9068:1899:8:o;10972:448::-;11234:31;11229:3;11222:44;11204:3;11295:6;11289:13;11311:62;11366:6;11361:2;11356:3;11352:12;11345:4;11337:6;11333:17;11311:62;:::i;:::-;11393:16;;;;11411:2;11389:25;;10972:448;-1:-1:-1;;10972:448:8:o;11885:488::-;-1:-1:-1;;;;;12154:15:8;;;12136:34;;12206:15;;12201:2;12186:18;;12179:43;12253:2;12238:18;;12231:34;;;12301:3;12296:2;12281:18;;12274:31;;;12079:4;;12322:45;;12347:19;;12339:6;12322:45;:::i;:::-;12314:53;11885:488;-1:-1:-1;;;;;;11885:488:8:o;13252:219::-;13401:2;13390:9;13383:21;13364:4;13421:44;13461:2;13450:9;13446:18;13438:6;13421:44;:::i;16859:411::-;17061:2;17043:21;;;17100:2;17080:18;;;17073:30;17139:34;17134:2;17119:18;;17112:62;-1:-1:-1;;;17205:2:8;17190:18;;17183:45;17260:3;17245:19;;16859:411::o;17583:128::-;17623:3;17654:1;17650:6;17647:1;17644:13;17641:39;;;17660:18;;:::i;:::-;-1:-1:-1;17696:9:8;;17583:128::o;17716:120::-;17756:1;17782;17772:35;;17787:18;;:::i;:::-;-1:-1:-1;17821:9:8;;17716:120::o;17841:168::-;17881:7;17947:1;17943;17939:6;17935:14;17932:1;17929:21;17924:1;17917:9;17910:17;17906:45;17903:71;;;17954:18;;:::i;:::-;-1:-1:-1;17994:9:8;;17841:168::o;18014:125::-;18054:4;18082:1;18079;18076:8;18073:34;;;18087:18;;:::i;:::-;-1:-1:-1;18124:9:8;;18014:125::o;18144:258::-;18216:1;18226:113;18240:6;18237:1;18234:13;18226:113;;;18316:11;;;18310:18;18297:11;;;18290:39;18262:2;18255:10;18226:113;;;18357:6;18354:1;18351:13;18348:48;;;-1:-1:-1;;18392:1:8;18374:16;;18367:27;18144:258::o;18407:380::-;18486:1;18482:12;;;;18529;;;18550:61;;18604:4;18596:6;18592:17;18582:27;;18550:61;18657:2;18649:6;18646:14;18626:18;18623:38;18620:161;;;18703:10;18698:3;18694:20;18691:1;18684:31;18738:4;18735:1;18728:15;18766:4;18763:1;18756:15;18620:161;;18407:380;;;:::o;18792:135::-;18831:3;-1:-1:-1;;18852:17:8;;18849:43;;;18872:18;;:::i;:::-;-1:-1:-1;18919:1:8;18908:13;;18792:135::o;18932:112::-;18964:1;18990;18980:35;;18995:18;;:::i;:::-;-1:-1:-1;19029:9:8;;18932:112::o;19049:127::-;19110:10;19105:3;19101:20;19098:1;19091:31;19141:4;19138:1;19131:15;19165:4;19162:1;19155:15;19181:127;19242:10;19237:3;19233:20;19230:1;19223:31;19273:4;19270:1;19263:15;19297:4;19294:1;19287:15;19313:127;19374:10;19369:3;19365:20;19362:1;19355:31;19405:4;19402:1;19395:15;19429:4;19426:1;19419:15;19445:127;19506:10;19501:3;19497:20;19494:1;19487:31;19537:4;19534:1;19527:15;19561:4;19558:1;19551:15;19577:127;19638:10;19633:3;19629:20;19626:1;19619:31;19669:4;19666:1;19659:15;19693:4;19690:1;19683:15;19709:131;-1:-1:-1;;;;;;19783:32:8;;19773:43;;19763:71;;19830:1;19827;19820:12

Swarm Source

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