Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,093 RAANFT
Holders
417
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 RAANFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RAANFT
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Contract audited and reviewed by @CardilloSamuel pragma solidity 0.8.7; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./ERC721A.sol"; import "./ERC2981ContractWideRoyalties.sol"; contract RAANFT is ERC721A, ERC2981ContractWideRoyalties, Ownable { string public baseURI = "ipfs://QmNU8mP16fqDKMATZ35gpR7na2nufPgxXtYFJFdyYz6nKD?"; bool public saleActive = false; bool public whitelistOnly = true; bool public contractSealed = false; bytes32 private whitelistMerkleRoot = 0x719e195fa3f2af8263949a77dfcc87348341394599cd482f177db268757addac; bytes32 private previousBuyersRoot = 0xe0441d19f49682aad8021fd8794dcb751ba7a19ed30d36ea781448a92b19df60; // Price and supply definition uint256 constant public TOKEN_PRICE = 0.2 ether; uint256 constant public TOKEN_MAX_SUPPLY = 6666; // EIP 2981 Standard Implementation address constant public ROYALTY_RECIPIENT = 0xe9FA03EA36B5CC9db463Cdb8E440178e7E869BC4; uint256 constant public ROYALTY_PERCENTAGE = 500; // value percentage (using 2 decimals - 10000 = 100, 0 = 0) // Protection mapping (address => uint256) amountMinted; uint256 public mintLimit = 2; constructor () ERC721A("RAA-NFT", "RAANFT", 10) { _setRoyalties(ROYALTY_RECIPIENT, ROYALTY_PERCENTAGE); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // Toggle the sales function toggleSales() public onlyOwner { saleActive = !saleActive; } // Toggle the whitelist function toggleWhitelist() public onlyOwner { whitelistOnly = !whitelistOnly; } // Reveal function function reveal(string calldata _newUri) public onlyOwner { require(!contractSealed, "Contract has been sealed"); baseURI = _newUri; } // Efficient and easy way to seal contract to avoid any future modification of baseUri function sealContract() public onlyOwner { require(!contractSealed, "Contract has been already sealed"); contractSealed = true; } // Control over mint protection function setMintLimit(uint256 newLimit) public onlyOwner { require(!contractSealed, "Contract has been already sealed"); mintLimit = newLimit; } // Mint function mint(bytes32[] calldata _merkleProof, bytes32[] calldata _merkleProofSpent, uint256 quantity) public payable { require(tx.origin == msg.sender, "The caller is another contract"); require(saleActive, "The sale is not active"); uint256 tokenPrice = TOKEN_PRICE; bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); // To verify both whitelist // Checking whitelist if(whitelistOnly) { require(MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf), "Invalid proof."); require(amountMinted[msg.sender] + quantity <= mintLimit, "You can't mint more than that for now"); if(MerkleProof.verify(_merkleProofSpent, previousBuyersRoot, leaf)) tokenPrice = 0.1 ether; } else { require(amountMinted[msg.sender] + quantity <= 10, "You can't mint more than 10"); } require(msg.value >= tokenPrice * quantity, "Wrong price"); require(totalSupply() + quantity <= TOKEN_MAX_SUPPLY, "No more RAANFT left"); // Increment protection variable to make sure minter never goes over the set limit amountMinted[msg.sender] = amountMinted[msg.sender] + quantity; _safeMint(msg.sender, quantity); // Minting of the token(s) } // Airdrop function airdrop(address receiver, uint256 quantity) public onlyOwner { require(totalSupply() + quantity <= TOKEN_MAX_SUPPLY, "No more RAANFT left"); _safeMint(receiver, quantity); } function getPrice(bytes32[] calldata _merkleProof) public view returns(uint256) { uint256 tokenPrice = TOKEN_PRICE; bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); if(whitelistOnly && MerkleProof.verify(_merkleProof, previousBuyersRoot, leaf)) tokenPrice = 0.1 ether; return tokenPrice; } // Withdraw funds from the contract function withdrawFunds() public onlyOwner { payable(ROYALTY_RECIPIENT).transfer(address(this).balance); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } // EIP 2981 Standard Implementation function setRoyalties(address recipient, uint256 value) public onlyOwner { _setRoyalties(recipient, value); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981Base) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; import './ERC2981Base.sol'; /// @dev This is a contract used to add ERC2981 support to ERC721 and 1155 /// @dev This implementation has the same royalties for each and every tokens abstract contract ERC2981ContractWideRoyalties is ERC2981Base { RoyaltyInfo private _royalties; /// @dev Sets token royalties /// @param recipient recipient of the royalties /// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0) function _setRoyalties(address recipient, uint256 value) internal { require(value <= 10000, 'ERC2981Royalties: Too high'); _royalties = RoyaltyInfo(recipient, uint24(value)); } /// @inheritdoc IERC2981Royalties function royaltyInfo(uint256, uint256 value) external view override returns (address receiver, uint256 royaltyAmount) { RoyaltyInfo memory royalties = _royalties; receiver = royalties.recipient; royaltyAmount = (value * royalties.amount) / 10000; } }
// SPDX-License-Identifier: MIT // Creators: locationtba.eth, 2pmflow.eth pragma solidity ^0.8.0; 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"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); 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); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @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; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); 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 || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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("ERC721A: transfer to non ERC721Receiver implementer"); } 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. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// 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 // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// 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/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/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 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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 (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 tokenId); /** * @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 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 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/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 pragma solidity ^0.8.0; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; import './IERC2981Royalties.sol'; /// @dev This is a contract used to add ERC2981 support to ERC721 and 1155 abstract contract ERC2981Base is ERC165, IERC2981Royalties { struct RoyaltyInfo { address recipient; uint24 amount; } /// @inheritdoc ERC165 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC2981Royalties).interfaceId || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title IERC2981Royalties /// @dev Interface for the ERC2981 - Token Royalty standard interface IERC2981Royalties { /// @notice Called with the sale price to determine how much royalty // is owed and to whom. /// @param _tokenId - the NFT asset queried for royalty information /// @param _value - the sale price of the NFT asset specified by _tokenId /// @return _receiver - address of who should be sent the royalty payment /// @return _royaltyAmount - the royalty payment amount for value sale price function royaltyInfo(uint256 _tokenId, uint256 _value) external view returns (address _receiver, uint256 _royaltyAmount); }
// 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": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":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":"ROYALTY_PERCENTAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_RECIPIENT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractSealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"bytes32[]","name":"_merkleProofSpent","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintLimit","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":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sealContract","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":"uint256","name":"newLimit","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setRoyalties","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":[],"name":"toggleSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"whitelistOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405260008055600060075560405180606001604052806036815260200162005dd060369139600a90805190602001906200003e929190620003eb565b506000600b60006101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055507f719e195fa3f2af8263949a77dfcc87348341394599cd482f177db268757addac60001b600c557fe0441d19f49682aad8021fd8794dcb751ba7a19ed30d36ea781448a92b19df6060001b600d556002600f55348015620000f057600080fd5b506040518060400160405280600781526020017f5241412d4e4654000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f5241414e46540000000000000000000000000000000000000000000000000000815250600a60008111620001a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019c906200050b565b60405180910390fd5b8260019080519060200190620001bd929190620003eb565b508160029080519060200190620001d6929190620003eb565b50806080818152505050505062000202620001f66200023060201b60201c565b6200023860201b60201c565b6200022a73e9fa03ea36b5cc9db463cdb8e440178e7e869bc46101f4620002fe60201b60201c565b6200061b565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61271081111562000346576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033d90620004e9565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548162ffffff021916908362ffffff1602179055509050505050565b828054620003f9906200053e565b90600052602060002090601f0160209004810192826200041d576000855562000469565b82601f106200043857805160ff191683800117855562000469565b8280016001018555821562000469579182015b82811115620004685782518255916020019190600101906200044b565b5b5090506200047891906200047c565b5090565b5b80821115620004975760008160009055506001016200047d565b5090565b6000620004aa601a836200052d565b9150620004b782620005a3565b602082019050919050565b6000620004d16027836200052d565b9150620004de82620005cc565b604082019050919050565b6000602082019050818103600083015262000504816200049b565b9050919050565b600060208201905081810360008301526200052681620004c2565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200055757607f821691505b602082108114156200056e576200056d62000574565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b60805161578b62000645600039600081816129760152818161299f0152613430015261578b6000f3fe6080604052600436106102515760003560e01c8063715018a611610139578063a22cb465116100b6578063d7224ba01161007a578063d7224ba0146108b5578063dbd30ae0146108e0578063dc33e681146108f7578063e77d053014610934578063e985e9c514610950578063f2fde38b1461098d57610251565b8063a22cb465146107d0578063b6501637146107f9578063b88d4fde14610824578063c87b56dd1461084d578063d2d8cb671461088a57610251565b80638ee2c4b8116100fd5780638ee2c4b8146106e95780639231ab2a1461071457806395d89b4114610751578063996517cf1461077c5780639e6a1d7d146107a757610251565b8063715018a61461063e5780637e15144b146106555780638ba4cc3c1461066c5780638c7ea24b146106955780638da5cb5b146106be57610251565b806342842e0e116101d257806350fe03f61161019657806350fe03f61461052c5780636352211e1461055757806368428a1b1461059457806368bd580e146105bf5780636c0360eb146105d657806370a082311461060157610251565b806342842e0e14610447578063463b08db146104705780634b4687b51461049b5780634c261247146104c65780634f6ccce7146104ef57610251565b80632399000411610219578063239900041461034f57806323b872dd1461038c57806324600fc3146103b55780632a55205a146103cc5780632f745c591461040a57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613dd2565b6109b6565b60405161028a9190614569565b60405180910390f35b34801561029f57600080fd5b506102a86109c8565b6040516102b59190614584565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613e79565b610a5a565b6040516102f291906144d9565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613cb0565b610adf565b005b34801561033057600080fd5b50610339610bf8565b60405161034691906149a1565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613cf0565b610c01565b60405161038391906149a1565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190613b9a565b610cbc565b005b3480156103c157600080fd5b506103ca610ccc565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190613ea6565b610da5565b604051610401929190614540565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190613cb0565b610e65565b60405161043e91906149a1565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190613b9a565b611063565b005b34801561047c57600080fd5b50610485611083565b60405161049291906149a1565b60405180910390f35b3480156104a757600080fd5b506104b0611089565b6040516104bd9190614569565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190613e2c565b61109c565b005b3480156104fb57600080fd5b5061051660048036038101906105119190613e79565b61117e565b60405161052391906149a1565b60405180910390f35b34801561053857600080fd5b506105416111d1565b60405161054e91906144d9565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190613e79565b6111e9565b60405161058b91906144d9565b60405180910390f35b3480156105a057600080fd5b506105a96111ff565b6040516105b69190614569565b60405180910390f35b3480156105cb57600080fd5b506105d4611212565b005b3480156105e257600080fd5b506105eb6112fb565b6040516105f89190614584565b60405180910390f35b34801561060d57600080fd5b5061062860048036038101906106239190613b2d565b611389565b60405161063591906149a1565b60405180910390f35b34801561064a57600080fd5b50610653611472565b005b34801561066157600080fd5b5061066a6114fa565b005b34801561067857600080fd5b50610693600480360381019061068e9190613cb0565b6115a2565b005b3480156106a157600080fd5b506106bc60048036038101906106b79190613cb0565b611683565b005b3480156106ca57600080fd5b506106d361170d565b6040516106e091906144d9565b60405180910390f35b3480156106f557600080fd5b506106fe611737565b60405161070b91906149a1565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190613e79565b61173d565b6040516107489190614986565b60405180910390f35b34801561075d57600080fd5b50610766611755565b6040516107739190614584565b60405180910390f35b34801561078857600080fd5b506107916117e7565b60405161079e91906149a1565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c99190613e79565b6117ed565b005b3480156107dc57600080fd5b506107f760048036038101906107f29190613c70565b6118c3565b005b34801561080557600080fd5b5061080e611a44565b60405161081b9190614569565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190613bed565b611a57565b005b34801561085957600080fd5b50610874600480360381019061086f9190613e79565b611ab3565b6040516108819190614584565b60405180910390f35b34801561089657600080fd5b5061089f611b5a565b6040516108ac91906149a1565b60405180910390f35b3480156108c157600080fd5b506108ca611b66565b6040516108d791906149a1565b60405180910390f35b3480156108ec57600080fd5b506108f5611b6c565b005b34801561090357600080fd5b5061091e60048036038101906109199190613b2d565b611c14565b60405161092b91906149a1565b60405180910390f35b61094e60048036038101906109499190613d3d565b611c26565b005b34801561095c57600080fd5b5061097760048036038101906109729190613b5a565b612085565b6040516109849190614569565b60405180910390f35b34801561099957600080fd5b506109b460048036038101906109af9190613b2d565b612119565b005b60006109c182612211565b9050919050565b6060600180546109d790614cfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0390614cfe565b8015610a505780601f10610a2557610100808354040283529160200191610a50565b820191906000526020600020905b815481529060010190602001808311610a3357829003601f168201915b5050505050905090565b6000610a658261228b565b610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b90614926565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aea826111e9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5290614846565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7a612298565b73ffffffffffffffffffffffffffffffffffffffff161480610ba95750610ba881610ba3612298565b612085565b5b610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90614726565b60405180910390fd5b610bf38383836122a0565b505050565b60008054905090565b6000806702c68af0bb1400009050600033604051602001610c22919061446e565b604051602081830303815290604052805190602001209050600b60019054906101000a900460ff168015610ca05750610c9f858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483612352565b5b15610cb15767016345785d8a000091505b819250505092915050565b610cc7838383612369565b505050565b610cd4612298565b73ffffffffffffffffffffffffffffffffffffffff16610cf261170d565b73ffffffffffffffffffffffffffffffffffffffff1614610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f906147a6565b60405180910390fd5b73e9fa03ea36b5cc9db463cdb8e440178e7e869bc473ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610da2573d6000803e3d6000fd5b50565b600080600060086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900462ffffff1662ffffff1662ffffff1681525050905080600001519250612710816020015162ffffff1685610e519190614b22565b610e5b9190614af1565b9150509250929050565b6000610e7083611389565b8210610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea8906145a6565b60405180910390fd5b6000610ebb610bf8565b905060008060005b83811015611021576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fb557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561100d5786841415610ffe57819550505050505061105d565b838061100990614d61565b9450505b50808061101990614d61565b915050610ec3565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611054906148e6565b60405180910390fd5b92915050565b61107e83838360405180602001604052806000815250611a57565b505050565b6101f481565b600b60019054906101000a900460ff1681565b6110a4612298565b73ffffffffffffffffffffffffffffffffffffffff166110c261170d565b73ffffffffffffffffffffffffffffffffffffffff1614611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f906147a6565b60405180910390fd5b600b60029054906101000a900460ff1615611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f906145c6565b60405180910390fd5b8181600a91906111799291906138cb565b505050565b6000611188610bf8565b82106111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c090614686565b60405180910390fd5b819050919050565b73e9fa03ea36b5cc9db463cdb8e440178e7e869bc481565b60006111f482612922565b600001519050919050565b600b60009054906101000a900460ff1681565b61121a612298565b73ffffffffffffffffffffffffffffffffffffffff1661123861170d565b73ffffffffffffffffffffffffffffffffffffffff161461128e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611285906147a6565b60405180910390fd5b600b60029054906101000a900460ff16156112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590614946565b60405180910390fd5b6001600b60026101000a81548160ff021916908315150217905550565b600a805461130890614cfe565b80601f016020809104026020016040519081016040528092919081815260200182805461133490614cfe565b80156113815780601f1061135657610100808354040283529160200191611381565b820191906000526020600020905b81548152906001019060200180831161136457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190614746565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61147a612298565b73ffffffffffffffffffffffffffffffffffffffff1661149861170d565b73ffffffffffffffffffffffffffffffffffffffff16146114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e5906147a6565b60405180910390fd5b6114f86000612b25565b565b611502612298565b73ffffffffffffffffffffffffffffffffffffffff1661152061170d565b73ffffffffffffffffffffffffffffffffffffffff1614611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d906147a6565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b6115aa612298565b73ffffffffffffffffffffffffffffffffffffffff166115c861170d565b73ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611615906147a6565b60405180910390fd5b611a0a8161162a610bf8565b6116349190614a9b565b1115611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90614666565b60405180910390fd5b61167f8282612beb565b5050565b61168b612298565b73ffffffffffffffffffffffffffffffffffffffff166116a961170d565b73ffffffffffffffffffffffffffffffffffffffff16146116ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f6906147a6565b60405180910390fd5b6117098282612c09565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a0a81565b611745613951565b61174e82612922565b9050919050565b60606002805461176490614cfe565b80601f016020809104026020016040519081016040528092919081815260200182805461179090614cfe565b80156117dd5780601f106117b2576101008083540402835291602001916117dd565b820191906000526020600020905b8154815290600101906020018083116117c057829003601f168201915b5050505050905090565b600f5481565b6117f5612298565b73ffffffffffffffffffffffffffffffffffffffff1661181361170d565b73ffffffffffffffffffffffffffffffffffffffff1614611869576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611860906147a6565b60405180910390fd5b600b60029054906101000a900460ff16156118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090614946565b60405180910390fd5b80600f8190555050565b6118cb612298565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090614806565b60405180910390fd5b8060066000611946612298565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119f3612298565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a389190614569565b60405180910390a35050565b600b60029054906101000a900460ff1681565b611a62848484612369565b611a6e84848484612cf3565b611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490614866565b60405180910390fd5b50505050565b6060611abe8261228b565b611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af4906147e6565b60405180910390fd5b6000611b07612e8a565b90506000815111611b275760405180602001604052806000815250611b52565b80611b3184612f1c565b604051602001611b429291906144b5565b6040516020818303038152906040525b915050919050565b6702c68af0bb14000081565b60075481565b611b74612298565b73ffffffffffffffffffffffffffffffffffffffff16611b9261170d565b73ffffffffffffffffffffffffffffffffffffffff1614611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf906147a6565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000611c1f8261307d565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b906146e6565b60405180910390fd5b600b60009054906101000a900460ff16611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda90614766565b60405180910390fd5b60006702c68af0bb1400009050600033604051602001611d03919061446e565b604051602081830303815290604052805190602001209050600b60019054906101000a900460ff1615611eb057611d7e878780806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483612352565b611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db4906148c6565b60405180910390fd5b600f5483600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e0b9190614a9b565b1115611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4390614706565b60405180910390fd5b611e9a858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483612352565b15611eab5767016345785d8a000091505b611f3f565b600a83600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611efd9190614a9b565b1115611f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3590614606565b60405180910390fd5b5b8282611f4b9190614b22565b341015611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f84906147c6565b60405180910390fd5b611a0a83611f99610bf8565b611fa39190614a9b565b1115611fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdb90614666565b60405180910390fd5b82600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461202f9190614a9b565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061207c3384612beb565b50505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612121612298565b73ffffffffffffffffffffffffffffffffffffffff1661213f61170d565b73ffffffffffffffffffffffffffffffffffffffff1614612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c906147a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc90614626565b60405180910390fd5b61220e81612b25565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612284575061228382613166565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60008261235f85846132b0565b1490509392505050565b600061237482612922565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661239b612298565b73ffffffffffffffffffffffffffffffffffffffff1614806123f757506123c0612298565b73ffffffffffffffffffffffffffffffffffffffff166123df84610a5a565b73ffffffffffffffffffffffffffffffffffffffff16145b806124135750612412826000015161240d612298565b612085565b5b905080612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c90614826565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146124c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124be90614786565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252e906146a6565b60405180910390fd5b6125448585856001613363565b61255460008484600001516122a0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125c29190614b7c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166126669190614a55565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461276c9190614a9b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128b2576127e28161228b565b156128b1576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461291a8686866001613369565b505050505050565b61292a613951565b6129338261228b565b612972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296990614646565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106129d65760017f0000000000000000000000000000000000000000000000000000000000000000846129c99190614bb0565b6129d39190614a9b565b90505b60008390505b818110612ae4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ad057809350505050612b20565b508080612adc90614cd4565b9150506129dc565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1790614906565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c0582826040518060200160405280600081525061336f565b5050565b612710811115612c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c45906145e6565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548162ffffff021916908362ffffff1602179055509050505050565b6000612d148473ffffffffffffffffffffffffffffffffffffffff1661384e565b15612e7d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d3d612298565b8786866040518563ffffffff1660e01b8152600401612d5f94939291906144f4565b602060405180830381600087803b158015612d7957600080fd5b505af1925050508015612daa57506040513d601f19601f82011682018060405250810190612da79190613dff565b60015b612e2d573d8060008114612dda576040519150601f19603f3d011682016040523d82523d6000602084013e612ddf565b606091505b50600081511415612e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1c90614866565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e82565b600190505b949350505050565b6060600a8054612e9990614cfe565b80601f0160208091040260200160405190810160405280929190818152602001828054612ec590614cfe565b8015612f125780601f10612ee757610100808354040283529160200191612f12565b820191906000526020600020905b815481529060010190602001808311612ef557829003601f168201915b5050505050905090565b60606000821415612f64576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613078565b600082905060005b60008214612f96578080612f7f90614d61565b915050600a82612f8f9190614af1565b9150612f6c565b60008167ffffffffffffffff811115612fb257612fb1614ec5565b5b6040519080825280601f01601f191660200182016040528015612fe45781602001600182028036833780820191505090505b5090505b6000851461307157600182612ffd9190614bb0565b9150600a8561300c9190614dd8565b60306130189190614a9b565b60f81b81838151811061302e5761302d614e96565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561306a9190614af1565b9450612fe8565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e5906146c6565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061323157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061329957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806132a957506132a882613861565b5b9050919050565b60008082905060005b84518110156133585760008582815181106132d7576132d6614e96565b5b602002602001015190508083116133185782816040516020016132fb929190614489565b604051602081830303815290604052805190602001209250613344565b808360405160200161332b929190614489565b6040516020818303038152906040528051906020012092505b50808061335090614d61565b9150506132b9565b508091505092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156133e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133dc906148a6565b60405180910390fd5b6133ee8161228b565b1561342e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342590614886565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348890614966565b60405180910390fd5b61349e6000858386613363565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161359b9190614a55565b6fffffffffffffffffffffffffffffffff1681526020018583602001516135c29190614a55565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561383157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137d16000888488612cf3565b613810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380790614866565b60405180910390fd5b818061381b90614d61565b925050808061382990614d61565b915050613760565b50806000819055506138466000878588613369565b505050505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8280546138d790614cfe565b90600052602060002090601f0160209004810192826138f95760008555613940565b82601f1061391257803560ff1916838001178555613940565b82800160010185558215613940579182015b8281111561393f578235825591602001919060010190613924565b5b50905061394d919061398b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156139a457600081600090555060010161398c565b5090565b60006139bb6139b6846149e1565b6149bc565b9050828152602081018484840111156139d7576139d6614f03565b5b6139e2848285614c92565b509392505050565b6000813590506139f9816156f9565b92915050565b60008083601f840112613a1557613a14614ef9565b5b8235905067ffffffffffffffff811115613a3257613a31614ef4565b5b602083019150836020820283011115613a4e57613a4d614efe565b5b9250929050565b600081359050613a6481615710565b92915050565b600081359050613a7981615727565b92915050565b600081519050613a8e81615727565b92915050565b600082601f830112613aa957613aa8614ef9565b5b8135613ab98482602086016139a8565b91505092915050565b60008083601f840112613ad857613ad7614ef9565b5b8235905067ffffffffffffffff811115613af557613af4614ef4565b5b602083019150836001820283011115613b1157613b10614efe565b5b9250929050565b600081359050613b278161573e565b92915050565b600060208284031215613b4357613b42614f0d565b5b6000613b51848285016139ea565b91505092915050565b60008060408385031215613b7157613b70614f0d565b5b6000613b7f858286016139ea565b9250506020613b90858286016139ea565b9150509250929050565b600080600060608486031215613bb357613bb2614f0d565b5b6000613bc1868287016139ea565b9350506020613bd2868287016139ea565b9250506040613be386828701613b18565b9150509250925092565b60008060008060808587031215613c0757613c06614f0d565b5b6000613c15878288016139ea565b9450506020613c26878288016139ea565b9350506040613c3787828801613b18565b925050606085013567ffffffffffffffff811115613c5857613c57614f08565b5b613c6487828801613a94565b91505092959194509250565b60008060408385031215613c8757613c86614f0d565b5b6000613c95858286016139ea565b9250506020613ca685828601613a55565b9150509250929050565b60008060408385031215613cc757613cc6614f0d565b5b6000613cd5858286016139ea565b9250506020613ce685828601613b18565b9150509250929050565b60008060208385031215613d0757613d06614f0d565b5b600083013567ffffffffffffffff811115613d2557613d24614f08565b5b613d31858286016139ff565b92509250509250929050565b600080600080600060608688031215613d5957613d58614f0d565b5b600086013567ffffffffffffffff811115613d7757613d76614f08565b5b613d83888289016139ff565b9550955050602086013567ffffffffffffffff811115613da657613da5614f08565b5b613db2888289016139ff565b93509350506040613dc588828901613b18565b9150509295509295909350565b600060208284031215613de857613de7614f0d565b5b6000613df684828501613a6a565b91505092915050565b600060208284031215613e1557613e14614f0d565b5b6000613e2384828501613a7f565b91505092915050565b60008060208385031215613e4357613e42614f0d565b5b600083013567ffffffffffffffff811115613e6157613e60614f08565b5b613e6d85828601613ac2565b92509250509250929050565b600060208284031215613e8f57613e8e614f0d565b5b6000613e9d84828501613b18565b91505092915050565b60008060408385031215613ebd57613ebc614f0d565b5b6000613ecb85828601613b18565b9250506020613edc85828601613b18565b9150509250929050565b613eef81614be4565b82525050565b613efe81614be4565b82525050565b613f15613f1082614be4565b614daa565b82525050565b613f2481614bf6565b82525050565b613f3b613f3682614c02565b614dbc565b82525050565b6000613f4c82614a12565b613f568185614a28565b9350613f66818560208601614ca1565b613f6f81614f12565b840191505092915050565b6000613f8582614a1d565b613f8f8185614a39565b9350613f9f818560208601614ca1565b613fa881614f12565b840191505092915050565b6000613fbe82614a1d565b613fc88185614a4a565b9350613fd8818560208601614ca1565b80840191505092915050565b6000613ff1602283614a39565b9150613ffc82614f30565b604082019050919050565b6000614014601883614a39565b915061401f82614f7f565b602082019050919050565b6000614037601a83614a39565b915061404282614fa8565b602082019050919050565b600061405a601b83614a39565b915061406582614fd1565b602082019050919050565b600061407d602683614a39565b915061408882614ffa565b604082019050919050565b60006140a0602a83614a39565b91506140ab82615049565b604082019050919050565b60006140c3601383614a39565b91506140ce82615098565b602082019050919050565b60006140e6602383614a39565b91506140f1826150c1565b604082019050919050565b6000614109602583614a39565b915061411482615110565b604082019050919050565b600061412c603183614a39565b91506141378261515f565b604082019050919050565b600061414f601e83614a39565b915061415a826151ae565b602082019050919050565b6000614172602583614a39565b915061417d826151d7565b604082019050919050565b6000614195603983614a39565b91506141a082615226565b604082019050919050565b60006141b8602b83614a39565b91506141c382615275565b604082019050919050565b60006141db601683614a39565b91506141e6826152c4565b602082019050919050565b60006141fe602683614a39565b9150614209826152ed565b604082019050919050565b6000614221602083614a39565b915061422c8261533c565b602082019050919050565b6000614244600b83614a39565b915061424f82615365565b602082019050919050565b6000614267602f83614a39565b91506142728261538e565b604082019050919050565b600061428a601a83614a39565b9150614295826153dd565b602082019050919050565b60006142ad603283614a39565b91506142b882615406565b604082019050919050565b60006142d0602283614a39565b91506142db82615455565b604082019050919050565b60006142f3603383614a39565b91506142fe826154a4565b604082019050919050565b6000614316601d83614a39565b9150614321826154f3565b602082019050919050565b6000614339602183614a39565b91506143448261551c565b604082019050919050565b600061435c600e83614a39565b91506143678261556b565b602082019050919050565b600061437f602e83614a39565b915061438a82615594565b604082019050919050565b60006143a2602f83614a39565b91506143ad826155e3565b604082019050919050565b60006143c5602d83614a39565b91506143d082615632565b604082019050919050565b60006143e8602083614a39565b91506143f382615681565b602082019050919050565b600061440b602283614a39565b9150614416826156aa565b604082019050919050565b6040820160008201516144376000850182613ee6565b50602082015161444a602085018261445f565b50505050565b61445981614c74565b82525050565b61446881614c7e565b82525050565b600061447a8284613f04565b60148201915081905092915050565b60006144958285613f2a565b6020820191506144a58284613f2a565b6020820191508190509392505050565b60006144c18285613fb3565b91506144cd8284613fb3565b91508190509392505050565b60006020820190506144ee6000830184613ef5565b92915050565b60006080820190506145096000830187613ef5565b6145166020830186613ef5565b6145236040830185614450565b81810360608301526145358184613f41565b905095945050505050565b60006040820190506145556000830185613ef5565b6145626020830184614450565b9392505050565b600060208201905061457e6000830184613f1b565b92915050565b6000602082019050818103600083015261459e8184613f7a565b905092915050565b600060208201905081810360008301526145bf81613fe4565b9050919050565b600060208201905081810360008301526145df81614007565b9050919050565b600060208201905081810360008301526145ff8161402a565b9050919050565b6000602082019050818103600083015261461f8161404d565b9050919050565b6000602082019050818103600083015261463f81614070565b9050919050565b6000602082019050818103600083015261465f81614093565b9050919050565b6000602082019050818103600083015261467f816140b6565b9050919050565b6000602082019050818103600083015261469f816140d9565b9050919050565b600060208201905081810360008301526146bf816140fc565b9050919050565b600060208201905081810360008301526146df8161411f565b9050919050565b600060208201905081810360008301526146ff81614142565b9050919050565b6000602082019050818103600083015261471f81614165565b9050919050565b6000602082019050818103600083015261473f81614188565b9050919050565b6000602082019050818103600083015261475f816141ab565b9050919050565b6000602082019050818103600083015261477f816141ce565b9050919050565b6000602082019050818103600083015261479f816141f1565b9050919050565b600060208201905081810360008301526147bf81614214565b9050919050565b600060208201905081810360008301526147df81614237565b9050919050565b600060208201905081810360008301526147ff8161425a565b9050919050565b6000602082019050818103600083015261481f8161427d565b9050919050565b6000602082019050818103600083015261483f816142a0565b9050919050565b6000602082019050818103600083015261485f816142c3565b9050919050565b6000602082019050818103600083015261487f816142e6565b9050919050565b6000602082019050818103600083015261489f81614309565b9050919050565b600060208201905081810360008301526148bf8161432c565b9050919050565b600060208201905081810360008301526148df8161434f565b9050919050565b600060208201905081810360008301526148ff81614372565b9050919050565b6000602082019050818103600083015261491f81614395565b9050919050565b6000602082019050818103600083015261493f816143b8565b9050919050565b6000602082019050818103600083015261495f816143db565b9050919050565b6000602082019050818103600083015261497f816143fe565b9050919050565b600060408201905061499b6000830184614421565b92915050565b60006020820190506149b66000830184614450565b92915050565b60006149c66149d7565b90506149d28282614d30565b919050565b6000604051905090565b600067ffffffffffffffff8211156149fc576149fb614ec5565b5b614a0582614f12565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a6082614c38565b9150614a6b83614c38565b9250826fffffffffffffffffffffffffffffffff03821115614a9057614a8f614e09565b5b828201905092915050565b6000614aa682614c74565b9150614ab183614c74565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ae657614ae5614e09565b5b828201905092915050565b6000614afc82614c74565b9150614b0783614c74565b925082614b1757614b16614e38565b5b828204905092915050565b6000614b2d82614c74565b9150614b3883614c74565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b7157614b70614e09565b5b828202905092915050565b6000614b8782614c38565b9150614b9283614c38565b925082821015614ba557614ba4614e09565b5b828203905092915050565b6000614bbb82614c74565b9150614bc683614c74565b925082821015614bd957614bd8614e09565b5b828203905092915050565b6000614bef82614c54565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614cbf578082015181840152602081019050614ca4565b83811115614cce576000848401525b50505050565b6000614cdf82614c74565b91506000821415614cf357614cf2614e09565b5b600182039050919050565b60006002820490506001821680614d1657607f821691505b60208210811415614d2a57614d29614e67565b5b50919050565b614d3982614f12565b810181811067ffffffffffffffff82111715614d5857614d57614ec5565b5b80604052505050565b6000614d6c82614c74565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d9f57614d9e614e09565b5b600182019050919050565b6000614db582614dc6565b9050919050565b6000819050919050565b6000614dd182614f23565b9050919050565b6000614de382614c74565b9150614dee83614c74565b925082614dfe57614dfd614e38565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e747261637420686173206265656e207365616c65640000000000000000600082015250565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b7f596f752063616e2774206d696e74206d6f7265207468616e2031300000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f7265205241414e4654206c65667400000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f596f752063616e2774206d696e74206d6f7265207468616e207468617420666f60008201527f72206e6f77000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f5468652073616c65206973206e6f742061637469766500000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f57726f6e67207072696365000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f662e000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f436f6e747261637420686173206265656e20616c7265616479207365616c6564600082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61570281614be4565b811461570d57600080fd5b50565b61571981614bf6565b811461572457600080fd5b50565b61573081614c0c565b811461573b57600080fd5b50565b61574781614c74565b811461575257600080fd5b5056fea2646970667358221220e3aed1329364a3d6b23719b4df4729e19f85917c1d379060a1b1cc792546ba4264736f6c63430008070033697066733a2f2f516d4e55386d5031366671444b4d41545a3335677052376e61326e7566506778587459464a466479597a366e4b443f
Deployed Bytecode
0x6080604052600436106102515760003560e01c8063715018a611610139578063a22cb465116100b6578063d7224ba01161007a578063d7224ba0146108b5578063dbd30ae0146108e0578063dc33e681146108f7578063e77d053014610934578063e985e9c514610950578063f2fde38b1461098d57610251565b8063a22cb465146107d0578063b6501637146107f9578063b88d4fde14610824578063c87b56dd1461084d578063d2d8cb671461088a57610251565b80638ee2c4b8116100fd5780638ee2c4b8146106e95780639231ab2a1461071457806395d89b4114610751578063996517cf1461077c5780639e6a1d7d146107a757610251565b8063715018a61461063e5780637e15144b146106555780638ba4cc3c1461066c5780638c7ea24b146106955780638da5cb5b146106be57610251565b806342842e0e116101d257806350fe03f61161019657806350fe03f61461052c5780636352211e1461055757806368428a1b1461059457806368bd580e146105bf5780636c0360eb146105d657806370a082311461060157610251565b806342842e0e14610447578063463b08db146104705780634b4687b51461049b5780634c261247146104c65780634f6ccce7146104ef57610251565b80632399000411610219578063239900041461034f57806323b872dd1461038c57806324600fc3146103b55780632a55205a146103cc5780632f745c591461040a57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613dd2565b6109b6565b60405161028a9190614569565b60405180910390f35b34801561029f57600080fd5b506102a86109c8565b6040516102b59190614584565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613e79565b610a5a565b6040516102f291906144d9565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613cb0565b610adf565b005b34801561033057600080fd5b50610339610bf8565b60405161034691906149a1565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613cf0565b610c01565b60405161038391906149a1565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190613b9a565b610cbc565b005b3480156103c157600080fd5b506103ca610ccc565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190613ea6565b610da5565b604051610401929190614540565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190613cb0565b610e65565b60405161043e91906149a1565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190613b9a565b611063565b005b34801561047c57600080fd5b50610485611083565b60405161049291906149a1565b60405180910390f35b3480156104a757600080fd5b506104b0611089565b6040516104bd9190614569565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190613e2c565b61109c565b005b3480156104fb57600080fd5b5061051660048036038101906105119190613e79565b61117e565b60405161052391906149a1565b60405180910390f35b34801561053857600080fd5b506105416111d1565b60405161054e91906144d9565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190613e79565b6111e9565b60405161058b91906144d9565b60405180910390f35b3480156105a057600080fd5b506105a96111ff565b6040516105b69190614569565b60405180910390f35b3480156105cb57600080fd5b506105d4611212565b005b3480156105e257600080fd5b506105eb6112fb565b6040516105f89190614584565b60405180910390f35b34801561060d57600080fd5b5061062860048036038101906106239190613b2d565b611389565b60405161063591906149a1565b60405180910390f35b34801561064a57600080fd5b50610653611472565b005b34801561066157600080fd5b5061066a6114fa565b005b34801561067857600080fd5b50610693600480360381019061068e9190613cb0565b6115a2565b005b3480156106a157600080fd5b506106bc60048036038101906106b79190613cb0565b611683565b005b3480156106ca57600080fd5b506106d361170d565b6040516106e091906144d9565b60405180910390f35b3480156106f557600080fd5b506106fe611737565b60405161070b91906149a1565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190613e79565b61173d565b6040516107489190614986565b60405180910390f35b34801561075d57600080fd5b50610766611755565b6040516107739190614584565b60405180910390f35b34801561078857600080fd5b506107916117e7565b60405161079e91906149a1565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c99190613e79565b6117ed565b005b3480156107dc57600080fd5b506107f760048036038101906107f29190613c70565b6118c3565b005b34801561080557600080fd5b5061080e611a44565b60405161081b9190614569565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190613bed565b611a57565b005b34801561085957600080fd5b50610874600480360381019061086f9190613e79565b611ab3565b6040516108819190614584565b60405180910390f35b34801561089657600080fd5b5061089f611b5a565b6040516108ac91906149a1565b60405180910390f35b3480156108c157600080fd5b506108ca611b66565b6040516108d791906149a1565b60405180910390f35b3480156108ec57600080fd5b506108f5611b6c565b005b34801561090357600080fd5b5061091e60048036038101906109199190613b2d565b611c14565b60405161092b91906149a1565b60405180910390f35b61094e60048036038101906109499190613d3d565b611c26565b005b34801561095c57600080fd5b5061097760048036038101906109729190613b5a565b612085565b6040516109849190614569565b60405180910390f35b34801561099957600080fd5b506109b460048036038101906109af9190613b2d565b612119565b005b60006109c182612211565b9050919050565b6060600180546109d790614cfe565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0390614cfe565b8015610a505780601f10610a2557610100808354040283529160200191610a50565b820191906000526020600020905b815481529060010190602001808311610a3357829003601f168201915b5050505050905090565b6000610a658261228b565b610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b90614926565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aea826111e9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5290614846565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7a612298565b73ffffffffffffffffffffffffffffffffffffffff161480610ba95750610ba881610ba3612298565b612085565b5b610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90614726565b60405180910390fd5b610bf38383836122a0565b505050565b60008054905090565b6000806702c68af0bb1400009050600033604051602001610c22919061446e565b604051602081830303815290604052805190602001209050600b60019054906101000a900460ff168015610ca05750610c9f858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483612352565b5b15610cb15767016345785d8a000091505b819250505092915050565b610cc7838383612369565b505050565b610cd4612298565b73ffffffffffffffffffffffffffffffffffffffff16610cf261170d565b73ffffffffffffffffffffffffffffffffffffffff1614610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f906147a6565b60405180910390fd5b73e9fa03ea36b5cc9db463cdb8e440178e7e869bc473ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610da2573d6000803e3d6000fd5b50565b600080600060086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900462ffffff1662ffffff1662ffffff1681525050905080600001519250612710816020015162ffffff1685610e519190614b22565b610e5b9190614af1565b9150509250929050565b6000610e7083611389565b8210610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea8906145a6565b60405180910390fd5b6000610ebb610bf8565b905060008060005b83811015611021576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fb557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561100d5786841415610ffe57819550505050505061105d565b838061100990614d61565b9450505b50808061101990614d61565b915050610ec3565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611054906148e6565b60405180910390fd5b92915050565b61107e83838360405180602001604052806000815250611a57565b505050565b6101f481565b600b60019054906101000a900460ff1681565b6110a4612298565b73ffffffffffffffffffffffffffffffffffffffff166110c261170d565b73ffffffffffffffffffffffffffffffffffffffff1614611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f906147a6565b60405180910390fd5b600b60029054906101000a900460ff1615611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f906145c6565b60405180910390fd5b8181600a91906111799291906138cb565b505050565b6000611188610bf8565b82106111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c090614686565b60405180910390fd5b819050919050565b73e9fa03ea36b5cc9db463cdb8e440178e7e869bc481565b60006111f482612922565b600001519050919050565b600b60009054906101000a900460ff1681565b61121a612298565b73ffffffffffffffffffffffffffffffffffffffff1661123861170d565b73ffffffffffffffffffffffffffffffffffffffff161461128e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611285906147a6565b60405180910390fd5b600b60029054906101000a900460ff16156112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590614946565b60405180910390fd5b6001600b60026101000a81548160ff021916908315150217905550565b600a805461130890614cfe565b80601f016020809104026020016040519081016040528092919081815260200182805461133490614cfe565b80156113815780601f1061135657610100808354040283529160200191611381565b820191906000526020600020905b81548152906001019060200180831161136457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190614746565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61147a612298565b73ffffffffffffffffffffffffffffffffffffffff1661149861170d565b73ffffffffffffffffffffffffffffffffffffffff16146114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e5906147a6565b60405180910390fd5b6114f86000612b25565b565b611502612298565b73ffffffffffffffffffffffffffffffffffffffff1661152061170d565b73ffffffffffffffffffffffffffffffffffffffff1614611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d906147a6565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b6115aa612298565b73ffffffffffffffffffffffffffffffffffffffff166115c861170d565b73ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611615906147a6565b60405180910390fd5b611a0a8161162a610bf8565b6116349190614a9b565b1115611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90614666565b60405180910390fd5b61167f8282612beb565b5050565b61168b612298565b73ffffffffffffffffffffffffffffffffffffffff166116a961170d565b73ffffffffffffffffffffffffffffffffffffffff16146116ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f6906147a6565b60405180910390fd5b6117098282612c09565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a0a81565b611745613951565b61174e82612922565b9050919050565b60606002805461176490614cfe565b80601f016020809104026020016040519081016040528092919081815260200182805461179090614cfe565b80156117dd5780601f106117b2576101008083540402835291602001916117dd565b820191906000526020600020905b8154815290600101906020018083116117c057829003601f168201915b5050505050905090565b600f5481565b6117f5612298565b73ffffffffffffffffffffffffffffffffffffffff1661181361170d565b73ffffffffffffffffffffffffffffffffffffffff1614611869576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611860906147a6565b60405180910390fd5b600b60029054906101000a900460ff16156118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090614946565b60405180910390fd5b80600f8190555050565b6118cb612298565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090614806565b60405180910390fd5b8060066000611946612298565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119f3612298565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a389190614569565b60405180910390a35050565b600b60029054906101000a900460ff1681565b611a62848484612369565b611a6e84848484612cf3565b611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490614866565b60405180910390fd5b50505050565b6060611abe8261228b565b611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af4906147e6565b60405180910390fd5b6000611b07612e8a565b90506000815111611b275760405180602001604052806000815250611b52565b80611b3184612f1c565b604051602001611b429291906144b5565b6040516020818303038152906040525b915050919050565b6702c68af0bb14000081565b60075481565b611b74612298565b73ffffffffffffffffffffffffffffffffffffffff16611b9261170d565b73ffffffffffffffffffffffffffffffffffffffff1614611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf906147a6565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000611c1f8261307d565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b906146e6565b60405180910390fd5b600b60009054906101000a900460ff16611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda90614766565b60405180910390fd5b60006702c68af0bb1400009050600033604051602001611d03919061446e565b604051602081830303815290604052805190602001209050600b60019054906101000a900460ff1615611eb057611d7e878780806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483612352565b611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db4906148c6565b60405180910390fd5b600f5483600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e0b9190614a9b565b1115611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4390614706565b60405180910390fd5b611e9a858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483612352565b15611eab5767016345785d8a000091505b611f3f565b600a83600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611efd9190614a9b565b1115611f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3590614606565b60405180910390fd5b5b8282611f4b9190614b22565b341015611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f84906147c6565b60405180910390fd5b611a0a83611f99610bf8565b611fa39190614a9b565b1115611fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdb90614666565b60405180910390fd5b82600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461202f9190614a9b565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061207c3384612beb565b50505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612121612298565b73ffffffffffffffffffffffffffffffffffffffff1661213f61170d565b73ffffffffffffffffffffffffffffffffffffffff1614612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c906147a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc90614626565b60405180910390fd5b61220e81612b25565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612284575061228382613166565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60008261235f85846132b0565b1490509392505050565b600061237482612922565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661239b612298565b73ffffffffffffffffffffffffffffffffffffffff1614806123f757506123c0612298565b73ffffffffffffffffffffffffffffffffffffffff166123df84610a5a565b73ffffffffffffffffffffffffffffffffffffffff16145b806124135750612412826000015161240d612298565b612085565b5b905080612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c90614826565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146124c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124be90614786565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252e906146a6565b60405180910390fd5b6125448585856001613363565b61255460008484600001516122a0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125c29190614b7c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166126669190614a55565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461276c9190614a9b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128b2576127e28161228b565b156128b1576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461291a8686866001613369565b505050505050565b61292a613951565b6129338261228b565b612972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296990614646565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106129d65760017f000000000000000000000000000000000000000000000000000000000000000a846129c99190614bb0565b6129d39190614a9b565b90505b60008390505b818110612ae4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ad057809350505050612b20565b508080612adc90614cd4565b9150506129dc565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1790614906565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c0582826040518060200160405280600081525061336f565b5050565b612710811115612c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c45906145e6565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff1681526020018262ffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548162ffffff021916908362ffffff1602179055509050505050565b6000612d148473ffffffffffffffffffffffffffffffffffffffff1661384e565b15612e7d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d3d612298565b8786866040518563ffffffff1660e01b8152600401612d5f94939291906144f4565b602060405180830381600087803b158015612d7957600080fd5b505af1925050508015612daa57506040513d601f19601f82011682018060405250810190612da79190613dff565b60015b612e2d573d8060008114612dda576040519150601f19603f3d011682016040523d82523d6000602084013e612ddf565b606091505b50600081511415612e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1c90614866565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e82565b600190505b949350505050565b6060600a8054612e9990614cfe565b80601f0160208091040260200160405190810160405280929190818152602001828054612ec590614cfe565b8015612f125780601f10612ee757610100808354040283529160200191612f12565b820191906000526020600020905b815481529060010190602001808311612ef557829003601f168201915b5050505050905090565b60606000821415612f64576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613078565b600082905060005b60008214612f96578080612f7f90614d61565b915050600a82612f8f9190614af1565b9150612f6c565b60008167ffffffffffffffff811115612fb257612fb1614ec5565b5b6040519080825280601f01601f191660200182016040528015612fe45781602001600182028036833780820191505090505b5090505b6000851461307157600182612ffd9190614bb0565b9150600a8561300c9190614dd8565b60306130189190614a9b565b60f81b81838151811061302e5761302d614e96565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561306a9190614af1565b9450612fe8565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e5906146c6565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061323157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061329957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806132a957506132a882613861565b5b9050919050565b60008082905060005b84518110156133585760008582815181106132d7576132d6614e96565b5b602002602001015190508083116133185782816040516020016132fb929190614489565b604051602081830303815290604052805190602001209250613344565b808360405160200161332b929190614489565b6040516020818303038152906040528051906020012092505b50808061335090614d61565b9150506132b9565b508091505092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156133e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133dc906148a6565b60405180910390fd5b6133ee8161228b565b1561342e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342590614886565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115613491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348890614966565b60405180910390fd5b61349e6000858386613363565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161359b9190614a55565b6fffffffffffffffffffffffffffffffff1681526020018583602001516135c29190614a55565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561383157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137d16000888488612cf3565b613810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380790614866565b60405180910390fd5b818061381b90614d61565b925050808061382990614d61565b915050613760565b50806000819055506138466000878588613369565b505050505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8280546138d790614cfe565b90600052602060002090601f0160209004810192826138f95760008555613940565b82601f1061391257803560ff1916838001178555613940565b82800160010185558215613940579182015b8281111561393f578235825591602001919060010190613924565b5b50905061394d919061398b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156139a457600081600090555060010161398c565b5090565b60006139bb6139b6846149e1565b6149bc565b9050828152602081018484840111156139d7576139d6614f03565b5b6139e2848285614c92565b509392505050565b6000813590506139f9816156f9565b92915050565b60008083601f840112613a1557613a14614ef9565b5b8235905067ffffffffffffffff811115613a3257613a31614ef4565b5b602083019150836020820283011115613a4e57613a4d614efe565b5b9250929050565b600081359050613a6481615710565b92915050565b600081359050613a7981615727565b92915050565b600081519050613a8e81615727565b92915050565b600082601f830112613aa957613aa8614ef9565b5b8135613ab98482602086016139a8565b91505092915050565b60008083601f840112613ad857613ad7614ef9565b5b8235905067ffffffffffffffff811115613af557613af4614ef4565b5b602083019150836001820283011115613b1157613b10614efe565b5b9250929050565b600081359050613b278161573e565b92915050565b600060208284031215613b4357613b42614f0d565b5b6000613b51848285016139ea565b91505092915050565b60008060408385031215613b7157613b70614f0d565b5b6000613b7f858286016139ea565b9250506020613b90858286016139ea565b9150509250929050565b600080600060608486031215613bb357613bb2614f0d565b5b6000613bc1868287016139ea565b9350506020613bd2868287016139ea565b9250506040613be386828701613b18565b9150509250925092565b60008060008060808587031215613c0757613c06614f0d565b5b6000613c15878288016139ea565b9450506020613c26878288016139ea565b9350506040613c3787828801613b18565b925050606085013567ffffffffffffffff811115613c5857613c57614f08565b5b613c6487828801613a94565b91505092959194509250565b60008060408385031215613c8757613c86614f0d565b5b6000613c95858286016139ea565b9250506020613ca685828601613a55565b9150509250929050565b60008060408385031215613cc757613cc6614f0d565b5b6000613cd5858286016139ea565b9250506020613ce685828601613b18565b9150509250929050565b60008060208385031215613d0757613d06614f0d565b5b600083013567ffffffffffffffff811115613d2557613d24614f08565b5b613d31858286016139ff565b92509250509250929050565b600080600080600060608688031215613d5957613d58614f0d565b5b600086013567ffffffffffffffff811115613d7757613d76614f08565b5b613d83888289016139ff565b9550955050602086013567ffffffffffffffff811115613da657613da5614f08565b5b613db2888289016139ff565b93509350506040613dc588828901613b18565b9150509295509295909350565b600060208284031215613de857613de7614f0d565b5b6000613df684828501613a6a565b91505092915050565b600060208284031215613e1557613e14614f0d565b5b6000613e2384828501613a7f565b91505092915050565b60008060208385031215613e4357613e42614f0d565b5b600083013567ffffffffffffffff811115613e6157613e60614f08565b5b613e6d85828601613ac2565b92509250509250929050565b600060208284031215613e8f57613e8e614f0d565b5b6000613e9d84828501613b18565b91505092915050565b60008060408385031215613ebd57613ebc614f0d565b5b6000613ecb85828601613b18565b9250506020613edc85828601613b18565b9150509250929050565b613eef81614be4565b82525050565b613efe81614be4565b82525050565b613f15613f1082614be4565b614daa565b82525050565b613f2481614bf6565b82525050565b613f3b613f3682614c02565b614dbc565b82525050565b6000613f4c82614a12565b613f568185614a28565b9350613f66818560208601614ca1565b613f6f81614f12565b840191505092915050565b6000613f8582614a1d565b613f8f8185614a39565b9350613f9f818560208601614ca1565b613fa881614f12565b840191505092915050565b6000613fbe82614a1d565b613fc88185614a4a565b9350613fd8818560208601614ca1565b80840191505092915050565b6000613ff1602283614a39565b9150613ffc82614f30565b604082019050919050565b6000614014601883614a39565b915061401f82614f7f565b602082019050919050565b6000614037601a83614a39565b915061404282614fa8565b602082019050919050565b600061405a601b83614a39565b915061406582614fd1565b602082019050919050565b600061407d602683614a39565b915061408882614ffa565b604082019050919050565b60006140a0602a83614a39565b91506140ab82615049565b604082019050919050565b60006140c3601383614a39565b91506140ce82615098565b602082019050919050565b60006140e6602383614a39565b91506140f1826150c1565b604082019050919050565b6000614109602583614a39565b915061411482615110565b604082019050919050565b600061412c603183614a39565b91506141378261515f565b604082019050919050565b600061414f601e83614a39565b915061415a826151ae565b602082019050919050565b6000614172602583614a39565b915061417d826151d7565b604082019050919050565b6000614195603983614a39565b91506141a082615226565b604082019050919050565b60006141b8602b83614a39565b91506141c382615275565b604082019050919050565b60006141db601683614a39565b91506141e6826152c4565b602082019050919050565b60006141fe602683614a39565b9150614209826152ed565b604082019050919050565b6000614221602083614a39565b915061422c8261533c565b602082019050919050565b6000614244600b83614a39565b915061424f82615365565b602082019050919050565b6000614267602f83614a39565b91506142728261538e565b604082019050919050565b600061428a601a83614a39565b9150614295826153dd565b602082019050919050565b60006142ad603283614a39565b91506142b882615406565b604082019050919050565b60006142d0602283614a39565b91506142db82615455565b604082019050919050565b60006142f3603383614a39565b91506142fe826154a4565b604082019050919050565b6000614316601d83614a39565b9150614321826154f3565b602082019050919050565b6000614339602183614a39565b91506143448261551c565b604082019050919050565b600061435c600e83614a39565b91506143678261556b565b602082019050919050565b600061437f602e83614a39565b915061438a82615594565b604082019050919050565b60006143a2602f83614a39565b91506143ad826155e3565b604082019050919050565b60006143c5602d83614a39565b91506143d082615632565b604082019050919050565b60006143e8602083614a39565b91506143f382615681565b602082019050919050565b600061440b602283614a39565b9150614416826156aa565b604082019050919050565b6040820160008201516144376000850182613ee6565b50602082015161444a602085018261445f565b50505050565b61445981614c74565b82525050565b61446881614c7e565b82525050565b600061447a8284613f04565b60148201915081905092915050565b60006144958285613f2a565b6020820191506144a58284613f2a565b6020820191508190509392505050565b60006144c18285613fb3565b91506144cd8284613fb3565b91508190509392505050565b60006020820190506144ee6000830184613ef5565b92915050565b60006080820190506145096000830187613ef5565b6145166020830186613ef5565b6145236040830185614450565b81810360608301526145358184613f41565b905095945050505050565b60006040820190506145556000830185613ef5565b6145626020830184614450565b9392505050565b600060208201905061457e6000830184613f1b565b92915050565b6000602082019050818103600083015261459e8184613f7a565b905092915050565b600060208201905081810360008301526145bf81613fe4565b9050919050565b600060208201905081810360008301526145df81614007565b9050919050565b600060208201905081810360008301526145ff8161402a565b9050919050565b6000602082019050818103600083015261461f8161404d565b9050919050565b6000602082019050818103600083015261463f81614070565b9050919050565b6000602082019050818103600083015261465f81614093565b9050919050565b6000602082019050818103600083015261467f816140b6565b9050919050565b6000602082019050818103600083015261469f816140d9565b9050919050565b600060208201905081810360008301526146bf816140fc565b9050919050565b600060208201905081810360008301526146df8161411f565b9050919050565b600060208201905081810360008301526146ff81614142565b9050919050565b6000602082019050818103600083015261471f81614165565b9050919050565b6000602082019050818103600083015261473f81614188565b9050919050565b6000602082019050818103600083015261475f816141ab565b9050919050565b6000602082019050818103600083015261477f816141ce565b9050919050565b6000602082019050818103600083015261479f816141f1565b9050919050565b600060208201905081810360008301526147bf81614214565b9050919050565b600060208201905081810360008301526147df81614237565b9050919050565b600060208201905081810360008301526147ff8161425a565b9050919050565b6000602082019050818103600083015261481f8161427d565b9050919050565b6000602082019050818103600083015261483f816142a0565b9050919050565b6000602082019050818103600083015261485f816142c3565b9050919050565b6000602082019050818103600083015261487f816142e6565b9050919050565b6000602082019050818103600083015261489f81614309565b9050919050565b600060208201905081810360008301526148bf8161432c565b9050919050565b600060208201905081810360008301526148df8161434f565b9050919050565b600060208201905081810360008301526148ff81614372565b9050919050565b6000602082019050818103600083015261491f81614395565b9050919050565b6000602082019050818103600083015261493f816143b8565b9050919050565b6000602082019050818103600083015261495f816143db565b9050919050565b6000602082019050818103600083015261497f816143fe565b9050919050565b600060408201905061499b6000830184614421565b92915050565b60006020820190506149b66000830184614450565b92915050565b60006149c66149d7565b90506149d28282614d30565b919050565b6000604051905090565b600067ffffffffffffffff8211156149fc576149fb614ec5565b5b614a0582614f12565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a6082614c38565b9150614a6b83614c38565b9250826fffffffffffffffffffffffffffffffff03821115614a9057614a8f614e09565b5b828201905092915050565b6000614aa682614c74565b9150614ab183614c74565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ae657614ae5614e09565b5b828201905092915050565b6000614afc82614c74565b9150614b0783614c74565b925082614b1757614b16614e38565b5b828204905092915050565b6000614b2d82614c74565b9150614b3883614c74565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b7157614b70614e09565b5b828202905092915050565b6000614b8782614c38565b9150614b9283614c38565b925082821015614ba557614ba4614e09565b5b828203905092915050565b6000614bbb82614c74565b9150614bc683614c74565b925082821015614bd957614bd8614e09565b5b828203905092915050565b6000614bef82614c54565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614cbf578082015181840152602081019050614ca4565b83811115614cce576000848401525b50505050565b6000614cdf82614c74565b91506000821415614cf357614cf2614e09565b5b600182039050919050565b60006002820490506001821680614d1657607f821691505b60208210811415614d2a57614d29614e67565b5b50919050565b614d3982614f12565b810181811067ffffffffffffffff82111715614d5857614d57614ec5565b5b80604052505050565b6000614d6c82614c74565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d9f57614d9e614e09565b5b600182019050919050565b6000614db582614dc6565b9050919050565b6000819050919050565b6000614dd182614f23565b9050919050565b6000614de382614c74565b9150614dee83614c74565b925082614dfe57614dfd614e38565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e747261637420686173206265656e207365616c65640000000000000000600082015250565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b7f596f752063616e2774206d696e74206d6f7265207468616e2031300000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f7265205241414e4654206c65667400000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f596f752063616e2774206d696e74206d6f7265207468616e207468617420666f60008201527f72206e6f77000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f5468652073616c65206973206e6f742061637469766500000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f57726f6e67207072696365000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f662e000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f436f6e747261637420686173206265656e20616c7265616479207365616c6564600082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61570281614be4565b811461570d57600080fd5b50565b61571981614bf6565b811461572457600080fd5b50565b61573081614c0c565b811461573b57600080fd5b50565b61574781614c74565b811461575257600080fd5b5056fea2646970667358221220e3aed1329364a3d6b23719b4df4729e19f85917c1d379060a1b1cc792546ba4264736f6c63430008070033
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.