Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,355 MMC
Holders
508
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 MMCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MomocoNFT
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "./ERC721A.sol"; import "./INFT.sol"; contract MomocoNFT is ERC721A, Ownable, INFT { /// @dev Library using Strings for uint256; /// @dev Event event PurchaseEvent(address purchaseWallet, uint256 nftID, uint256 purchaseTimestamp); //////////////////////////////////////////// /// @dev All constant defination //////////////////////////////////////////// uint256 public constant INVENTORY = 10000; uint256 private W_PRICE = 0.1 ether; uint256 private N_PRICE = 0.125 ether; uint256 private MINT_LIMIT = 2; /// @dev public variable for business //////////////////////////////////////////// uint256 private _private_sell_start = 1649598600; uint256 private _public_sell_start = 0; bool private _is_revealed = false; string private _base_uri = ""; string private _blindbox_uri = "https://ipfs.momoconft.com/momoco/token/"; address private SIGNER = 0xe0c6fbEeC7Ce01a1614C81e04ddd7e909A88419d; /// functions //////////////////////////////////////////////////////////////////////// /// Override function _baseURI() internal view override returns (string memory) { return _base_uri; } /// NFT Related //////////////////////////////////////////////////////////////////////// constructor() ERC721A("Momoco NFT", "MMC") { } function purchaseWhitelist(uint256 amount, bytes memory sign) external payable { purchaseWhitelistValidator(msg.sender, sign, amount); mintTo(msg.sender, amount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if (!_is_revealed) { return bytes(_blindbox_uri).length > 0 ? string(abi.encodePacked(_blindbox_uri, tokenId.toString(), ".json")) : ""; } string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ""; } /// @dev check if we have storage for the purchase function isEnough(uint256 amount) private view returns (bool enough) { uint256 solded = totalSupply(); uint256 afterPurchased = solded + amount; enough = true; require(afterPurchased <= INVENTORY, "Max limit"); } function querySellType() external view returns (uint256) { if (_public_sell_start > 0) { return 2; } if (block.timestamp > _private_sell_start ) { return 1; } return 0; } function purchaseWhitelistValidator(address purchaseUser, bytes memory sign, uint256 amount) private { // basic validate require(_private_sell_start > 0, "Not start selling yet(1)"); require(block.timestamp >= _private_sell_start, "Not start selling yet(2)"); require(_public_sell_start == 0, "Private sale is over"); require(amount >= 1, "at least purchase 1"); require((_numberMinted(purchaseUser) + amount) <= MINT_LIMIT, "purchase over limit"); require(msg.value >= (W_PRICE * amount), "insufficient value"); require(verify(purchaseUser, sign), "this sign is not valid"); } /// @dev external method to verify the owner of the token function isOwner(uint256 nftID, address owner) external view returns(bool isNFTOwner) { address tokenOwner = ownerOf(nftID); isNFTOwner = (tokenOwner == owner); } function mintedNunber(address addr) external override view returns(uint256) { return _numberMinted(addr); } /// @dev show all purchased nfts by Arrays /// @return tokens nftID array function listMyNFT(address owner) external view returns (uint256[] memory tokens) { uint256 owned = balanceOf(owner); tokens = new uint256[](owned); uint256 start = 0; for (uint i=0; i<totalSupply(); i++) { if (ownerOf(i) == owner) { tokens[start] = i; start ++; } } } function purchaseValidator(address purchaseUser, uint256 amount) private { // basic validate require(_public_sell_start > 0, "Not start selling yet(21)"); require(amount >= 1, "at least purchase 1"); require((_numberMinted(purchaseUser) + amount) <= MINT_LIMIT, "purchase over limit"); require(msg.value >= (N_PRICE * amount), "insufficient value"); } /// @dev user doing purchase /// @param amount how many function purchaseNFT(uint256 amount) external payable { address purchaseUser = msg.sender; purchaseValidator(purchaseUser, amount); mintTo(purchaseUser, amount); } /// @dev mint function function mintTo(address purchaseUser, uint256 amount) private { _safeMint(purchaseUser, amount); } function supportsInterface(bytes4 interfaceId) public view override returns (bool) { return super.supportsInterface(interfaceId); } /// Admin Functions ////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////// function batchMint(address wallet, uint amount) external onlyOwner { isEnough(amount); mintTo(wallet, amount); } function setBaseData(bool isRevealed, string memory uri) external onlyOwner { _base_uri = uri; _is_revealed = isRevealed; } function setReveal(bool reveal_) external onlyOwner { _is_revealed = reveal_; } function withdrawETH(address wallet) external onlyOwner { payable(wallet).transfer(address(this).balance); } function withdrawTo(address wallet, uint256 amount) external onlyOwner { payable(wallet).transfer(amount); } function updateBlindboxURI(string memory url) external onlyOwner { _blindbox_uri = url; } function updatePriceW(uint256 price_) external onlyOwner { W_PRICE = price_; } function updatePriceN(uint256 price_) external onlyOwner { N_PRICE = price_; } function updateMintLimit(uint256 limit_) external onlyOwner { MINT_LIMIT = limit_; } function updatePrivateSale(uint256 time_) external onlyOwner { _private_sell_start = time_; } function updatePublicSale(uint256 time_) external onlyOwner { _public_sell_start = time_; } function updateSigner(address signer_) external onlyOwner { SIGNER = signer_; } function verify(address user, bytes memory _signatures) public view returns (bool) { bytes32 message = keccak256(abi.encodePacked(user, address(this))); bytes32 hash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", message)); address[] memory signList = recoverAddresses(hash, _signatures); return signList[0] == SIGNER; } function recoverAddresses(bytes32 _hash, bytes memory _signatures) internal pure returns (address[] memory addresses) { uint8 v; bytes32 r; bytes32 s; uint count = _countSignatures(_signatures); addresses = new address[](count); for (uint i = 0; i < count; i++) { (v, r, s) = _parseSignature(_signatures, i); addresses[i] = ecrecover(_hash, v, r, s); } } function _parseSignature(bytes memory _signatures, uint _pos) internal pure returns (uint8 v, bytes32 r, bytes32 s) { uint offset = _pos * 65; assembly { r := mload(add(_signatures, add(32, offset))) s := mload(add(_signatures, add(64, offset))) v := and(mload(add(_signatures, add(65, offset))), 0xff) } if (v < 27) v += 27; require(v == 27 || v == 28); } function _countSignatures(bytes memory _signatures) internal pure returns (uint) { return _signatures.length % 65 == 0 ? _signatures.length / 65 : 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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); } }
// 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/token/ERC721/extensions/IERC721Enumerable.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 MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); 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 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @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) { if (owner == address(0)) revert MintedQueryForZeroAddress(); 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) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); 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) { if (owner == address(0)) revert AuxQueryForZeroAddress(); 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 { if (owner == address(0)) revert AuxQueryForZeroAddress(); _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 (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 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 (!_checkOnERC721Received(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 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; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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; _ownerships[tokenId].addr = to; _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, 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 address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { 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)) } } } } else { return true; } } /** * @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 {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface INFT { function mintedNunber(address addr) external returns(uint256); }
// 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// 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; } }
// 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); }
{ "optimizer": { "enabled": true, "runs": 10000 }, "metadata": { "bytecodeHash": "none" }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"MintedQueryForZeroAddress","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"},{"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"purchaseWallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"nftID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"purchaseTimestamp","type":"uint256"}],"name":"PurchaseEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INVENTORY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftID","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"isOwner","outputs":[{"internalType":"bool","name":"isNFTOwner","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"listMyNFT","outputs":[{"internalType":"uint256[]","name":"tokens","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"mintedNunber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"purchaseNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"sign","type":"bytes"}],"name":"purchaseWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"querySellType","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isRevealed","type":"bool"},{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"reveal_","type":"bool"}],"name":"setReveal","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"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"updateBlindboxURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit_","type":"uint256"}],"name":"updateMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"updatePriceN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"updatePriceW","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time_","type":"uint256"}],"name":"updatePrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time_","type":"uint256"}],"name":"updatePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer_","type":"address"}],"name":"updateSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes","name":"_signatures","type":"bytes"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
67016345785d8a00006009556701bc16d674ec8000600a556002600b55636252e088600c556000600d819055600e805460ff1916905560a0604081905260808290526200005091600f919062000192565b5060405180606001604052806028815260200162003287602891398051620000819160109160209091019062000192565b50601180546001600160a01b03191673e0c6fbeec7ce01a1614c81e04ddd7e909a88419d179055348015620000b557600080fd5b50604080518082018252600a815269135bdb5bd8dbc813919560b21b6020808301918252835180850190945260038452624d4d4360e81b908401528151919291620001039160029162000192565b5080516200011990600390602084019062000192565b50505062000136620001306200013c60201b60201c565b62000140565b62000275565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a09062000238565b90600052602060002090601f016020900481019282620001c457600085556200020f565b82601f10620001df57805160ff19168380011785556200020f565b828001600101855582156200020f579182015b828111156200020f578251825591602001919060010190620001f2565b506200021d92915062000221565b5090565b5b808211156200021d576000815560010162000222565b600181811c908216806200024d57607f821691505b602082108114156200026f57634e487b7160e01b600052602260045260246000fd5b50919050565b61300280620002856000396000f3fe60806040526004361061026a5760003560e01c80636352211e11610153578063a22cb465116100cb578063c87b56dd1161007f578063e01d55c511610064578063e01d55c5146106a9578063e985e9c5146106c9578063f2fde38b1461071257600080fd5b8063c87b56dd14610673578063de5d547e1461069357600080fd5b8063b88d4fde116100b0578063b88d4fde1461061e578063c231e1091461063e578063c6a00d881461065e57600080fd5b8063a22cb465146105de578063a7ecd37e146105fe57600080fd5b806376a96758116101225780638da5cb5b116101075780638da5cb5b1461058b57806395d89b41146105a9578063987cb9b0146105be57600080fd5b806376a96758146105585780638a316ea31461056b57600080fd5b80636352211e146104e3578063690d83201461050357806370a0823114610523578063715018a61461054357600080fd5b806323b872dd116101e657806342842e0e116101b557806345d8e8881161019a57806345d8e888146104835780634a41d1ac146104a35780635a5d096c146104c357600080fd5b806342842e0e1461044357806343508b051461046357600080fd5b806323b872dd146103b65780632a3f300c146103d65780632e1ea10d146103f65780633f14e8d51461041657600080fd5b8063150bde031161023d5780631f2833cc116102225780631f2833cc146103565780632012afc714610376578063205c28781461039657600080fd5b8063150bde031461032057806318160ddd1461033357600080fd5b806301ffc9a71461026f57806306fdde03146102a4578063081812fc146102c6578063095ea7b3146102fe575b600080fd5b34801561027b57600080fd5b5061028f61028a366004612a63565b610732565b60405190151581526020015b60405180910390f35b3480156102b057600080fd5b506102b9610743565b60405161029b9190612d86565b3480156102d257600080fd5b506102e66102e1366004612ad2565b6107d5565b6040516001600160a01b03909116815260200161029b565b34801561030a57600080fd5b5061031e610319366004612a02565b610832565b005b61031e61032e366004612ad2565b6108f2565b34801561033f57600080fd5b50600154600054035b60405190815260200161029b565b34801561036257600080fd5b50610348610371366004612898565b61090b565b34801561038257600080fd5b5061031e610391366004612ad2565b610916565b3480156103a257600080fd5b5061031e6103b1366004612a02565b61097a565b3480156103c257600080fd5b5061031e6103d13660046128e6565b610a0a565b3480156103e257600080fd5b5061031e6103f1366004612a2c565b610a15565b34801561040257600080fd5b5061031e610411366004612a9d565b610aa0565b34801561042257600080fd5b50610436610431366004612898565b610b0d565b60405161029b9190612d42565b34801561044f57600080fd5b5061031e61045e3660046128e6565b610bdb565b34801561046f57600080fd5b5061031e61047e366004612a02565b610bf6565b34801561048f57600080fd5b5061031e61049e366004612ad2565b610c64565b3480156104af57600080fd5b5061028f6104be3660046129b4565b610cc3565b3480156104cf57600080fd5b5061028f6104de366004612aeb565b610dbf565b3480156104ef57600080fd5b506102e66104fe366004612ad2565b610de3565b34801561050f57600080fd5b5061031e61051e366004612898565b610df5565b34801561052f57600080fd5b5061034861053e366004612898565b610e84565b34801561054f57600080fd5b5061031e610eec565b61031e610566366004612b0e565b610f52565b34801561057757600080fd5b5061031e610586366004612a47565b610f67565b34801561059757600080fd5b506008546001600160a01b03166102e6565b3480156105b557600080fd5b506102b9611007565b3480156105ca57600080fd5b5061031e6105d9366004612ad2565b611016565b3480156105ea57600080fd5b5061031e6105f936600461298a565b611075565b34801561060a57600080fd5b5061031e610619366004612898565b611142565b34801561062a57600080fd5b5061031e610639366004612922565b6111d6565b34801561064a57600080fd5b5061031e610659366004612ad2565b611229565b34801561066a57600080fd5b50610348611288565b34801561067f57600080fd5b506102b961068e366004612ad2565b6112af565b34801561069f57600080fd5b5061034861271081565b3480156106b557600080fd5b5061031e6106c4366004612ad2565b6113ee565b3480156106d557600080fd5b5061028f6106e43660046128b3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561071e57600080fd5b5061031e61072d366004612898565b61144d565b600061073d8261152f565b92915050565b60606002805461075290612e6a565b80601f016020809104026020016040519081016040528092919081815260200182805461077e90612e6a565b80156107cb5780601f106107a0576101008083540402835291602001916107cb565b820191906000526020600020905b8154815290600101906020018083116107ae57829003601f168201915b5050505050905090565b60006107e082611612565b610816576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061083d82610de3565b9050806001600160a01b0316836001600160a01b0316141561088b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906108ab57506108a981336106e4565b155b156108e2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108ed838383611656565b505050565b336108fd81836116ca565b610907818361182f565b5050565b600061073d82611839565b6008546001600160a01b031633146109755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600a55565b6008546001600160a01b031633146109d45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156108ed573d6000803e3d6000fd5b6108ed8383836118ad565b6008546001600160a01b03163314610a6f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6008546001600160a01b03163314610afa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b8051610907906010906020840190612728565b60606000610b1a83610e84565b90508067ffffffffffffffff811115610b3557610b35612f98565b604051908082528060200260200182016040528015610b5e578160200160208202803683370190505b5091506000805b60015460005403811015610bd357846001600160a01b0316610b8682610de3565b6001600160a01b03161415610bc15780848381518110610ba857610ba8612f69565b602090810291909101015281610bbd81612ebe565b9250505b80610bcb81612ebe565b915050610b65565b505050919050565b6108ed838383604051806020016040528060008152506111d6565b6008546001600160a01b03163314610c505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b610c5981611b96565b50610907828261182f565b6008546001600160a01b03163314610cbe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b600955565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606084811b8216602084015230901b1660348201526000908190604801604051602081830303815290604052805190602001209050600081604051602001610d5b91907f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b6040516020818303038152906040528051906020012090506000610d7f8286611c13565b60115481519192506001600160a01b0316908290600090610da257610da2612f69565b60200260200101516001600160a01b031614935050505092915050565b600080610dcb84610de3565b6001600160a01b039081169316929092149392505050565b6000610dee82611d2c565b5192915050565b6008546001600160a01b03163314610e4f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610907573d6000803e3d6000fd5b60006001600160a01b038216610ec6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610f465760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b610f506000611ed2565b565b610f5d338284611f3c565b610907338361182f565b6008546001600160a01b03163314610fc15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b8051610fd490600f906020840190612728565b5050600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60606003805461075290612e6a565b6008546001600160a01b031633146110705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b600d55565b6001600160a01b0382163314156110b8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461119c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b601180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6111e18484846118ad565b6111ed84848484612199565b611223576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6008546001600160a01b031633146112835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b600c55565b600d54600090156112995750600290565b600c544211156112a95750600190565b50600090565b60606112ba82611612565b61132c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161096c565b600e5460ff166113925760006010805461134590612e6a565b905011611361576040518060200160405280600081525061073d565b601061136c83612329565b60405160200161137d929190612bfc565b60405160208183030381529060405292915050565b600061139c61245b565b905060008151116113bc57604051806020016040528060008152506113e7565b806113c684612329565b6040516020016113d7929190612ba5565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b600b55565b6008546001600160a01b031633146114a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b6001600160a01b0381166115235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161096c565b61152c81611ed2565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806115c257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061073d57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461073d565b600080548210801561073d5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000600d541161171c5760405162461bcd60e51b815260206004820152601960248201527f4e6f742073746172742073656c6c696e67207965742832312900000000000000604482015260640161096c565b600181101561176d5760405162461bcd60e51b815260206004820152601360248201527f6174206c65617374207075726368617365203100000000000000000000000000604482015260640161096c565b600b548161177a84611839565b6117849190612d99565b11156117d25760405162461bcd60e51b815260206004820152601360248201527f7075726368617365206f766572206c696d697400000000000000000000000000604482015260640161096c565b80600a546117e09190612dea565b3410156109075760405162461bcd60e51b815260206004820152601260248201527f696e73756666696369656e742076616c75650000000000000000000000000000604482015260640161096c565b610907828261246a565b60006001600160a01b03821661187b576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205468010000000000000000900467ffffffffffffffff1690565b60006118b882611d2c565b80519091506000906001600160a01b0316336001600160a01b031614806118e6575081516118e690336106e4565b806119015750336118f6846107d5565b6001600160a01b0316145b90508061193a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611989576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166119c9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119d96000848460000151611656565b6001600160a01b03858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080547fffffffff000000000000000000000000000000000000000000000000000000001690941774010000000000000000000000000000000000000000429092169190910217909255908601808352912054909116611b4c57600054811015611b4c578251600082815260046020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600080611ba66001546000540390565b90506000611bb48483612d99565b905060019250612710811115611c0c5760405162461bcd60e51b815260206004820152600960248201527f4d6178206c696d69740000000000000000000000000000000000000000000000604482015260640161096c565b5050919050565b6060600080600080611c2486612484565b90508067ffffffffffffffff811115611c3f57611c3f612f98565b604051908082528060200260200182016040528015611c68578160200160208202803683370190505b50945060005b81811015611d2157611c8087826124ae565b6040805160008152602081018083528d905260ff8516918101919091526060810183905260808101829052929750909550935060019060a0016020604051602081039080840390855afa158015611cdb573d6000803e3d6000fd5b50505060206040510351868281518110611cf757611cf7612f69565b6001600160a01b039092166020928302919091019091015280611d1981612ebe565b915050611c6e565b505050505092915050565b6040805160608101825260008082526020820181905291810182905290548290811015611ea057600081815260046020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff16151591810182905290611e9e5780516001600160a01b031615611dec579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600081815260046020908152604091829020825160608101845290546001600160a01b03811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff1615159281019290925215611e99579392505050565b611dec565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000600c5411611f8e5760405162461bcd60e51b815260206004820152601860248201527f4e6f742073746172742073656c6c696e67207965742831290000000000000000604482015260640161096c565b600c54421015611fe05760405162461bcd60e51b815260206004820152601860248201527f4e6f742073746172742073656c6c696e67207965742832290000000000000000604482015260640161096c565b600d54156120305760405162461bcd60e51b815260206004820152601460248201527f507269766174652073616c65206973206f766572000000000000000000000000604482015260640161096c565b60018110156120815760405162461bcd60e51b815260206004820152601360248201527f6174206c65617374207075726368617365203100000000000000000000000000604482015260640161096c565b600b548161208e85611839565b6120989190612d99565b11156120e65760405162461bcd60e51b815260206004820152601360248201527f7075726368617365206f766572206c696d697400000000000000000000000000604482015260640161096c565b806009546120f49190612dea565b3410156121435760405162461bcd60e51b815260206004820152601260248201527f696e73756666696369656e742076616c75650000000000000000000000000000604482015260640161096c565b61214d8383610cc3565b6108ed5760405162461bcd60e51b815260206004820152601660248201527f74686973207369676e206973206e6f742076616c696400000000000000000000604482015260640161096c565b60006001600160a01b0384163b1561231d576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906121f6903390899088908890600401612d06565b602060405180830381600087803b15801561221057600080fd5b505af192505050801561225e575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261225b91810190612a80565b60015b6122d2573d80801561228c576040519150601f19603f3d011682016040523d82523d6000602084013e612291565b606091505b5080516122ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612321565b5060015b949350505050565b60608161236957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612393578061237d81612ebe565b915061238c9050600a83612dd6565b915061236d565b60008167ffffffffffffffff8111156123ae576123ae612f98565b6040519080825280601f01601f1916602001820160405280156123d8576020820181803683370190505b5090505b8415612321576123ed600183612e27565b91506123fa600a86612ef7565b612405906030612d99565b60f81b81838151811061241a5761241a612f69565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612454600a86612dd6565b94506123dc565b6060600f805461075290612e6a565b610907828260405180602001604052806000815250612519565b6000604182516124949190612ef7565b156124a057600061073d565b6041825161073d9190612dd6565b60008080806124be856041612dea565b8681016020810151604082015160419092015160ff169650945092509050601b8410156124f3576124f0601b85612db1565b93505b8360ff16601b148061250857508360ff16601c145b61251157600080fd5b509250925092565b6108ed83838360016000546001600160a01b038516612564576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8361259b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168c018116909202179091558584526004909252822080547fffffffff00000000000000000000000000000000000000000000000000000000169093177401000000000000000000000000000000000000000042909216919091021790915581905b8581101561271f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156126dc57506126da6000888488612199565b155b15612713576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60019182019101612685565b50600055611b8f565b82805461273490612e6a565b90600052602060002090601f016020900481019282612756576000855561279c565b82601f1061276f57805160ff191683800117855561279c565b8280016001018555821561279c579182015b8281111561279c578251825591602001919060010190612781565b506127a89291506127ac565b5090565b5b808211156127a857600081556001016127ad565b80356001600160a01b03811681146127d857600080fd5b919050565b803580151581146127d857600080fd5b600082601f8301126127fe57600080fd5b813567ffffffffffffffff8082111561281957612819612f98565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561285f5761285f612f98565b8160405283815286602085880101111561287857600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000602082840312156128aa57600080fd5b6113e7826127c1565b600080604083850312156128c657600080fd5b6128cf836127c1565b91506128dd602084016127c1565b90509250929050565b6000806000606084860312156128fb57600080fd5b612904846127c1565b9250612912602085016127c1565b9150604084013590509250925092565b6000806000806080858703121561293857600080fd5b612941856127c1565b935061294f602086016127c1565b925060408501359150606085013567ffffffffffffffff81111561297257600080fd5b61297e878288016127ed565b91505092959194509250565b6000806040838503121561299d57600080fd5b6129a6836127c1565b91506128dd602084016127dd565b600080604083850312156129c757600080fd5b6129d0836127c1565b9150602083013567ffffffffffffffff8111156129ec57600080fd5b6129f8858286016127ed565b9150509250929050565b60008060408385031215612a1557600080fd5b612a1e836127c1565b946020939093013593505050565b600060208284031215612a3e57600080fd5b6113e7826127dd565b60008060408385031215612a5a57600080fd5b6129d0836127dd565b600060208284031215612a7557600080fd5b81356113e781612fc7565b600060208284031215612a9257600080fd5b81516113e781612fc7565b600060208284031215612aaf57600080fd5b813567ffffffffffffffff811115612ac657600080fd5b612321848285016127ed565b600060208284031215612ae457600080fd5b5035919050565b60008060408385031215612afe57600080fd5b823591506128dd602084016127c1565b60008060408385031215612b2157600080fd5b82359150602083013567ffffffffffffffff8111156129ec57600080fd5b60008151808452612b57816020860160208601612e3e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008151612b9b818560208601612e3e565b9290920192915050565b60008351612bb7818460208801612e3e565b835190830190612bcb818360208801612e3e565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600080845481600182811c915080831680612c1857607f831692505b6020808410821415612c51577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b818015612c655760018114612c9457612cc1565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00861689528489019650612cc1565b60008b81526020902060005b86811015612cb95781548b820152908501908301612ca0565b505084890196505b505050505050612cfd612cd48286612b89565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612d386080830184612b3f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d7a57835183529284019291840191600101612d5e565b50909695505050505050565b6020815260006113e76020830184612b3f565b60008219821115612dac57612dac612f0b565b500190565b600060ff821660ff84168060ff03821115612dce57612dce612f0b565b019392505050565b600082612de557612de5612f3a565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e2257612e22612f0b565b500290565b600082821015612e3957612e39612f0b565b500390565b60005b83811015612e59578181015183820152602001612e41565b838111156112235750506000910152565b600181811c90821680612e7e57607f821691505b60208210811415612eb8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ef057612ef0612f0b565b5060010190565b600082612f0657612f06612f3a565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461152c57600080fdfea164736f6c6343000807000a68747470733a2f2f697066732e6d6f6d6f636f6e66742e636f6d2f6d6f6d6f636f2f746f6b656e2f
Deployed Bytecode
0x60806040526004361061026a5760003560e01c80636352211e11610153578063a22cb465116100cb578063c87b56dd1161007f578063e01d55c511610064578063e01d55c5146106a9578063e985e9c5146106c9578063f2fde38b1461071257600080fd5b8063c87b56dd14610673578063de5d547e1461069357600080fd5b8063b88d4fde116100b0578063b88d4fde1461061e578063c231e1091461063e578063c6a00d881461065e57600080fd5b8063a22cb465146105de578063a7ecd37e146105fe57600080fd5b806376a96758116101225780638da5cb5b116101075780638da5cb5b1461058b57806395d89b41146105a9578063987cb9b0146105be57600080fd5b806376a96758146105585780638a316ea31461056b57600080fd5b80636352211e146104e3578063690d83201461050357806370a0823114610523578063715018a61461054357600080fd5b806323b872dd116101e657806342842e0e116101b557806345d8e8881161019a57806345d8e888146104835780634a41d1ac146104a35780635a5d096c146104c357600080fd5b806342842e0e1461044357806343508b051461046357600080fd5b806323b872dd146103b65780632a3f300c146103d65780632e1ea10d146103f65780633f14e8d51461041657600080fd5b8063150bde031161023d5780631f2833cc116102225780631f2833cc146103565780632012afc714610376578063205c28781461039657600080fd5b8063150bde031461032057806318160ddd1461033357600080fd5b806301ffc9a71461026f57806306fdde03146102a4578063081812fc146102c6578063095ea7b3146102fe575b600080fd5b34801561027b57600080fd5b5061028f61028a366004612a63565b610732565b60405190151581526020015b60405180910390f35b3480156102b057600080fd5b506102b9610743565b60405161029b9190612d86565b3480156102d257600080fd5b506102e66102e1366004612ad2565b6107d5565b6040516001600160a01b03909116815260200161029b565b34801561030a57600080fd5b5061031e610319366004612a02565b610832565b005b61031e61032e366004612ad2565b6108f2565b34801561033f57600080fd5b50600154600054035b60405190815260200161029b565b34801561036257600080fd5b50610348610371366004612898565b61090b565b34801561038257600080fd5b5061031e610391366004612ad2565b610916565b3480156103a257600080fd5b5061031e6103b1366004612a02565b61097a565b3480156103c257600080fd5b5061031e6103d13660046128e6565b610a0a565b3480156103e257600080fd5b5061031e6103f1366004612a2c565b610a15565b34801561040257600080fd5b5061031e610411366004612a9d565b610aa0565b34801561042257600080fd5b50610436610431366004612898565b610b0d565b60405161029b9190612d42565b34801561044f57600080fd5b5061031e61045e3660046128e6565b610bdb565b34801561046f57600080fd5b5061031e61047e366004612a02565b610bf6565b34801561048f57600080fd5b5061031e61049e366004612ad2565b610c64565b3480156104af57600080fd5b5061028f6104be3660046129b4565b610cc3565b3480156104cf57600080fd5b5061028f6104de366004612aeb565b610dbf565b3480156104ef57600080fd5b506102e66104fe366004612ad2565b610de3565b34801561050f57600080fd5b5061031e61051e366004612898565b610df5565b34801561052f57600080fd5b5061034861053e366004612898565b610e84565b34801561054f57600080fd5b5061031e610eec565b61031e610566366004612b0e565b610f52565b34801561057757600080fd5b5061031e610586366004612a47565b610f67565b34801561059757600080fd5b506008546001600160a01b03166102e6565b3480156105b557600080fd5b506102b9611007565b3480156105ca57600080fd5b5061031e6105d9366004612ad2565b611016565b3480156105ea57600080fd5b5061031e6105f936600461298a565b611075565b34801561060a57600080fd5b5061031e610619366004612898565b611142565b34801561062a57600080fd5b5061031e610639366004612922565b6111d6565b34801561064a57600080fd5b5061031e610659366004612ad2565b611229565b34801561066a57600080fd5b50610348611288565b34801561067f57600080fd5b506102b961068e366004612ad2565b6112af565b34801561069f57600080fd5b5061034861271081565b3480156106b557600080fd5b5061031e6106c4366004612ad2565b6113ee565b3480156106d557600080fd5b5061028f6106e43660046128b3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561071e57600080fd5b5061031e61072d366004612898565b61144d565b600061073d8261152f565b92915050565b60606002805461075290612e6a565b80601f016020809104026020016040519081016040528092919081815260200182805461077e90612e6a565b80156107cb5780601f106107a0576101008083540402835291602001916107cb565b820191906000526020600020905b8154815290600101906020018083116107ae57829003601f168201915b5050505050905090565b60006107e082611612565b610816576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061083d82610de3565b9050806001600160a01b0316836001600160a01b0316141561088b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906108ab57506108a981336106e4565b155b156108e2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108ed838383611656565b505050565b336108fd81836116ca565b610907818361182f565b5050565b600061073d82611839565b6008546001600160a01b031633146109755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600a55565b6008546001600160a01b031633146109d45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156108ed573d6000803e3d6000fd5b6108ed8383836118ad565b6008546001600160a01b03163314610a6f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6008546001600160a01b03163314610afa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b8051610907906010906020840190612728565b60606000610b1a83610e84565b90508067ffffffffffffffff811115610b3557610b35612f98565b604051908082528060200260200182016040528015610b5e578160200160208202803683370190505b5091506000805b60015460005403811015610bd357846001600160a01b0316610b8682610de3565b6001600160a01b03161415610bc15780848381518110610ba857610ba8612f69565b602090810291909101015281610bbd81612ebe565b9250505b80610bcb81612ebe565b915050610b65565b505050919050565b6108ed838383604051806020016040528060008152506111d6565b6008546001600160a01b03163314610c505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b610c5981611b96565b50610907828261182f565b6008546001600160a01b03163314610cbe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b600955565b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606084811b8216602084015230901b1660348201526000908190604801604051602081830303815290604052805190602001209050600081604051602001610d5b91907f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b6040516020818303038152906040528051906020012090506000610d7f8286611c13565b60115481519192506001600160a01b0316908290600090610da257610da2612f69565b60200260200101516001600160a01b031614935050505092915050565b600080610dcb84610de3565b6001600160a01b039081169316929092149392505050565b6000610dee82611d2c565b5192915050565b6008546001600160a01b03163314610e4f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610907573d6000803e3d6000fd5b60006001600160a01b038216610ec6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610f465760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b610f506000611ed2565b565b610f5d338284611f3c565b610907338361182f565b6008546001600160a01b03163314610fc15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b8051610fd490600f906020840190612728565b5050600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60606003805461075290612e6a565b6008546001600160a01b031633146110705760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b600d55565b6001600160a01b0382163314156110b8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461119c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b601180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6111e18484846118ad565b6111ed84848484612199565b611223576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6008546001600160a01b031633146112835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b600c55565b600d54600090156112995750600290565b600c544211156112a95750600190565b50600090565b60606112ba82611612565b61132c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161096c565b600e5460ff166113925760006010805461134590612e6a565b905011611361576040518060200160405280600081525061073d565b601061136c83612329565b60405160200161137d929190612bfc565b60405160208183030381529060405292915050565b600061139c61245b565b905060008151116113bc57604051806020016040528060008152506113e7565b806113c684612329565b6040516020016113d7929190612ba5565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b600b55565b6008546001600160a01b031633146114a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161096c565b6001600160a01b0381166115235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161096c565b61152c81611ed2565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806115c257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061073d57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461073d565b600080548210801561073d5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000600d541161171c5760405162461bcd60e51b815260206004820152601960248201527f4e6f742073746172742073656c6c696e67207965742832312900000000000000604482015260640161096c565b600181101561176d5760405162461bcd60e51b815260206004820152601360248201527f6174206c65617374207075726368617365203100000000000000000000000000604482015260640161096c565b600b548161177a84611839565b6117849190612d99565b11156117d25760405162461bcd60e51b815260206004820152601360248201527f7075726368617365206f766572206c696d697400000000000000000000000000604482015260640161096c565b80600a546117e09190612dea565b3410156109075760405162461bcd60e51b815260206004820152601260248201527f696e73756666696369656e742076616c75650000000000000000000000000000604482015260640161096c565b610907828261246a565b60006001600160a01b03821661187b576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205468010000000000000000900467ffffffffffffffff1690565b60006118b882611d2c565b80519091506000906001600160a01b0316336001600160a01b031614806118e6575081516118e690336106e4565b806119015750336118f6846107d5565b6001600160a01b0316145b90508061193a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611989576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166119c9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119d96000848460000151611656565b6001600160a01b03858116600090815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080547fffffffff000000000000000000000000000000000000000000000000000000001690941774010000000000000000000000000000000000000000429092169190910217909255908601808352912054909116611b4c57600054811015611b4c578251600082815260046020908152604090912080549186015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600080611ba66001546000540390565b90506000611bb48483612d99565b905060019250612710811115611c0c5760405162461bcd60e51b815260206004820152600960248201527f4d6178206c696d69740000000000000000000000000000000000000000000000604482015260640161096c565b5050919050565b6060600080600080611c2486612484565b90508067ffffffffffffffff811115611c3f57611c3f612f98565b604051908082528060200260200182016040528015611c68578160200160208202803683370190505b50945060005b81811015611d2157611c8087826124ae565b6040805160008152602081018083528d905260ff8516918101919091526060810183905260808101829052929750909550935060019060a0016020604051602081039080840390855afa158015611cdb573d6000803e3d6000fd5b50505060206040510351868281518110611cf757611cf7612f69565b6001600160a01b039092166020928302919091019091015280611d1981612ebe565b915050611c6e565b505050505092915050565b6040805160608101825260008082526020820181905291810182905290548290811015611ea057600081815260046020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff16151591810182905290611e9e5780516001600160a01b031615611dec579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600081815260046020908152604091829020825160608101845290546001600160a01b03811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff1615159281019290925215611e99579392505050565b611dec565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000600c5411611f8e5760405162461bcd60e51b815260206004820152601860248201527f4e6f742073746172742073656c6c696e67207965742831290000000000000000604482015260640161096c565b600c54421015611fe05760405162461bcd60e51b815260206004820152601860248201527f4e6f742073746172742073656c6c696e67207965742832290000000000000000604482015260640161096c565b600d54156120305760405162461bcd60e51b815260206004820152601460248201527f507269766174652073616c65206973206f766572000000000000000000000000604482015260640161096c565b60018110156120815760405162461bcd60e51b815260206004820152601360248201527f6174206c65617374207075726368617365203100000000000000000000000000604482015260640161096c565b600b548161208e85611839565b6120989190612d99565b11156120e65760405162461bcd60e51b815260206004820152601360248201527f7075726368617365206f766572206c696d697400000000000000000000000000604482015260640161096c565b806009546120f49190612dea565b3410156121435760405162461bcd60e51b815260206004820152601260248201527f696e73756666696369656e742076616c75650000000000000000000000000000604482015260640161096c565b61214d8383610cc3565b6108ed5760405162461bcd60e51b815260206004820152601660248201527f74686973207369676e206973206e6f742076616c696400000000000000000000604482015260640161096c565b60006001600160a01b0384163b1561231d576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906121f6903390899088908890600401612d06565b602060405180830381600087803b15801561221057600080fd5b505af192505050801561225e575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261225b91810190612a80565b60015b6122d2573d80801561228c576040519150601f19603f3d011682016040523d82523d6000602084013e612291565b606091505b5080516122ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612321565b5060015b949350505050565b60608161236957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612393578061237d81612ebe565b915061238c9050600a83612dd6565b915061236d565b60008167ffffffffffffffff8111156123ae576123ae612f98565b6040519080825280601f01601f1916602001820160405280156123d8576020820181803683370190505b5090505b8415612321576123ed600183612e27565b91506123fa600a86612ef7565b612405906030612d99565b60f81b81838151811061241a5761241a612f69565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612454600a86612dd6565b94506123dc565b6060600f805461075290612e6a565b610907828260405180602001604052806000815250612519565b6000604182516124949190612ef7565b156124a057600061073d565b6041825161073d9190612dd6565b60008080806124be856041612dea565b8681016020810151604082015160419092015160ff169650945092509050601b8410156124f3576124f0601b85612db1565b93505b8360ff16601b148061250857508360ff16601c145b61251157600080fd5b509250925092565b6108ed83838360016000546001600160a01b038516612564576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8361259b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168c018116909202179091558584526004909252822080547fffffffff00000000000000000000000000000000000000000000000000000000169093177401000000000000000000000000000000000000000042909216919091021790915581905b8581101561271f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156126dc57506126da6000888488612199565b155b15612713576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60019182019101612685565b50600055611b8f565b82805461273490612e6a565b90600052602060002090601f016020900481019282612756576000855561279c565b82601f1061276f57805160ff191683800117855561279c565b8280016001018555821561279c579182015b8281111561279c578251825591602001919060010190612781565b506127a89291506127ac565b5090565b5b808211156127a857600081556001016127ad565b80356001600160a01b03811681146127d857600080fd5b919050565b803580151581146127d857600080fd5b600082601f8301126127fe57600080fd5b813567ffffffffffffffff8082111561281957612819612f98565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561285f5761285f612f98565b8160405283815286602085880101111561287857600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000602082840312156128aa57600080fd5b6113e7826127c1565b600080604083850312156128c657600080fd5b6128cf836127c1565b91506128dd602084016127c1565b90509250929050565b6000806000606084860312156128fb57600080fd5b612904846127c1565b9250612912602085016127c1565b9150604084013590509250925092565b6000806000806080858703121561293857600080fd5b612941856127c1565b935061294f602086016127c1565b925060408501359150606085013567ffffffffffffffff81111561297257600080fd5b61297e878288016127ed565b91505092959194509250565b6000806040838503121561299d57600080fd5b6129a6836127c1565b91506128dd602084016127dd565b600080604083850312156129c757600080fd5b6129d0836127c1565b9150602083013567ffffffffffffffff8111156129ec57600080fd5b6129f8858286016127ed565b9150509250929050565b60008060408385031215612a1557600080fd5b612a1e836127c1565b946020939093013593505050565b600060208284031215612a3e57600080fd5b6113e7826127dd565b60008060408385031215612a5a57600080fd5b6129d0836127dd565b600060208284031215612a7557600080fd5b81356113e781612fc7565b600060208284031215612a9257600080fd5b81516113e781612fc7565b600060208284031215612aaf57600080fd5b813567ffffffffffffffff811115612ac657600080fd5b612321848285016127ed565b600060208284031215612ae457600080fd5b5035919050565b60008060408385031215612afe57600080fd5b823591506128dd602084016127c1565b60008060408385031215612b2157600080fd5b82359150602083013567ffffffffffffffff8111156129ec57600080fd5b60008151808452612b57816020860160208601612e3e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008151612b9b818560208601612e3e565b9290920192915050565b60008351612bb7818460208801612e3e565b835190830190612bcb818360208801612e3e565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600080845481600182811c915080831680612c1857607f831692505b6020808410821415612c51577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b818015612c655760018114612c9457612cc1565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00861689528489019650612cc1565b60008b81526020902060005b86811015612cb95781548b820152908501908301612ca0565b505084890196505b505050505050612cfd612cd48286612b89565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612d386080830184612b3f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d7a57835183529284019291840191600101612d5e565b50909695505050505050565b6020815260006113e76020830184612b3f565b60008219821115612dac57612dac612f0b565b500190565b600060ff821660ff84168060ff03821115612dce57612dce612f0b565b019392505050565b600082612de557612de5612f3a565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e2257612e22612f0b565b500290565b600082821015612e3957612e39612f0b565b500390565b60005b83811015612e59578181015183820152602001612e41565b838111156112235750506000910152565b600181811c90821680612e7e57607f821691505b60208210811415612eb8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ef057612ef0612f0b565b5060010190565b600082612f0657612f06612f3a565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461152c57600080fdfea164736f6c6343000807000a
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.