ETH Price: $2,967.89 (-4.10%)
Gas: 2 Gwei

Token

The China NFT (CHINA)
 

Overview

Max Total Supply

5,888 CHINA

Holders

2,596

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
802050.eth
Balance
1 CHINA
0xc5d22d8f6a550c1510dd7e513689b6dbd9716943
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:
TheChinaNFT

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : TheChinaNFT.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.15;

import "./ERC721A.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";


contract TheChinaNFT is ERC721A, Ownable {
	using Strings for uint256;

	string private _uriPrefix;
	string private _uriSuffix;

	uint256 public maxSupply;
	uint256 public presaleSupply;
	uint256 public maxMintAmountPerAddress;
	uint256 public maxMintAmountPerAddressForVip;

	bytes32 private _presaleMerkleRoot;
	bytes32 private _vipAddressesMerkleRoot;

	enum SaleState { PAUSED, PRESALE, PUBLIC_SALE }

	mapping(address => uint256) public helpers;

	string private contractMetadataURI;

	SaleState public saleState;

	event SaleStateChanged(SaleState indexed oldSaleState, SaleState indexed newSaleState);
	event UriPrefixUpdated(string indexed oldURIprefix, string indexed newURIprefix);
	event UriSuffixUpdated(string indexed oldURIsuffix, string indexed newURIsuffix);
	event MaxSupplyUpdated(uint256 indexed oldMaxSupply, uint256 indexed newMaxSupply);
	event PresaleSupplyUpdated(uint256 indexed oldPresaleSupply, uint256 indexed newPresaleSupply);
	event MaxMintAmountPerAddressUpdated(uint256 indexed oldMaxMintAmountPerAddress, uint256 indexed newMaxMintAmountPerAddress);
	event MaxMintAmountPerAddressForVipUpdated(uint256 indexed oldMaxMintAmountPerAddressForVip, uint256 indexed newMaxMintAmountPerAddressForVip);
	event PresaleMerkleRootUpdated(bytes32 indexed oldPresaleMerkleRoot, bytes32 indexed newPresaleMerkleRoot);
	event VipAddressesMerkleRootUpdated(bytes32 indexed oldVipAddressesMerkleRoot, bytes32 indexed newVipAddressesMerkleRoot);


	constructor(string memory initUriPrefix, bytes32 initPresaleMerkleRoot, bytes32 initVipAddressesMerkleRoot) ERC721A("The China NFT", "CHINA") {
		maxSupply = 5888;
		presaleSupply = 5888;
		maxMintAmountPerAddress = 1;
		maxMintAmountPerAddressForVip = 2;

		_uriPrefix = initUriPrefix;
		_uriSuffix = ".json";
		_presaleMerkleRoot = initPresaleMerkleRoot;
		_vipAddressesMerkleRoot = initVipAddressesMerkleRoot;

		saleState = SaleState.PAUSED;
		contractMetadataURI = "ipfs://QmNXXHFw1LdBbHzBnCWCdBVDUF3mEqUMjnfra7GJ1YeRt6/metadata.json";
	}

	function mint(uint256 amount, bytes32[] calldata vipMerkleProof) external payable {
		require(tx.origin == _msgSender(), "The China NFT: contract denied");
		require(saleState == SaleState.PUBLIC_SALE, "The China NFT: minting is not in public sale");
		require(amount > 0 && _numberMinted(_msgSender()) + amount <= _maxMintAmount(_msgSender(), vipMerkleProof), "The China NFT: invalid mint amount");
		require(_totalMinted() + amount <= maxSupply, "The China NFT: max token supply exceeded");

		_safeMint(_msgSender(), amount);
	}

	function presaleMint(uint256 amount, bytes32[] calldata vipMerkleProof, bytes32[] calldata presaleMerkleProof) external payable {
		require(tx.origin == _msgSender(), "The China NFT: contract denied");
		require(saleState == SaleState.PRESALE, "The China NFT: minting is not in presale");
		require(amount > 0 && _numberMinted(_msgSender()) + amount <= _maxMintAmount(_msgSender(), vipMerkleProof), "The China NFT: invalid mint amount");
		require(_merkleProof(_msgSender(), presaleMerkleProof, _presaleMerkleRoot), "The China NFT: invalid merkle proof");

		uint256 newSupply = _totalMinted() + amount;

		require(newSupply <= presaleSupply, "The China NFT: presale token supply exceeded");

		_safeMint(_msgSender(), amount);
	}


	function helperMint() external payable {
		require(tx.origin == _msgSender(), "The China NFT: contract denied");
		require(saleState != SaleState.PAUSED, "The China NFT: minting is paused");
		uint256 amount = helpers[msg.sender];
		require(_totalMinted() + amount <= maxSupply, "The China NFT: max token supply exceeded");
		helpers[msg.sender] = 0;
		_safeMint(_msgSender(), amount);

	}

	function contractURI() public view returns (string memory) {
    return contractMetadataURI;
  }

	function setContractMetadataURI(string memory _contractMetadataURI) external onlyOwner {
		contractMetadataURI = _contractMetadataURI;
	}

	function addHelper(address _address, uint256 _amount) external onlyOwner {
        helpers[_address] = _amount;
    }

	function addMultipleHelpers(address[] calldata _addresses, uint256[] calldata _amounts) external onlyOwner {
        require(_addresses.length <= 333,"too many addresses");
		require(_addresses.length == _amounts.length, "array sizes must match");
        for (uint256 i = 0; i < _addresses.length; i++) {
            helpers[_addresses[i]] = _amounts[i];
        }
    }

	 function removeHelper(address _address) external onlyOwner {
        helpers[_address] = 0;
    }

		function isHelper(address _address) public view returns(uint256) {
        return helpers[_address];
    }

	function setSaleState(SaleState newSaleState) external onlyOwner {
		emit SaleStateChanged(saleState, newSaleState);

		saleState = newSaleState;
	}


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

		string memory baseURI = _baseURI();

		return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), _uriSuffix)) : "";
	}


	function setUriPrefix(string memory newPrefix) external onlyOwner {
		emit UriPrefixUpdated(_uriPrefix, newPrefix);

		_uriPrefix = newPrefix;
	}

	function setUriSuffix(string memory newSuffix) external onlyOwner {
		emit UriSuffixUpdated(_uriSuffix, newSuffix);

		_uriSuffix = newSuffix;
	}

	function setMaxSupply(uint256 newMaxSupply) external onlyOwner {
		require(newMaxSupply > _totalMinted() && newMaxSupply > presaleSupply, "The China NFT: invalid amount");

		emit MaxSupplyUpdated(maxSupply, newMaxSupply);

		maxSupply = newMaxSupply;
	}

	function setPresaleSupply(uint256 newPresaleSupply) external onlyOwner {
		require(newPresaleSupply > _totalMinted() && newPresaleSupply < maxSupply, "The China NFT: invalid amount");

		emit PresaleSupplyUpdated(presaleSupply, newPresaleSupply);

		presaleSupply = newPresaleSupply;
	}

	function setMaxMintAmountPerAddress(uint256 newMaxMintAmountPerAddress) external onlyOwner {
		emit MaxMintAmountPerAddressUpdated(maxMintAmountPerAddress, newMaxMintAmountPerAddress);

		maxMintAmountPerAddress = newMaxMintAmountPerAddress;
	}

	function setMaxMintAmountPerAddressForVip(uint256 newMaxMintAmountPerAddressForVip) external onlyOwner {
		emit MaxMintAmountPerAddressForVipUpdated(maxMintAmountPerAddressForVip, newMaxMintAmountPerAddressForVip);

		maxMintAmountPerAddressForVip = newMaxMintAmountPerAddressForVip;
	}

	function setPresaleMerkleRoot(bytes32 newPresaleMerkleRoot) external onlyOwner {
		emit PresaleMerkleRootUpdated(_presaleMerkleRoot, newPresaleMerkleRoot);

		_presaleMerkleRoot = newPresaleMerkleRoot;
	}

	function setVipAddressesMerkleRoot(bytes32 newVipAddressesMerkleRoot) external onlyOwner {
		emit VipAddressesMerkleRootUpdated(_vipAddressesMerkleRoot, newVipAddressesMerkleRoot);

		_vipAddressesMerkleRoot = newVipAddressesMerkleRoot;
	}


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

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

	function _maxMintAmount(address account, bytes32[] calldata merkleProof) internal view returns(uint256) {
		bool isVip = _merkleProof(account, merkleProof, _vipAddressesMerkleRoot);

		return isVip ? maxMintAmountPerAddressForVip : maxMintAmountPerAddress;
	}

	function _merkleProof(address account, bytes32[] calldata merkleProof, bytes32 merkleRoot) internal pure returns(bool) {
		bytes32 leaf = keccak256(abi.encodePacked(account));
		bool verified = MerkleProof.verify(merkleProof, merkleRoot, leaf);

		return verified;
	}
}

File 2 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
	using Address for address;
	using Strings for uint256;

	// Compiler will pack this into a single 256bit word.
	struct TokenOwnership {
		// The address of the owner.
		address addr;
		// Keeps track of the start time of ownership with minimal overhead for tokenomics.
		uint64 startTimestamp;
		// Whether the token has been burned.
		bool burned;
	}

	// Compiler will pack this into a single 256bit word.
	struct AddressData {
		// Realistically, 2**64-1 is more than enough.
		uint64 balance;
		// Keeps track of mint count with minimal overhead for tokenomics.
		uint64 numberMinted;
		// Keeps track of burn count with minimal overhead for tokenomics.
		uint64 numberBurned;
		// For miscellaneous variable(s) pertaining to the address
		// (e.g. number of whitelist mint slots used).
		// If there are multiple variables, please pack them into a uint64.
		uint64 aux;
	}

	// The tokenId of the next token to be minted.
	uint256 internal _currentIndex;

	// The number of tokens burned.
	uint256 internal _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 _ownershipOf implementation for details.
	mapping(uint256 => TokenOwnership) internal _ownerships;

	// Mapping owner address to address data
	mapping(address => AddressData) private _addressData;

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

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

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

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

	/**
	 * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
	 */
	function totalSupply() public view returns (uint256) {
		// Counter underflow is impossible as _burnCounter cannot be incremented
		// more than _currentIndex - _startTokenId() times
		unchecked {
			return _currentIndex - _burnCounter - _startTokenId();
		}
	}

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

	/**
	 * @dev See {IERC165-supportsInterface}.
	 */
	function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
		return
			interfaceId == type(IERC721).interfaceId ||
			interfaceId == type(IERC721Metadata).interfaceId ||
			super.supportsInterface(interfaceId);
	}

	/**
	 * @dev See {IERC721-balanceOf}.
	 */
	function balanceOf(address owner) public view override returns (uint256) {
		if (owner == address(0)) revert BalanceQueryForZeroAddress();
		return uint256(_addressData[owner].balance);
	}

	/**
	 * Returns the number of tokens minted by `owner`.
	 */
	function _numberMinted(address owner) internal view returns (uint256) {
		return uint256(_addressData[owner].numberMinted);
	}

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

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

	/**
	 * Sets the auxillary 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 {
		_addressData[owner].aux = aux;
	}

	/**
	 * Gas spent here starts off proportional to the maximum mint batch size.
	 * It gradually moves to O(1) as tokens get transferred around in the collection over time.
	 */
	function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
		uint256 curr = tokenId;

		unchecked {
			if (_startTokenId() <= curr && curr < _currentIndex) {
				TokenOwnership memory ownership = _ownerships[curr];
				if (!ownership.burned) {
					if (ownership.addr != address(0)) {
						return ownership;
					}
					// Invariant:
					// There will always be an ownership that has an address and is not burned
					// before an ownership that does not have an address and is not burned.
					// Hence, curr will not underflow.
					while (true) {
						curr--;
						ownership = _ownerships[curr];
						if (ownership.addr != address(0)) {
							return ownership;
						}
					}
				}
			}
		}
		revert OwnerQueryForNonexistentToken();
	}

	/**
	 * @dev See {IERC721-ownerOf}.
	 */
	function ownerOf(uint256 tokenId) public view override returns (address) {
		return _ownershipOf(tokenId).addr;
	}

	/**
	 * @dev See {IERC721Metadata-name}.
	 */
	function name() public view virtual override returns (string memory) {
		return _name;
	}

	/**
	 * @dev See {IERC721Metadata-symbol}.
	 */
	function symbol() public view virtual override returns (string memory) {
		return _symbol;
	}

	/**
	 * @dev See {IERC721Metadata-tokenURI}.
	 */
	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, tokenId.toString())) : '';
	}

	/**
	 * @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, can be overriden in child contracts.
	 */
	function _baseURI() internal view virtual returns (string memory) {
		return '';
	}

	/**
	 * @dev See {IERC721-approve}.
	 */
	function approve(address to, uint256 tokenId) public override {
		address owner = ERC721A.ownerOf(tokenId);
		if (to == owner) revert ApprovalToCurrentOwner();

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

		_approve(to, tokenId, owner);
	}

	/**
	 * @dev See {IERC721-getApproved}.
	 */
	function getApproved(uint256 tokenId) public view override returns (address) {
		if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

		return _tokenApprovals[tokenId];
	}

	/**
	 * @dev See {IERC721-setApprovalForAll}.
	 */
	function setApprovalForAll(address operator, bool approved) public virtual override {
		if (operator == _msgSender()) revert ApproveToCaller();

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

	/**
	 * @dev See {IERC721-isApprovedForAll}.
	 */
	function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
		return _operatorApprovals[owner][operator];
	}

	/**
	 * @dev See {IERC721-transferFrom}.
	 */
	function transferFrom(
		address from,
		address to,
		uint256 tokenId
	) public virtual override {
		_transfer(from, to, tokenId);
	}

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

	/**
	 * @dev See {IERC721-safeTransferFrom}.
	 */
	function safeTransferFrom(
		address from,
		address to,
		uint256 tokenId,
		bytes memory _data
	) public virtual override {
		_transfer(from, to, tokenId);
		if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
			revert TransferToNonERC721ReceiverImplementer();
		}
	}

	/**
	 * @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 (`_mint`),
	 */
	function _exists(uint256 tokenId) internal view returns (bool) {
		return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
	}

	function _safeMint(address to, uint256 quantity) internal {
		_safeMint(to, 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.
	 *
	 * Emits a {Transfer} event.
	 */
	function _safeMint(
		address to,
		uint256 quantity,
		bytes memory _data
	) internal {
		_mint(to, quantity, _data, true);
	}

	/**
	 * @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.
	 */
	function _mint(
		address to,
		uint256 quantity,
		bytes memory _data,
		bool safe
	) internal {
		uint256 startTokenId = _currentIndex;
		if (to == address(0)) revert MintToZeroAddress();
		if (quantity == 0) revert MintZeroQuantity();

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

		// Overflows are incredibly unrealistic.
		// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
		// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
		unchecked {
			_addressData[to].balance += uint64(quantity);
			_addressData[to].numberMinted += uint64(quantity);

			_ownerships[startTokenId].addr = to;
			_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

			uint256 updatedIndex = startTokenId;
			uint256 end = updatedIndex + quantity;

			if (safe && to.isContract()) {
				do {
					emit Transfer(address(0), to, updatedIndex);
					if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
						revert TransferToNonERC721ReceiverImplementer();
					}
				} while (updatedIndex != end);
				// Reentrancy protection
				if (_currentIndex != startTokenId) revert();
			} else {
				do {
					emit Transfer(address(0), to, updatedIndex++);
				} while (updatedIndex != end);
			}
			_currentIndex = updatedIndex;
		}
		_afterTokenTransfers(address(0), to, startTokenId, quantity);
	}

	/**
	 * @dev Transfers `tokenId` from `from` to `to`.
	 *
	 * Requirements:
	 *
	 * - `to` cannot be the zero address.
	 * - `tokenId` token must be owned by `from`.
	 *
	 * Emits a {Transfer} event.
	 */
	function _transfer(
		address from,
		address to,
		uint256 tokenId
	) private {
		TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

		if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

		bool isApprovedOrOwner = (_msgSender() == from ||
			isApprovedForAll(from, _msgSender()) ||
			getApproved(tokenId) == _msgSender());

		if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
		if (to == address(0)) revert TransferToZeroAddress();

		_beforeTokenTransfers(from, to, tokenId, 1);

		// Clear approvals from the previous owner
		_approve(address(0), tokenId, from);

		// 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 {
			_addressData[from].balance -= 1;
			_addressData[to].balance += 1;

			TokenOwnership storage currSlot = _ownerships[tokenId];
			currSlot.addr = to;
			currSlot.startTimestamp = uint64(block.timestamp);

			// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
			// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
			uint256 nextTokenId = tokenId + 1;
			TokenOwnership storage nextSlot = _ownerships[nextTokenId];
			if (nextSlot.addr == address(0)) {
				// This will suffice for checking _exists(nextTokenId),
				// as a burned slot cannot contain the zero address.
				if (nextTokenId != _currentIndex) {
					nextSlot.addr = from;
					nextSlot.startTimestamp = prevOwnership.startTimestamp;
				}
			}
		}

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

	/**
	 * @dev This is 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 {
		TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

		address from = prevOwnership.addr;

		if (approvalCheck) {
			bool isApprovedOrOwner = (_msgSender() == from ||
				isApprovedForAll(from, _msgSender()) ||
				getApproved(tokenId) == _msgSender());

			if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
		}

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

		// Clear approvals from the previous owner
		_approve(address(0), tokenId, from);

		// 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 {
			AddressData storage addressData = _addressData[from];
			addressData.balance -= 1;
			addressData.numberBurned += 1;

			// Keep track of who burned the token, and the timestamp of burning.
			TokenOwnership storage currSlot = _ownerships[tokenId];
			currSlot.addr = from;
			currSlot.startTimestamp = uint64(block.timestamp);
			currSlot.burned = true;

			// If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
			// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
			uint256 nextTokenId = tokenId + 1;
			TokenOwnership storage nextSlot = _ownerships[nextTokenId];
			if (nextSlot.addr == address(0)) {
				// This will suffice for checking _exists(nextTokenId),
				// as a burned slot cannot contain the zero address.
				if (nextTokenId != _currentIndex) {
					nextSlot.addr = from;
					nextSlot.startTimestamp = prevOwnership.startTimestamp;
				}
			}
		}

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

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

	/**
	 * @dev Approve `to` to operate on `tokenId`
	 *
	 * Emits a {Approval} event.
	 */
	function _approve(
		address to,
		uint256 tokenId,
		address owner
	) private {
		_tokenApprovals[tokenId] = to;
		emit Approval(owner, to, tokenId);
	}

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

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

File 3 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

File 4 of 13 : 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 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 13 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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`.
     *
     * 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 calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token 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);
}

File 8 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initUriPrefix","type":"string"},{"internalType":"bytes32","name":"initPresaleMerkleRoot","type":"bytes32"},{"internalType":"bytes32","name":"initVipAddressesMerkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"oldMaxMintAmountPerAddressForVip","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newMaxMintAmountPerAddressForVip","type":"uint256"}],"name":"MaxMintAmountPerAddressForVipUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"oldMaxMintAmountPerAddress","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newMaxMintAmountPerAddress","type":"uint256"}],"name":"MaxMintAmountPerAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"oldMaxSupply","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"MaxSupplyUpdated","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":"bytes32","name":"oldPresaleMerkleRoot","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newPresaleMerkleRoot","type":"bytes32"}],"name":"PresaleMerkleRootUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"oldPresaleSupply","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newPresaleSupply","type":"uint256"}],"name":"PresaleSupplyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"enum TheChinaNFT.SaleState","name":"oldSaleState","type":"uint8"},{"indexed":true,"internalType":"enum TheChinaNFT.SaleState","name":"newSaleState","type":"uint8"}],"name":"SaleStateChanged","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"oldURIprefix","type":"string"},{"indexed":true,"internalType":"string","name":"newURIprefix","type":"string"}],"name":"UriPrefixUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"oldURIsuffix","type":"string"},{"indexed":true,"internalType":"string","name":"newURIsuffix","type":"string"}],"name":"UriSuffixUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"oldVipAddressesMerkleRoot","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newVipAddressesMerkleRoot","type":"bytes32"}],"name":"VipAddressesMerkleRootUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"addHelper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"addMultipleHelpers","outputs":[],"stateMutability":"nonpayable","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":"contractURI","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":[],"name":"helperMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"helpers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isHelper","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerAddressForVip","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"vipMerkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"vipMerkleProof","type":"bytes32[]"},{"internalType":"bytes32[]","name":"presaleMerkleProof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeHelper","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleState","outputs":[{"internalType":"enum TheChinaNFT.SaleState","name":"","type":"uint8"}],"stateMutability":"view","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":"_contractMetadataURI","type":"string"}],"name":"setContractMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMintAmountPerAddress","type":"uint256"}],"name":"setMaxMintAmountPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMintAmountPerAddressForVip","type":"uint256"}],"name":"setMaxMintAmountPerAddressForVip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newPresaleMerkleRoot","type":"bytes32"}],"name":"setPresaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPresaleSupply","type":"uint256"}],"name":"setPresaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum TheChinaNFT.SaleState","name":"newSaleState","type":"uint8"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newVipAddressesMerkleRoot","type":"bytes32"}],"name":"setVipAddressesMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

60806040523480156200001157600080fd5b5060405162002b9c38038062002b9c8339810160408190526200003491620001a9565b6040518060400160405280600d81526020016c151a194810da1a5b9848139195609a1b815250604051806040016040528060058152602001644348494e4160d81b815250816002908162000089919062000328565b50600362000098828262000328565b5050600160005550620000ab3362000141565b611700600b819055600c556001600d556002600e556009620000ce848262000328565b50604080518082019091526005815264173539b7b760d91b6020820152600a90620000fa908262000328565b50600f82905560108190556013805460ff191690556040805160808101909152604380825262002b59602083013960129062000137908262000328565b50505050620003f4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600080600060608486031215620001bf57600080fd5b83516001600160401b0380821115620001d757600080fd5b818601915086601f830112620001ec57600080fd5b81518181111562000201576200020162000193565b604051601f8201601f19908116603f011681019083821181831017156200022c576200022c62000193565b816040528281526020935089848487010111156200024957600080fd5b600091505b828210156200026d57848201840151818301850152908301906200024e565b828211156200027f5760008484830101525b928801516040909801519299979850919695505050505050565b600181811c90821680620002ae57607f821691505b602082108103620002cf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200032357600081815260208120601f850160051c81016020861015620002fe5750805b601f850160051c820191505b818110156200031f578281556001016200030a565b5050505b505050565b81516001600160401b0381111562000344576200034462000193565b6200035c8162000355845462000299565b84620002d5565b602080601f8311600181146200039457600084156200037b5750858301515b600019600386901b1c1916600185901b1785556200031f565b600085815260208120601f198616915b82811015620003c557888601518255948401946001909101908401620003a4565b5085821015620003e45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61275580620004046000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063ba41b0c6116100b6578063e857c1d51161007a578063e857c1d5146106b2578063e8a3d485146106c8578063e985e9c5146106dd578063f2fde38b14610726578063f3ca4d8014610746578063fc9baeeb1461075957600080fd5b8063ba41b0c61461062b578063bfe00daa1461063e578063c87b56dd14610674578063d5abeb0114610694578063d9bb4795146106aa57600080fd5b8063a201fc50116100fd578063a201fc5014610595578063a22cb465146105b5578063b3a196e9146105d5578063b88d4fde146105eb578063b96502cb1461060b57600080fd5b806370a082311461050d578063715018a61461052d5780637ec4a659146105425780638da5cb5b1461056257806395d89b411461058057600080fd5b80632a41e02e116101c75780635c41d75e1161018b5780635c41d75e14610470578063603f4d521461048657806362559371146104ad5780636352211e146104cd5780636f8b44b0146104ed57600080fd5b80632a41e02e146103c357806342842e0e146103f05780634dfab5ef146104105780635697f53e146104305780635a67de071461045057600080fd5b80630dfd45f91161020e5780630dfd45f91461031c57806316ba10e01461033c57806318160ddd1461035c57806323b872dd1461038357806328d7b276146103a357600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da5780630b7feee8146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611e72565b610779565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107cb565b6040516102779190611ee7565b3480156102ae57600080fd5b506102c26102bd366004611efa565b61085d565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611f2f565b6108a1565b005b34801561030857600080fd5b506102fa610317366004611f2f565b61092e565b34801561032857600080fd5b506102fa610337366004611f59565b610952565b34801561034857600080fd5b506102fa610357366004611fff565b610974565b34801561036857600080fd5b5060015460005403600019015b604051908152602001610277565b34801561038f57600080fd5b506102fa61039e366004612047565b6109e1565b3480156103af57600080fd5b506102fa6103be366004611efa565b6109ec565b3480156103cf57600080fd5b506103756103de366004611f59565b60116020526000908152604090205481565b3480156103fc57600080fd5b506102fa61040b366004612047565b610a28565b34801561041c57600080fd5b506102fa61042b366004611efa565b610a43565b34801561043c57600080fd5b506102fa61044b366004611efa565b610a7f565b34801561045c57600080fd5b506102fa61046b366004612083565b610abb565b34801561047c57600080fd5b50610375600d5481565b34801561049257600080fd5b506013546104a09060ff1681565b60405161027791906120ba565b3480156104b957600080fd5b506102fa6104c836600461212d565b610b3c565b3480156104d957600080fd5b506102c26104e8366004611efa565b610c5a565b3480156104f957600080fd5b506102fa610508366004611efa565b610c6c565b34801561051957600080fd5b50610375610528366004611f59565b610d0a565b34801561053957600080fd5b506102fa610d58565b34801561054e57600080fd5b506102fa61055d366004611fff565b610d6c565b34801561056e57600080fd5b506008546001600160a01b03166102c2565b34801561058c57600080fd5b50610295610dd5565b3480156105a157600080fd5b506102fa6105b0366004611fff565b610de4565b3480156105c157600080fd5b506102fa6105d0366004612198565b610df8565b3480156105e157600080fd5b50610375600c5481565b3480156105f757600080fd5b506102fa6106063660046121d4565b610e8d565b34801561061757600080fd5b506102fa610626366004611efa565b610ede565b6102fa61063936600461224f565b610f7c565b34801561064a57600080fd5b50610375610659366004611f59565b6001600160a01b031660009081526011602052604090205490565b34801561068057600080fd5b5061029561068f366004611efa565b6110c9565b3480156106a057600080fd5b50610375600b5481565b6102fa611150565b3480156106be57600080fd5b50610375600e5481565b3480156106d457600080fd5b5061029561123b565b3480156106e957600080fd5b5061026b6106f836600461229a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561073257600080fd5b506102fa610741366004611f59565b61124a565b6102fa6107543660046122cd565b6112c0565b34801561076557600080fd5b506102fa610774366004611efa565b61149a565b60006001600160e01b031982166380ac58cd60e01b14806107aa57506001600160e01b03198216635b5e139f60e01b145b806107c557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107da90612346565b80601f016020809104026020016040519081016040528092919081815260200182805461080690612346565b80156108535780601f1061082857610100808354040283529160200191610853565b820191906000526020600020905b81548152906001019060200180831161083657829003601f168201915b5050505050905090565b6000610868826114d6565b610885576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ac82610c5a565b9050806001600160a01b0316836001600160a01b0316036108e05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061090057506108fe81336106f8565b155b1561091e576040516367d9dca160e11b815260040160405180910390fd5b61092983838361150f565b505050565b61093661156b565b6001600160a01b03909116600090815260116020526040902055565b61095a61156b565b6001600160a01b0316600090815260116020526040812055565b61097c61156b565b8060405161098a9190612380565b6040518091039020600a6040516109a1919061240f565b604051908190038120907fd5ede4dab5f4126fb67ecf826c17a0ddf321d6ded2746022fd7a63b4f976e9aa90600090a3600a6109dd8282612461565b5050565b6109298383836115c5565b6109f461156b565b600f546040518291907f2d5058fdf19bdc5c01f3b3d76ef81f5e18e21e65d6354ce1aa37ac8fe565fd2b90600090a3600f55565b61092983838360405180602001604052806000815250610e8d565b610a4b61156b565b600e546040518291907f523cc5b0ad4e626661195bb2858e8ecd3330ae18b4939d19bb6d2ea7642107c990600090a3600e55565b610a8761156b565b600d546040518291907f9039d174282fa64f6e22bfd6573b23eeae095f23bd2df91aa3a5afd9bebf2abc90600090a3600d55565b610ac361156b565b806002811115610ad557610ad56120a4565b60135460ff166002811115610aec57610aec6120a4565b6040517fe2034a7bf30bb7c637ee4fd008478210b21708c5c7177151827a49a6877a020d90600090a36013805482919060ff19166001836002811115610b3457610b346120a4565b021790555050565b610b4461156b565b61014d831115610b905760405162461bcd60e51b8152602060048201526012602482015271746f6f206d616e792061646472657373657360701b60448201526064015b60405180910390fd5b828114610bd85760405162461bcd60e51b81526020600482015260166024820152750c2e4e4c2f240e6d2f4cae640daeae6e840dac2e8c6d60531b6044820152606401610b87565b60005b83811015610c5357828282818110610bf557610bf5612520565b9050602002013560116000878785818110610c1257610c12612520565b9050602002016020810190610c279190611f59565b6001600160a01b0316815260208101919091526040016000205580610c4b8161254c565b915050610bdb565b5050505050565b6000610c65826117b0565b5192915050565b610c7461156b565b6000546000190181118015610c8a5750600c5481115b610cd65760405162461bcd60e51b815260206004820152601d60248201527f546865204368696e61204e46543a20696e76616c696420616d6f756e740000006044820152606401610b87565b600b546040518291907f44ecfc706d63e347851cfd40acfa6cf2e3a41faa3e8b460210c03938e84a91ad90600090a3600b55565b60006001600160a01b038216610d33576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610d6061156b565b610d6a60006118d7565b565b610d7461156b565b80604051610d829190612380565b60405180910390206009604051610d99919061240f565b604051908190038120907f2f150d8b467c122a4929f4c2677deadbe82dc40c2d004eab6fe58f2948a1fccc90600090a360096109dd8282612461565b6060600380546107da90612346565b610dec61156b565b60126109dd8282612461565b336001600160a01b03831603610e215760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e988484846115c5565b6001600160a01b0383163b15158015610eba5750610eb884848484611929565b155b15610ed8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610ee661156b565b6000546000190181118015610efc5750600b5481105b610f485760405162461bcd60e51b815260206004820152601d60248201527f546865204368696e61204e46543a20696e76616c696420616d6f756e740000006044820152606401610b87565b600c546040518291907f1448a52405c3e8e620abe4cad401d85a07f23805058dd9ad50361992aad920eb90600090a3600c55565b323314610f9b5760405162461bcd60e51b8152600401610b8790612565565b600260135460ff166002811115610fb457610fb46120a4565b146110165760405162461bcd60e51b815260206004820152602c60248201527f546865204368696e61204e46543a206d696e74696e67206973206e6f7420696e60448201526b207075626c69632073616c6560a01b6064820152608401610b87565b60008311801561106a575061102c338383611a15565b8361105d335b6001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b611067919061259c565b11155b6110865760405162461bcd60e51b8152600401610b87906125b4565b600b54836110976000546000190190565b6110a1919061259c565b11156110bf5760405162461bcd60e51b8152600401610b87906125f6565b6109293384611a42565b60606110d4826114d6565b6110f157604051630a14c4b560e41b815260040160405180910390fd5b60006110fb611a5c565b9050805160000361111b5760405180602001604052806000815250611149565b8061112584611a6b565b600a6040516020016111399392919061263e565b6040516020818303038152906040525b9392505050565b32331461116f5760405162461bcd60e51b8152600401610b8790612565565b600060135460ff166002811115611188576111886120a4565b036111d55760405162461bcd60e51b815260206004820181905260248201527f546865204368696e61204e46543a206d696e74696e67206973207061757365646044820152606401610b87565b33600090815260116020526040902054600b54816111f66000546000190190565b611200919061259c565b111561121e5760405162461bcd60e51b8152600401610b87906125f6565b336000818152601160205260408120556112389082611a42565b50565b6060601280546107da90612346565b61125261156b565b6001600160a01b0381166112b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b87565b611238816118d7565b3233146112df5760405162461bcd60e51b8152600401610b8790612565565b600160135460ff1660028111156112f8576112f86120a4565b146113565760405162461bcd60e51b815260206004820152602860248201527f546865204368696e61204e46543a206d696e74696e67206973206e6f7420696e6044820152672070726573616c6560c01b6064820152608401610b87565b600085118015611383575061136c338585611a15565b8561137633611032565b611380919061259c565b11155b61139f5760405162461bcd60e51b8152600401610b87906125b4565b6113ad338383600f54611b6b565b6114055760405162461bcd60e51b815260206004820152602360248201527f546865204368696e61204e46543a20696e76616c6964206d65726b6c6520707260448201526237b7b360e91b6064820152608401610b87565b6000856114156000546000190190565b61141f919061259c565b9050600c548111156114885760405162461bcd60e51b815260206004820152602c60248201527f546865204368696e61204e46543a2070726573616c6520746f6b656e2073757060448201526b1c1b1e48195e18d95959195960a21b6064820152608401610b87565b6114923387611a42565b505050505050565b6114a261156b565b6010546040518291907fdb2b6dde60ee7b71bd46137759b170b05895ad6f28e2b5a12f1ec27e9cb6394e90600090a3601055565b6000816001111580156114ea575060005482105b80156107c5575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610d6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b87565b60006115d0826117b0565b9050836001600160a01b031681600001516001600160a01b0316146116075760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611625575061162585336106f8565b806116405750336116358461085d565b6001600160a01b0316145b90508061166057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661168757604051633a954ecd60e21b815260040160405180910390fd5b6116936000848761150f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661176757600054821461176757805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c53565b604080516060810182526000808252602082018190529181019190915281806001111580156117e0575060005481105b156118be57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118bc5780516001600160a01b031615611853579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118b7579392505050565b611853565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061195e903390899088908890600401612670565b6020604051808303816000875af1925050508015611999575060408051601f3d908101601f19168201909252611996918101906126ad565b60015b6119f7573d8080156119c7576040519150601f19603f3d011682016040523d82523d6000602084013e6119cc565b606091505b5080516000036119ef576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600080611a26858585601054611b6b565b905080611a3557600d54611a39565b600e545b95945050505050565b6109dd828260405180602001604052806000815250611bf4565b6060600980546107da90612346565b606081600003611a925750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611abc5780611aa68161254c565b9150611ab59050600a836126e0565b9150611a96565b6000816001600160401b03811115611ad657611ad6611f74565b6040519080825280601f01601f191660200182016040528015611b00576020820181803683370190505b5090505b8415611a0d57611b156001836126f4565b9150611b22600a8661270b565b611b2d90603061259c565b60f81b818381518110611b4257611b42612520565b60200101906001600160f81b031916908160001a905350611b64600a866126e0565b9450611b04565b6040516bffffffffffffffffffffffff19606086901b16602082015260009081906034016040516020818303038152906040528051906020012090506000611be9868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250889250869150611c019050565b979650505050505050565b6109298383836001611c17565b600082611c0e8584611de3565b14949350505050565b6000546001600160a01b038516611c4057604051622e076360e81b815260040160405180910390fd5b83600003611c615760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d0d57506001600160a01b0387163b15155b15611d95575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d5e6000888480600101955088611929565b611d7b576040516368d2bf6b60e11b815260040160405180910390fd5b808203611d13578260005414611d9057600080fd5b611dda565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611d96575b50600055610c53565b600081815b8451811015611e2857611e1482868381518110611e0757611e07612520565b6020026020010151611e30565b915080611e208161254c565b915050611de8565b509392505050565b6000818310611e4c576000828152602084905260409020611149565b5060009182526020526040902090565b6001600160e01b03198116811461123857600080fd5b600060208284031215611e8457600080fd5b813561114981611e5c565b60005b83811015611eaa578181015183820152602001611e92565b83811115610ed85750506000910152565b60008151808452611ed3816020860160208601611e8f565b601f01601f19169290920160200192915050565b6020815260006111496020830184611ebb565b600060208284031215611f0c57600080fd5b5035919050565b80356001600160a01b0381168114611f2a57600080fd5b919050565b60008060408385031215611f4257600080fd5b611f4b83611f13565b946020939093013593505050565b600060208284031215611f6b57600080fd5b61114982611f13565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611fa457611fa4611f74565b604051601f8501601f19908116603f01168101908282118183101715611fcc57611fcc611f74565b81604052809350858152868686011115611fe557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561201157600080fd5b81356001600160401b0381111561202757600080fd5b8201601f8101841361203857600080fd5b611a0d84823560208401611f8a565b60008060006060848603121561205c57600080fd5b61206584611f13565b925061207360208501611f13565b9150604084013590509250925092565b60006020828403121561209557600080fd5b81356003811061114957600080fd5b634e487b7160e01b600052602160045260246000fd5b60208101600383106120dc57634e487b7160e01b600052602160045260246000fd5b91905290565b60008083601f8401126120f457600080fd5b5081356001600160401b0381111561210b57600080fd5b6020830191508360208260051b850101111561212657600080fd5b9250929050565b6000806000806040858703121561214357600080fd5b84356001600160401b038082111561215a57600080fd5b612166888389016120e2565b9096509450602087013591508082111561217f57600080fd5b5061218c878288016120e2565b95989497509550505050565b600080604083850312156121ab57600080fd5b6121b483611f13565b9150602083013580151581146121c957600080fd5b809150509250929050565b600080600080608085870312156121ea57600080fd5b6121f385611f13565b935061220160208601611f13565b92506040850135915060608501356001600160401b0381111561222357600080fd5b8501601f8101871361223457600080fd5b61224387823560208401611f8a565b91505092959194509250565b60008060006040848603121561226457600080fd5b8335925060208401356001600160401b0381111561228157600080fd5b61228d868287016120e2565b9497909650939450505050565b600080604083850312156122ad57600080fd5b6122b683611f13565b91506122c460208401611f13565b90509250929050565b6000806000806000606086880312156122e557600080fd5b8535945060208601356001600160401b038082111561230357600080fd5b61230f89838a016120e2565b9096509450604088013591508082111561232857600080fd5b50612335888289016120e2565b969995985093965092949392505050565b600181811c9082168061235a57607f821691505b60208210810361237a57634e487b7160e01b600052602260045260246000fd5b50919050565b60008251612392818460208701611e8f565b9190910192915050565b600081546123a981612346565b600182811680156123c157600181146123d657612405565b60ff1984168752821515830287019450612405565b8560005260208060002060005b858110156123fc5781548a8201529084019082016123e3565b50505082870194505b5050505092915050565b6000611149828461239c565b601f82111561092957600081815260208120601f850160051c810160208610156124425750805b601f850160051c820191505b818110156114925782815560010161244e565b81516001600160401b0381111561247a5761247a611f74565b61248e816124888454612346565b8461241b565b602080601f8311600181146124c357600084156124ab5750858301515b600019600386901b1c1916600185901b178555611492565b600085815260208120601f198616915b828110156124f2578886015182559484019460019091019084016124d3565b50858210156125105787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161255e5761255e612536565b5060010190565b6020808252601e908201527f546865204368696e61204e46543a20636f6e74726163742064656e6965640000604082015260600190565b600082198211156125af576125af612536565b500190565b60208082526022908201527f546865204368696e61204e46543a20696e76616c6964206d696e7420616d6f756040820152611b9d60f21b606082015260800190565b60208082526028908201527f546865204368696e61204e46543a206d617820746f6b656e20737570706c7920604082015267195e18d95959195960c21b606082015260800190565b60008451612650818460208901611e8f565b845190830190612664818360208901611e8f565b611be98183018661239c565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126a390830184611ebb565b9695505050505050565b6000602082840312156126bf57600080fd5b815161114981611e5c565b634e487b7160e01b600052601260045260246000fd5b6000826126ef576126ef6126ca565b500490565b60008282101561270657612706612536565b500390565b60008261271a5761271a6126ca565b50069056fea2646970667358221220faa5235caa83de8ae96d298fe8ffd91f227fd1eb54b279043e1d8985b1e5584364736f6c634300080f0033697066733a2f2f516d4e5858484677314c644262487a426e435743644256445546336d4571554d6a6e66726137474a3159655274362f6d657461646174612e6a736f6e00000000000000000000000000000000000000000000000000000000000000604e0892bf27d65ecab0c62f65da57614d4994121f4e0d2d5b42d6f68d690546cdbd7263a203c9e972fe27a610b748d202986ccfb7967050b29f8c52f2ec3f35390000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5642444e6265747a4451797351556d42704c6b37316431464c6633536f65314c76627050744d626f725462312f00000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063ba41b0c6116100b6578063e857c1d51161007a578063e857c1d5146106b2578063e8a3d485146106c8578063e985e9c5146106dd578063f2fde38b14610726578063f3ca4d8014610746578063fc9baeeb1461075957600080fd5b8063ba41b0c61461062b578063bfe00daa1461063e578063c87b56dd14610674578063d5abeb0114610694578063d9bb4795146106aa57600080fd5b8063a201fc50116100fd578063a201fc5014610595578063a22cb465146105b5578063b3a196e9146105d5578063b88d4fde146105eb578063b96502cb1461060b57600080fd5b806370a082311461050d578063715018a61461052d5780637ec4a659146105425780638da5cb5b1461056257806395d89b411461058057600080fd5b80632a41e02e116101c75780635c41d75e1161018b5780635c41d75e14610470578063603f4d521461048657806362559371146104ad5780636352211e146104cd5780636f8b44b0146104ed57600080fd5b80632a41e02e146103c357806342842e0e146103f05780634dfab5ef146104105780635697f53e146104305780635a67de071461045057600080fd5b80630dfd45f91161020e5780630dfd45f91461031c57806316ba10e01461033c57806318160ddd1461035c57806323b872dd1461038357806328d7b276146103a357600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da5780630b7feee8146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611e72565b610779565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107cb565b6040516102779190611ee7565b3480156102ae57600080fd5b506102c26102bd366004611efa565b61085d565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611f2f565b6108a1565b005b34801561030857600080fd5b506102fa610317366004611f2f565b61092e565b34801561032857600080fd5b506102fa610337366004611f59565b610952565b34801561034857600080fd5b506102fa610357366004611fff565b610974565b34801561036857600080fd5b5060015460005403600019015b604051908152602001610277565b34801561038f57600080fd5b506102fa61039e366004612047565b6109e1565b3480156103af57600080fd5b506102fa6103be366004611efa565b6109ec565b3480156103cf57600080fd5b506103756103de366004611f59565b60116020526000908152604090205481565b3480156103fc57600080fd5b506102fa61040b366004612047565b610a28565b34801561041c57600080fd5b506102fa61042b366004611efa565b610a43565b34801561043c57600080fd5b506102fa61044b366004611efa565b610a7f565b34801561045c57600080fd5b506102fa61046b366004612083565b610abb565b34801561047c57600080fd5b50610375600d5481565b34801561049257600080fd5b506013546104a09060ff1681565b60405161027791906120ba565b3480156104b957600080fd5b506102fa6104c836600461212d565b610b3c565b3480156104d957600080fd5b506102c26104e8366004611efa565b610c5a565b3480156104f957600080fd5b506102fa610508366004611efa565b610c6c565b34801561051957600080fd5b50610375610528366004611f59565b610d0a565b34801561053957600080fd5b506102fa610d58565b34801561054e57600080fd5b506102fa61055d366004611fff565b610d6c565b34801561056e57600080fd5b506008546001600160a01b03166102c2565b34801561058c57600080fd5b50610295610dd5565b3480156105a157600080fd5b506102fa6105b0366004611fff565b610de4565b3480156105c157600080fd5b506102fa6105d0366004612198565b610df8565b3480156105e157600080fd5b50610375600c5481565b3480156105f757600080fd5b506102fa6106063660046121d4565b610e8d565b34801561061757600080fd5b506102fa610626366004611efa565b610ede565b6102fa61063936600461224f565b610f7c565b34801561064a57600080fd5b50610375610659366004611f59565b6001600160a01b031660009081526011602052604090205490565b34801561068057600080fd5b5061029561068f366004611efa565b6110c9565b3480156106a057600080fd5b50610375600b5481565b6102fa611150565b3480156106be57600080fd5b50610375600e5481565b3480156106d457600080fd5b5061029561123b565b3480156106e957600080fd5b5061026b6106f836600461229a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561073257600080fd5b506102fa610741366004611f59565b61124a565b6102fa6107543660046122cd565b6112c0565b34801561076557600080fd5b506102fa610774366004611efa565b61149a565b60006001600160e01b031982166380ac58cd60e01b14806107aa57506001600160e01b03198216635b5e139f60e01b145b806107c557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107da90612346565b80601f016020809104026020016040519081016040528092919081815260200182805461080690612346565b80156108535780601f1061082857610100808354040283529160200191610853565b820191906000526020600020905b81548152906001019060200180831161083657829003601f168201915b5050505050905090565b6000610868826114d6565b610885576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ac82610c5a565b9050806001600160a01b0316836001600160a01b0316036108e05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061090057506108fe81336106f8565b155b1561091e576040516367d9dca160e11b815260040160405180910390fd5b61092983838361150f565b505050565b61093661156b565b6001600160a01b03909116600090815260116020526040902055565b61095a61156b565b6001600160a01b0316600090815260116020526040812055565b61097c61156b565b8060405161098a9190612380565b6040518091039020600a6040516109a1919061240f565b604051908190038120907fd5ede4dab5f4126fb67ecf826c17a0ddf321d6ded2746022fd7a63b4f976e9aa90600090a3600a6109dd8282612461565b5050565b6109298383836115c5565b6109f461156b565b600f546040518291907f2d5058fdf19bdc5c01f3b3d76ef81f5e18e21e65d6354ce1aa37ac8fe565fd2b90600090a3600f55565b61092983838360405180602001604052806000815250610e8d565b610a4b61156b565b600e546040518291907f523cc5b0ad4e626661195bb2858e8ecd3330ae18b4939d19bb6d2ea7642107c990600090a3600e55565b610a8761156b565b600d546040518291907f9039d174282fa64f6e22bfd6573b23eeae095f23bd2df91aa3a5afd9bebf2abc90600090a3600d55565b610ac361156b565b806002811115610ad557610ad56120a4565b60135460ff166002811115610aec57610aec6120a4565b6040517fe2034a7bf30bb7c637ee4fd008478210b21708c5c7177151827a49a6877a020d90600090a36013805482919060ff19166001836002811115610b3457610b346120a4565b021790555050565b610b4461156b565b61014d831115610b905760405162461bcd60e51b8152602060048201526012602482015271746f6f206d616e792061646472657373657360701b60448201526064015b60405180910390fd5b828114610bd85760405162461bcd60e51b81526020600482015260166024820152750c2e4e4c2f240e6d2f4cae640daeae6e840dac2e8c6d60531b6044820152606401610b87565b60005b83811015610c5357828282818110610bf557610bf5612520565b9050602002013560116000878785818110610c1257610c12612520565b9050602002016020810190610c279190611f59565b6001600160a01b0316815260208101919091526040016000205580610c4b8161254c565b915050610bdb565b5050505050565b6000610c65826117b0565b5192915050565b610c7461156b565b6000546000190181118015610c8a5750600c5481115b610cd65760405162461bcd60e51b815260206004820152601d60248201527f546865204368696e61204e46543a20696e76616c696420616d6f756e740000006044820152606401610b87565b600b546040518291907f44ecfc706d63e347851cfd40acfa6cf2e3a41faa3e8b460210c03938e84a91ad90600090a3600b55565b60006001600160a01b038216610d33576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610d6061156b565b610d6a60006118d7565b565b610d7461156b565b80604051610d829190612380565b60405180910390206009604051610d99919061240f565b604051908190038120907f2f150d8b467c122a4929f4c2677deadbe82dc40c2d004eab6fe58f2948a1fccc90600090a360096109dd8282612461565b6060600380546107da90612346565b610dec61156b565b60126109dd8282612461565b336001600160a01b03831603610e215760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e988484846115c5565b6001600160a01b0383163b15158015610eba5750610eb884848484611929565b155b15610ed8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610ee661156b565b6000546000190181118015610efc5750600b5481105b610f485760405162461bcd60e51b815260206004820152601d60248201527f546865204368696e61204e46543a20696e76616c696420616d6f756e740000006044820152606401610b87565b600c546040518291907f1448a52405c3e8e620abe4cad401d85a07f23805058dd9ad50361992aad920eb90600090a3600c55565b323314610f9b5760405162461bcd60e51b8152600401610b8790612565565b600260135460ff166002811115610fb457610fb46120a4565b146110165760405162461bcd60e51b815260206004820152602c60248201527f546865204368696e61204e46543a206d696e74696e67206973206e6f7420696e60448201526b207075626c69632073616c6560a01b6064820152608401610b87565b60008311801561106a575061102c338383611a15565b8361105d335b6001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b611067919061259c565b11155b6110865760405162461bcd60e51b8152600401610b87906125b4565b600b54836110976000546000190190565b6110a1919061259c565b11156110bf5760405162461bcd60e51b8152600401610b87906125f6565b6109293384611a42565b60606110d4826114d6565b6110f157604051630a14c4b560e41b815260040160405180910390fd5b60006110fb611a5c565b9050805160000361111b5760405180602001604052806000815250611149565b8061112584611a6b565b600a6040516020016111399392919061263e565b6040516020818303038152906040525b9392505050565b32331461116f5760405162461bcd60e51b8152600401610b8790612565565b600060135460ff166002811115611188576111886120a4565b036111d55760405162461bcd60e51b815260206004820181905260248201527f546865204368696e61204e46543a206d696e74696e67206973207061757365646044820152606401610b87565b33600090815260116020526040902054600b54816111f66000546000190190565b611200919061259c565b111561121e5760405162461bcd60e51b8152600401610b87906125f6565b336000818152601160205260408120556112389082611a42565b50565b6060601280546107da90612346565b61125261156b565b6001600160a01b0381166112b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b87565b611238816118d7565b3233146112df5760405162461bcd60e51b8152600401610b8790612565565b600160135460ff1660028111156112f8576112f86120a4565b146113565760405162461bcd60e51b815260206004820152602860248201527f546865204368696e61204e46543a206d696e74696e67206973206e6f7420696e6044820152672070726573616c6560c01b6064820152608401610b87565b600085118015611383575061136c338585611a15565b8561137633611032565b611380919061259c565b11155b61139f5760405162461bcd60e51b8152600401610b87906125b4565b6113ad338383600f54611b6b565b6114055760405162461bcd60e51b815260206004820152602360248201527f546865204368696e61204e46543a20696e76616c6964206d65726b6c6520707260448201526237b7b360e91b6064820152608401610b87565b6000856114156000546000190190565b61141f919061259c565b9050600c548111156114885760405162461bcd60e51b815260206004820152602c60248201527f546865204368696e61204e46543a2070726573616c6520746f6b656e2073757060448201526b1c1b1e48195e18d95959195960a21b6064820152608401610b87565b6114923387611a42565b505050505050565b6114a261156b565b6010546040518291907fdb2b6dde60ee7b71bd46137759b170b05895ad6f28e2b5a12f1ec27e9cb6394e90600090a3601055565b6000816001111580156114ea575060005482105b80156107c5575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610d6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b87565b60006115d0826117b0565b9050836001600160a01b031681600001516001600160a01b0316146116075760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611625575061162585336106f8565b806116405750336116358461085d565b6001600160a01b0316145b90508061166057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661168757604051633a954ecd60e21b815260040160405180910390fd5b6116936000848761150f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661176757600054821461176757805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c53565b604080516060810182526000808252602082018190529181019190915281806001111580156117e0575060005481105b156118be57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118bc5780516001600160a01b031615611853579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118b7579392505050565b611853565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061195e903390899088908890600401612670565b6020604051808303816000875af1925050508015611999575060408051601f3d908101601f19168201909252611996918101906126ad565b60015b6119f7573d8080156119c7576040519150601f19603f3d011682016040523d82523d6000602084013e6119cc565b606091505b5080516000036119ef576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600080611a26858585601054611b6b565b905080611a3557600d54611a39565b600e545b95945050505050565b6109dd828260405180602001604052806000815250611bf4565b6060600980546107da90612346565b606081600003611a925750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611abc5780611aa68161254c565b9150611ab59050600a836126e0565b9150611a96565b6000816001600160401b03811115611ad657611ad6611f74565b6040519080825280601f01601f191660200182016040528015611b00576020820181803683370190505b5090505b8415611a0d57611b156001836126f4565b9150611b22600a8661270b565b611b2d90603061259c565b60f81b818381518110611b4257611b42612520565b60200101906001600160f81b031916908160001a905350611b64600a866126e0565b9450611b04565b6040516bffffffffffffffffffffffff19606086901b16602082015260009081906034016040516020818303038152906040528051906020012090506000611be9868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250889250869150611c019050565b979650505050505050565b6109298383836001611c17565b600082611c0e8584611de3565b14949350505050565b6000546001600160a01b038516611c4057604051622e076360e81b815260040160405180910390fd5b83600003611c615760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d0d57506001600160a01b0387163b15155b15611d95575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d5e6000888480600101955088611929565b611d7b576040516368d2bf6b60e11b815260040160405180910390fd5b808203611d13578260005414611d9057600080fd5b611dda565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611d96575b50600055610c53565b600081815b8451811015611e2857611e1482868381518110611e0757611e07612520565b6020026020010151611e30565b915080611e208161254c565b915050611de8565b509392505050565b6000818310611e4c576000828152602084905260409020611149565b5060009182526020526040902090565b6001600160e01b03198116811461123857600080fd5b600060208284031215611e8457600080fd5b813561114981611e5c565b60005b83811015611eaa578181015183820152602001611e92565b83811115610ed85750506000910152565b60008151808452611ed3816020860160208601611e8f565b601f01601f19169290920160200192915050565b6020815260006111496020830184611ebb565b600060208284031215611f0c57600080fd5b5035919050565b80356001600160a01b0381168114611f2a57600080fd5b919050565b60008060408385031215611f4257600080fd5b611f4b83611f13565b946020939093013593505050565b600060208284031215611f6b57600080fd5b61114982611f13565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611fa457611fa4611f74565b604051601f8501601f19908116603f01168101908282118183101715611fcc57611fcc611f74565b81604052809350858152868686011115611fe557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561201157600080fd5b81356001600160401b0381111561202757600080fd5b8201601f8101841361203857600080fd5b611a0d84823560208401611f8a565b60008060006060848603121561205c57600080fd5b61206584611f13565b925061207360208501611f13565b9150604084013590509250925092565b60006020828403121561209557600080fd5b81356003811061114957600080fd5b634e487b7160e01b600052602160045260246000fd5b60208101600383106120dc57634e487b7160e01b600052602160045260246000fd5b91905290565b60008083601f8401126120f457600080fd5b5081356001600160401b0381111561210b57600080fd5b6020830191508360208260051b850101111561212657600080fd5b9250929050565b6000806000806040858703121561214357600080fd5b84356001600160401b038082111561215a57600080fd5b612166888389016120e2565b9096509450602087013591508082111561217f57600080fd5b5061218c878288016120e2565b95989497509550505050565b600080604083850312156121ab57600080fd5b6121b483611f13565b9150602083013580151581146121c957600080fd5b809150509250929050565b600080600080608085870312156121ea57600080fd5b6121f385611f13565b935061220160208601611f13565b92506040850135915060608501356001600160401b0381111561222357600080fd5b8501601f8101871361223457600080fd5b61224387823560208401611f8a565b91505092959194509250565b60008060006040848603121561226457600080fd5b8335925060208401356001600160401b0381111561228157600080fd5b61228d868287016120e2565b9497909650939450505050565b600080604083850312156122ad57600080fd5b6122b683611f13565b91506122c460208401611f13565b90509250929050565b6000806000806000606086880312156122e557600080fd5b8535945060208601356001600160401b038082111561230357600080fd5b61230f89838a016120e2565b9096509450604088013591508082111561232857600080fd5b50612335888289016120e2565b969995985093965092949392505050565b600181811c9082168061235a57607f821691505b60208210810361237a57634e487b7160e01b600052602260045260246000fd5b50919050565b60008251612392818460208701611e8f565b9190910192915050565b600081546123a981612346565b600182811680156123c157600181146123d657612405565b60ff1984168752821515830287019450612405565b8560005260208060002060005b858110156123fc5781548a8201529084019082016123e3565b50505082870194505b5050505092915050565b6000611149828461239c565b601f82111561092957600081815260208120601f850160051c810160208610156124425750805b601f850160051c820191505b818110156114925782815560010161244e565b81516001600160401b0381111561247a5761247a611f74565b61248e816124888454612346565b8461241b565b602080601f8311600181146124c357600084156124ab5750858301515b600019600386901b1c1916600185901b178555611492565b600085815260208120601f198616915b828110156124f2578886015182559484019460019091019084016124d3565b50858210156125105787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161255e5761255e612536565b5060010190565b6020808252601e908201527f546865204368696e61204e46543a20636f6e74726163742064656e6965640000604082015260600190565b600082198211156125af576125af612536565b500190565b60208082526022908201527f546865204368696e61204e46543a20696e76616c6964206d696e7420616d6f756040820152611b9d60f21b606082015260800190565b60208082526028908201527f546865204368696e61204e46543a206d617820746f6b656e20737570706c7920604082015267195e18d95959195960c21b606082015260800190565b60008451612650818460208901611e8f565b845190830190612664818360208901611e8f565b611be98183018661239c565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126a390830184611ebb565b9695505050505050565b6000602082840312156126bf57600080fd5b815161114981611e5c565b634e487b7160e01b600052601260045260246000fd5b6000826126ef576126ef6126ca565b500490565b60008282101561270657612706612536565b500390565b60008261271a5761271a6126ca565b50069056fea2646970667358221220faa5235caa83de8ae96d298fe8ffd91f227fd1eb54b279043e1d8985b1e5584364736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000604e0892bf27d65ecab0c62f65da57614d4994121f4e0d2d5b42d6f68d690546cdbd7263a203c9e972fe27a610b748d202986ccfb7967050b29f8c52f2ec3f35390000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5642444e6265747a4451797351556d42704c6b37316431464c6633536f65314c76627050744d626f725462312f00000000000000000000

-----Decoded View---------------
Arg [0] : initUriPrefix (string): ipfs://QmVBDNbetzDQysQUmBpLk71d1FLf3Soe1LvbpPtMborTb1/
Arg [1] : initPresaleMerkleRoot (bytes32): 0x4e0892bf27d65ecab0c62f65da57614d4994121f4e0d2d5b42d6f68d690546cd
Arg [2] : initVipAddressesMerkleRoot (bytes32): 0xbd7263a203c9e972fe27a610b748d202986ccfb7967050b29f8c52f2ec3f3539

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 4e0892bf27d65ecab0c62f65da57614d4994121f4e0d2d5b42d6f68d690546cd
Arg [2] : bd7263a203c9e972fe27a610b748d202986ccfb7967050b29f8c52f2ec3f3539
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d5642444e6265747a4451797351556d42704c6b37316431
Arg [5] : 464c6633536f65314c76627050744d626f725462312f00000000000000000000


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.