Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
627 KLIST
Holders
603
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 KLISTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KLIST
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // https://kanon.art - K21 // https://daemonica.io // // // $@@@@@@@@@@@$$$ // $$@@@@@@$$$$$$$$$$$$$$## // $$$$$$$$$$$$$$$$$#########*** // $$$$$$$$$$$$$$$#######**!!!!!! // ##$$$$$$$$$$$$#######****!!!!========= // ##$$$$$$$$$#$#######*#***!!!=!===;;;;; // *#################*#***!*!!======;;;::: // ################********!!!!====;;;:::~~~~~ // **###########******!!!!!!==;;;;::~~~--,,,-~ // ***########*#*******!*!!!!====;;;::::~~-,,......,- // ******#**********!*!!!!=!===;;::~~~-,........ // ***************!*!!!!====;;:::~~-,,.......... // !************!!!!!!===;;::~~--,............ // !!!*****!!*!!!!!===;;:::~~--,,.......... // =!!!!!!!!!=!==;;;::~~-,,........... // =!!!!!!!!!====;;;;:::~~--,........ // ==!!!!!!=!==;=;;:::~~--,...:~~--,,,.. // ===!!!!!=====;;;;;:::~~~--,,..#*=;;:::~--,. // ;=============;;;;;;::::~~~-,,...$$###==;;:~--. // :;;==========;;;;;;::::~~~--,,....@@$$##*!=;:~-. // :;;;;;===;;;;;;;::::~~~--,,...$$$$#*!!=;~- // :;;;;;;;;;;:::::~~~~---,,...!*##**!==;~, // :::;:;;;;:::~~~~---,,,...~;=!!!!=;;:~. // ~:::::::::::::~~~~~---,,,....-:;;=;;;~, // ~~::::::::~~~~~~~-----,,,......,~~::::~-. // -~~~~~~~~~~~~~-----------,,,.......,-~~~~~,. // ---~~~-----,,,,,........,---,. // ,,--------,,,,,,......... // .,,,,,,,,,,,,...... // ............... // ......... pragma solidity ^0.8.0; import "openzeppelin-solidity/contracts/security/ReentrancyGuard.sol"; import "openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "openzeppelin-solidity/contracts/access/Ownable.sol"; interface IKLISTvN { function isValid(address _hodler) external view returns (bool); function getTier(address _member) external view returns (uint256); function getAttributes(address _member) external view returns (string memory); function getURI(address _member, uint8 _status) external view returns (string memory); function claim(address _member) external; } /** * @title KLIST contract * @author @0xAnimist * @notice Versionable by owners and claimable by K21 token holders with a minimum balance */ contract KLIST is ERC721Enumerable, ReentrancyGuard, Ownable { uint256 public version; IKLISTvN[] private _klistVn;//key == version uint256[] public maxTokenIdPerVersion;//key == version address public klistVnContract; /** @notice Returns the tier of the KLIST token owned by _member * @param _member Ethereum address of the _member * @return The tier */ function getTier(address _member) external view returns (uint256) { return _klistVn[version].getTier(_member); } /** @notice Returns the attributes of the KLIST token owned by _member * @param _member Ethereum address of the _member * @return Attributes for rendering with tokenURI */ function getAttributes(address _member) external view returns (string memory) { return _klistVn[version].getAttributes(_member); } /** @notice Returns true if the KLIST membership of _tokenId is currently valid * @param _tokenId The KLIST token to query * @return True if valid, false if not */ function isValid(uint256 _tokenId) external view returns (bool) { if(!_exists(_tokenId)){ return false; }else{ if(version == 0){ return _klistVn[version].isValid(msg.sender); }else{ uint256 v = getVersionByTokenId(_tokenId); if(v == version){//current version return _klistVn[version].isValid(msg.sender); }else{//not current version return false; } } } } /** @notice Updates the KLIST token version * @param _newKLISTvNContract The new KLISTvN version contract address */ function incrementVersion(address _newKLISTvNContract) external onlyOwner() { incrementVersion(_newKLISTvNContract, klistVnContract); } /** @notice Updates the KLIST token version and replaces the previous version * @param _newKLISTvNContract The new KLISTvN version contract address * @param _oldKLISTvNContract The new KLISTvN-1 version contract address */ function incrementVersion(address _newKLISTvNContract, address _oldKLISTvNContract) public onlyOwner() { maxTokenIdPerVersion[version] = totalSupply()-1; _klistVn[version] = IKLISTvN(_oldKLISTvNContract);//allows for updating the art of a now invalid KLIST token version++; _klistVn[version] = IKLISTvN(_newKLISTvNContract); klistVnContract = _newKLISTvNContract; } /** @notice Allows a valid Ethereum address to claim only one KLIST membership token */ function claim() external nonReentrant {//returns (uint256){ require(_klistVn[version].isValid(msg.sender), "not valid"); require(balanceOf(msg.sender) == 0, "already claimed"); _safeMint(msg.sender, totalSupply()+1);//mint the next token _klistVn[version].claim(msg.sender); } /** @notice Allows KLIST contract owner to claim KLIST membership tokens on behalf * of members */ function proxyClaim(address[] memory _members) external nonReentrant onlyOwner {//returns (uint256){ for(uint256 i = 0; i < _members.length; i++){ _safeMint(_members[i], totalSupply()+1);//mint the next token _klistVn[version].claim(_members[i]); } } /** @notice Returns the KLISTvN version number of a given _tokenId * @param _tokenId The tokenId to query * @return The KLISTvN version of _tokenId */ function getVersionByTokenId(uint256 _tokenId) internal view returns (uint256) { uint256 v = 0; if(version > 0){ while(_tokenId > maxTokenIdPerVersion[v]){ v++; } } return v; } /** @notice Returns the current status of a KLIST membership token * @param _tokenId The tokenId to query * @param _v The KLISTvN version of the _tokenId * @return 1 if not a member, 2 if expired, 3 if duplicate, 4 if invalid, 0 otherwise */ function getStatus(uint256 _tokenId, uint256 _v) public view returns (address, uint8) { //"not a member" if(!_exists(_tokenId)){ return (address(0), 1); } //"expired" address member = ownerOf(_tokenId); if(_v != version){ return (member, 2); } //"duplicate" if(_tokenId != tokenOfOwnerByIndex(member, 0)){ return (member, 3); } //"invalid" if(!_klistVn[version].isValid(member)){ return (member, 4); } return (member, 0); } /** @notice Returns a base64-encoded json representation of _tokenId * @param _tokenId The tokenId to query * @return base64-encoded json representation of _tokenId */ function tokenURI(uint256 _tokenId) override public view returns (string memory) { uint256 v = getVersionByTokenId(_tokenId); address member; uint8 status; (member, status) = getStatus(_tokenId, v); return _klistVn[v].getURI(member, status); } /** @notice KLIST Constructor * @param _klistV0Contract Address of the first KLISTvN contract, version 0 */ constructor(address _klistV0Contract) ERC721("KLIST", "KLIST") Ownable() { klistVnContract = _klistV0Contract; _klistVn.push(IKLISTvN(_klistV0Contract)); version = 0; } }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT 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 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 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 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 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 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 pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT 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 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 "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: 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 virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "berlin", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_klistV0Contract","type":"address"}],"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":[{"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":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_member","type":"address"}],"name":"getAttributes","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_v","type":"uint256"}],"name":"getStatus","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_member","type":"address"}],"name":"getTier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newKLISTvNContract","type":"address"}],"name":"incrementVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newKLISTvNContract","type":"address"},{"internalType":"address","name":"_oldKLISTvNContract","type":"address"}],"name":"incrementVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"klistVnContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxTokenIdPerVersion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_members","type":"address[]"}],"name":"proxyClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"version","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200470038038062004700833981810160405281019062000037919062000347565b6040518060400160405280600581526020017f4b4c4953540000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4b4c4953540000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb92919062000280565b508060019080519060200190620000d492919062000280565b5050506001600a81905550620000ff620000f3620001b260201b60201c565b620001ba60201b60201c565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600d819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600c819055505062000431565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028e90620003ad565b90600052602060002090601f016020900481019282620002b25760008555620002fe565b82601f10620002cd57805160ff1916838001178555620002fe565b82800160010185558215620002fe579182015b82811115620002fd578251825591602001919060010190620002e0565b5b5090506200030d919062000311565b5090565b5b808211156200032c57600081600090555060010162000312565b5090565b600081519050620003418162000417565b92915050565b60006020828403121562000360576200035f62000412565b5b6000620003708482850162000330565b91505092915050565b600062000386826200038d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620003c657607f821691505b60208210811415620003dd57620003dc620003e3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620004228162000379565b81146200042e57600080fd5b50565b6142bf80620004416000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063b45aae52116100a2578063c87b56dd11610071578063c87b56dd14610568578063e985e9c514610598578063f2fde38b146105c8578063f577a500146105e4576101da565b8063b45aae52146104ce578063b88d4fde146104fe578063b9daa6d51461051a578063c10fa14c14610538576101da565b8063920c4ccb116100de578063920c4ccb1461044757806395d89b4114610463578063a22cb46514610481578063a745da651461049d576101da565b8063715018a6146104035780637f9076411461040d5780638da5cb5b14610429576101da565b806342842e0e1161017c5780634f6ccce71161014b5780634f6ccce71461035557806354fd4d50146103855780636352211e146103a357806370a08231146103d3576101da565b806342842e0e146102e3578063446d5aa4146102ff57806344ff98da1461032f5780634e71d92d1461034b576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806318160ddd1461027957806323b872dd146102975780632f745c59146102b3576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f49190613103565b610614565b604051610206919061363a565b60405180910390f35b61021761068e565b6040516102249190613655565b60405180910390f35b610247600480360381019061024291906131a6565b610720565b60405161025491906135aa565b60405180910390f35b6102776004803603810190610272919061304d565b6107a5565b005b6102816108bd565b60405161028e91906138f7565b60405180910390f35b6102b160048036038101906102ac9190612f37565b6108ca565b005b6102cd60048036038101906102c8919061304d565b61092a565b6040516102da91906138f7565b60405180910390f35b6102fd60048036038101906102f89190612f37565b6109cf565b005b61031960048036038101906103149190612eca565b6109ef565b6040516103269190613655565b60405180910390f35b61034960048036038101906103449190612eca565b610ac6565b005b610353610b71565b005b61036f600480360381019061036a91906131a6565b610de4565b60405161037c91906138f7565b60405180910390f35b61038d610e55565b60405161039a91906138f7565b60405180910390f35b6103bd60048036038101906103b891906131a6565b610e5b565b6040516103ca91906135aa565b60405180910390f35b6103ed60048036038101906103e89190612eca565b610f0d565b6040516103fa91906138f7565b60405180910390f35b61040b610fc5565b005b61042760048036038101906104229190612ef7565b61104d565b005b61043161121c565b60405161043e91906135aa565b60405180910390f35b610461600480360381019061045c919061308d565b611246565b005b61046b611437565b6040516104789190613655565b60405180910390f35b61049b6004803603810190610496919061300d565b6114c9565b005b6104b760048036038101906104b29190613200565b61164a565b6040516104c5929190613611565b60405180910390f35b6104e860048036038101906104e39190612eca565b611792565b6040516104f591906138f7565b60405180910390f35b61051860048036038101906105139190612f8a565b611864565b005b6105226118c6565b60405161052f91906135aa565b60405180910390f35b610552600480360381019061054d91906131a6565b6118ec565b60405161055f91906138f7565b60405180910390f35b610582600480360381019061057d91906131a6565b611910565b60405161058f9190613655565b60405180910390f35b6105b260048036038101906105ad9190612ef7565b611a0c565b6040516105bf919061363a565b60405180910390f35b6105e260048036038101906105dd9190612eca565b611aa0565b005b6105fe60048036038101906105f991906131a6565b611b98565b60405161060b919061363a565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610687575061068682611d7e565b5b9050919050565b60606000805461069d90613b4a565b80601f01602080910402602001604051908101604052809291908181526020018280546106c990613b4a565b80156107165780601f106106eb57610100808354040283529160200191610716565b820191906000526020600020905b8154815290600101906020018083116106f957829003601f168201915b5050505050905090565b600061072b82611e60565b61076a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076190613817565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107b082610e5b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081890613877565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610840611ecc565b73ffffffffffffffffffffffffffffffffffffffff16148061086f575061086e81610869611ecc565b611a0c565b5b6108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a590613777565b60405180910390fd5b6108b88383611ed4565b505050565b6000600880549050905090565b6108db6108d5611ecc565b82611f8d565b61091a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091190613897565b60405180910390fd5b61092583838361206b565b505050565b600061093583610f0d565b8210610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90613677565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6109ea83838360405180602001604052806000815250611864565b505050565b6060600d600c5481548110610a0757610a06613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663446d5aa4836040518263ffffffff1660e01b8152600401610a6a91906135aa565b60006040518083038186803b158015610a8257600080fd5b505afa158015610a96573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610abf919061315d565b9050919050565b610ace611ecc565b73ffffffffffffffffffffffffffffffffffffffff16610aec61121c565b73ffffffffffffffffffffffffffffffffffffffff1614610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990613837565b60405180910390fd5b610b6e81600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661104d565b50565b6002600a541415610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae906138d7565b60405180910390fd5b6002600a81905550600d600c5481548110610bd557610bd4613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638b1b925f336040518263ffffffff1660e01b8152600401610c3891906135aa565b60206040518083038186803b158015610c5057600080fd5b505afa158015610c64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8891906130d6565b610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe906137f7565b60405180910390fd5b6000610cd233610f0d565b14610d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d09906136f7565b60405180910390fd5b610d2f336001610d206108bd565b610d2a91906139fd565b6122c7565b600d600c5481548110610d4557610d44613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631e83409a336040518263ffffffff1660e01b8152600401610da891906135aa565b600060405180830381600087803b158015610dc257600080fd5b505af1158015610dd6573d6000803e3d6000fd5b505050506001600a81905550565b6000610dee6108bd565b8210610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e26906138b7565b60405180910390fd5b60088281548110610e4357610e42613c83565b5b90600052602060002001549050919050565b600c5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb906137b7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590613797565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fcd611ecc565b73ffffffffffffffffffffffffffffffffffffffff16610feb61121c565b73ffffffffffffffffffffffffffffffffffffffff1614611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890613837565b60405180910390fd5b61104b60006122e5565b565b611055611ecc565b73ffffffffffffffffffffffffffffffffffffffff1661107361121c565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613837565b60405180910390fd5b60016110d36108bd565b6110dd9190613a53565b600e600c54815481106110f3576110f2613c83565b5b906000526020600020018190555080600d600c548154811061111857611117613c83565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c600081548092919061117390613bad565b919050555081600d600c548154811061118f5761118e613c83565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6002600a54141561128c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611283906138d7565b60405180910390fd5b6002600a8190555061129c611ecc565b73ffffffffffffffffffffffffffffffffffffffff166112ba61121c565b73ffffffffffffffffffffffffffffffffffffffff1614611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790613837565b60405180910390fd5b60005b815181101561142b5761135382828151811061133257611331613c83565b5b602002602001015160016113446108bd565b61134e91906139fd565b6122c7565b600d600c548154811061136957611368613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631e83409a8383815181106113c2576113c1613c83565b5b60200260200101516040518263ffffffff1660e01b81526004016113e691906135aa565b600060405180830381600087803b15801561140057600080fd5b505af1158015611414573d6000803e3d6000fd5b50505050808061142390613bad565b915050611313565b506001600a8190555050565b60606001805461144690613b4a565b80601f016020809104026020016040519081016040528092919081815260200182805461147290613b4a565b80156114bf5780601f10611494576101008083540402835291602001916114bf565b820191906000526020600020905b8154815290600101906020018083116114a257829003601f168201915b5050505050905090565b6114d1611ecc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690613737565b60405180910390fd5b806005600061154c611ecc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115f9611ecc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161163e919061363a565b60405180910390a35050565b60008061165684611e60565b61166757600060019150915061178b565b600061167285610e5b565b9050600c54841461168a57806002925092505061178b565b61169581600061092a565b85146116a857806003925092505061178b565b600d600c54815481106116be576116bd613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638b1b925f826040518263ffffffff1660e01b815260040161172191906135aa565b60206040518083038186803b15801561173957600080fd5b505afa15801561174d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177191906130d6565b61178257806004925092505061178b565b80600092509250505b9250929050565b6000600d600c54815481106117aa576117a9613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b45aae52836040518263ffffffff1660e01b815260040161180d91906135aa565b60206040518083038186803b15801561182557600080fd5b505afa158015611839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185d91906131d3565b9050919050565b61187561186f611ecc565b83611f8d565b6118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90613897565b60405180910390fd5b6118c0848484846123ab565b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e81815481106118fc57600080fd5b906000526020600020016000915090505481565b6060600061191d83612407565b905060008061192c858461164a565b8092508193505050600d838154811061194857611947613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663338c2fff83836040518363ffffffff1660e01b81526004016119ad929190613611565b60006040518083038186803b1580156119c557600080fd5b505afa1580156119d9573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611a02919061315d565b9350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aa8611ecc565b73ffffffffffffffffffffffffffffffffffffffff16611ac661121c565b73ffffffffffffffffffffffffffffffffffffffff1614611b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1390613837565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b83906136b7565b60405180910390fd5b611b95816122e5565b50565b6000611ba382611e60565b611bb05760009050611d79565b6000600c541415611c8b57600d600c5481548110611bd157611bd0613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638b1b925f336040518263ffffffff1660e01b8152600401611c3491906135aa565b60206040518083038186803b158015611c4c57600080fd5b505afa158015611c60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8491906130d6565b9050611d79565b6000611c9683612407565b9050600c54811415611d7357600d600c5481548110611cb857611cb7613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638b1b925f336040518263ffffffff1660e01b8152600401611d1b91906135aa565b60206040518083038186803b158015611d3357600080fd5b505afa158015611d47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d6b91906130d6565b915050611d79565b60009150505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e4957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e595750611e588261245d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f4783610e5b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f9882611e60565b611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce90613757565b60405180910390fd5b6000611fe283610e5b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061205157508373ffffffffffffffffffffffffffffffffffffffff1661203984610720565b73ffffffffffffffffffffffffffffffffffffffff16145b8061206257506120618185611a0c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661208b82610e5b565b73ffffffffffffffffffffffffffffffffffffffff16146120e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d890613857565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214890613717565b60405180910390fd5b61215c8383836124c7565b612167600082611ed4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b79190613a53565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461220e91906139fd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6122e18282604051806020016040528060008152506125db565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123b684848461206b565b6123c284848484612636565b612401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f890613697565b60405180910390fd5b50505050565b600080600090506000600c541115612454575b600e818154811061242e5761242d613c83565b5b906000526020600020015483111561245357808061244b90613bad565b91505061241a565b5b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124d28383836127cd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561251557612510816127d2565b612554565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461255357612552838261281b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125975761259281612988565b6125d6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125d5576125d48282612a59565b5b5b505050565b6125e58383612ad8565b6125f26000848484612636565b612631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262890613697565b60405180910390fd5b505050565b60006126578473ffffffffffffffffffffffffffffffffffffffff16612ca6565b156127c0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612680611ecc565b8786866040518563ffffffff1660e01b81526004016126a294939291906135c5565b602060405180830381600087803b1580156126bc57600080fd5b505af19250505080156126ed57506040513d601f19601f820116820180604052508101906126ea9190613130565b60015b612770573d806000811461271d576040519150601f19603f3d011682016040523d82523d6000602084013e612722565b606091505b50600081511415612768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275f90613697565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127c5565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161282884610f0d565b6128329190613a53565b9050600060076000848152602001908152602001600020549050818114612917576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061299c9190613a53565b90506000600960008481526020019081526020016000205490506000600883815481106129cc576129cb613c83565b5b9060005260206000200154905080600883815481106129ee576129ed613c83565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a3d57612a3c613c54565b5b6001900381819060005260206000200160009055905550505050565b6000612a6483610f0d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3f906137d7565b60405180910390fd5b612b5181611e60565b15612b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b88906136d7565b60405180910390fd5b612b9d600083836124c7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bed91906139fd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000612ccc612cc784613937565b613912565b90508083825260208201905082856020860282011115612cef57612cee613ce6565b5b60005b85811015612d1f5781612d058882612dad565b845260208401935060208301925050600181019050612cf2565b5050509392505050565b6000612d3c612d3784613963565b613912565b905082815260208101848484011115612d5857612d57613ceb565b5b612d63848285613b08565b509392505050565b6000612d7e612d7984613994565b613912565b905082815260208101848484011115612d9a57612d99613ceb565b5b612da5848285613b17565b509392505050565b600081359050612dbc8161422d565b92915050565b600082601f830112612dd757612dd6613ce1565b5b8135612de7848260208601612cb9565b91505092915050565b600081359050612dff81614244565b92915050565b600081519050612e1481614244565b92915050565b600081359050612e298161425b565b92915050565b600081519050612e3e8161425b565b92915050565b600082601f830112612e5957612e58613ce1565b5b8135612e69848260208601612d29565b91505092915050565b600082601f830112612e8757612e86613ce1565b5b8151612e97848260208601612d6b565b91505092915050565b600081359050612eaf81614272565b92915050565b600081519050612ec481614272565b92915050565b600060208284031215612ee057612edf613cf5565b5b6000612eee84828501612dad565b91505092915050565b60008060408385031215612f0e57612f0d613cf5565b5b6000612f1c85828601612dad565b9250506020612f2d85828601612dad565b9150509250929050565b600080600060608486031215612f5057612f4f613cf5565b5b6000612f5e86828701612dad565b9350506020612f6f86828701612dad565b9250506040612f8086828701612ea0565b9150509250925092565b60008060008060808587031215612fa457612fa3613cf5565b5b6000612fb287828801612dad565b9450506020612fc387828801612dad565b9350506040612fd487828801612ea0565b925050606085013567ffffffffffffffff811115612ff557612ff4613cf0565b5b61300187828801612e44565b91505092959194509250565b6000806040838503121561302457613023613cf5565b5b600061303285828601612dad565b925050602061304385828601612df0565b9150509250929050565b6000806040838503121561306457613063613cf5565b5b600061307285828601612dad565b925050602061308385828601612ea0565b9150509250929050565b6000602082840312156130a3576130a2613cf5565b5b600082013567ffffffffffffffff8111156130c1576130c0613cf0565b5b6130cd84828501612dc2565b91505092915050565b6000602082840312156130ec576130eb613cf5565b5b60006130fa84828501612e05565b91505092915050565b60006020828403121561311957613118613cf5565b5b600061312784828501612e1a565b91505092915050565b60006020828403121561314657613145613cf5565b5b600061315484828501612e2f565b91505092915050565b60006020828403121561317357613172613cf5565b5b600082015167ffffffffffffffff81111561319157613190613cf0565b5b61319d84828501612e72565b91505092915050565b6000602082840312156131bc576131bb613cf5565b5b60006131ca84828501612ea0565b91505092915050565b6000602082840312156131e9576131e8613cf5565b5b60006131f784828501612eb5565b91505092915050565b6000806040838503121561321757613216613cf5565b5b600061322585828601612ea0565b925050602061323685828601612ea0565b9150509250929050565b61324981613a87565b82525050565b61325881613a99565b82525050565b6000613269826139c5565b61327381856139db565b9350613283818560208601613b17565b61328c81613cfa565b840191505092915050565b60006132a2826139d0565b6132ac81856139ec565b93506132bc818560208601613b17565b6132c581613cfa565b840191505092915050565b60006132dd602b836139ec565b91506132e882613d0b565b604082019050919050565b60006133006032836139ec565b915061330b82613d5a565b604082019050919050565b60006133236026836139ec565b915061332e82613da9565b604082019050919050565b6000613346601c836139ec565b915061335182613df8565b602082019050919050565b6000613369600f836139ec565b915061337482613e21565b602082019050919050565b600061338c6024836139ec565b915061339782613e4a565b604082019050919050565b60006133af6019836139ec565b91506133ba82613e99565b602082019050919050565b60006133d2602c836139ec565b91506133dd82613ec2565b604082019050919050565b60006133f56038836139ec565b915061340082613f11565b604082019050919050565b6000613418602a836139ec565b915061342382613f60565b604082019050919050565b600061343b6029836139ec565b915061344682613faf565b604082019050919050565b600061345e6020836139ec565b915061346982613ffe565b602082019050919050565b60006134816009836139ec565b915061348c82614027565b602082019050919050565b60006134a4602c836139ec565b91506134af82614050565b604082019050919050565b60006134c76020836139ec565b91506134d28261409f565b602082019050919050565b60006134ea6029836139ec565b91506134f5826140c8565b604082019050919050565b600061350d6021836139ec565b915061351882614117565b604082019050919050565b60006135306031836139ec565b915061353b82614166565b604082019050919050565b6000613553602c836139ec565b915061355e826141b5565b604082019050919050565b6000613576601f836139ec565b915061358182614204565b602082019050919050565b61359581613af1565b82525050565b6135a481613afb565b82525050565b60006020820190506135bf6000830184613240565b92915050565b60006080820190506135da6000830187613240565b6135e76020830186613240565b6135f4604083018561358c565b8181036060830152613606818461325e565b905095945050505050565b60006040820190506136266000830185613240565b613633602083018461359b565b9392505050565b600060208201905061364f600083018461324f565b92915050565b6000602082019050818103600083015261366f8184613297565b905092915050565b60006020820190508181036000830152613690816132d0565b9050919050565b600060208201905081810360008301526136b0816132f3565b9050919050565b600060208201905081810360008301526136d081613316565b9050919050565b600060208201905081810360008301526136f081613339565b9050919050565b600060208201905081810360008301526137108161335c565b9050919050565b600060208201905081810360008301526137308161337f565b9050919050565b60006020820190508181036000830152613750816133a2565b9050919050565b60006020820190508181036000830152613770816133c5565b9050919050565b60006020820190508181036000830152613790816133e8565b9050919050565b600060208201905081810360008301526137b08161340b565b9050919050565b600060208201905081810360008301526137d08161342e565b9050919050565b600060208201905081810360008301526137f081613451565b9050919050565b6000602082019050818103600083015261381081613474565b9050919050565b6000602082019050818103600083015261383081613497565b9050919050565b60006020820190508181036000830152613850816134ba565b9050919050565b60006020820190508181036000830152613870816134dd565b9050919050565b6000602082019050818103600083015261389081613500565b9050919050565b600060208201905081810360008301526138b081613523565b9050919050565b600060208201905081810360008301526138d081613546565b9050919050565b600060208201905081810360008301526138f081613569565b9050919050565b600060208201905061390c600083018461358c565b92915050565b600061391c61392d565b90506139288282613b7c565b919050565b6000604051905090565b600067ffffffffffffffff82111561395257613951613cb2565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561397e5761397d613cb2565b5b61398782613cfa565b9050602081019050919050565b600067ffffffffffffffff8211156139af576139ae613cb2565b5b6139b882613cfa565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613a0882613af1565b9150613a1383613af1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a4857613a47613bf6565b5b828201905092915050565b6000613a5e82613af1565b9150613a6983613af1565b925082821015613a7c57613a7b613bf6565b5b828203905092915050565b6000613a9282613ad1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613b35578082015181840152602081019050613b1a565b83811115613b44576000848401525b50505050565b60006002820490506001821680613b6257607f821691505b60208210811415613b7657613b75613c25565b5b50919050565b613b8582613cfa565b810181811067ffffffffffffffff82111715613ba457613ba3613cb2565b5b80604052505050565b6000613bb882613af1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613beb57613bea613bf6565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f616c726561647920636c61696d65640000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6e6f742076616c69640000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61423681613a87565b811461424157600080fd5b50565b61424d81613a99565b811461425857600080fd5b50565b61426481613aa5565b811461426f57600080fd5b50565b61427b81613af1565b811461428657600080fd5b5056fea26469706673582212206616c7a5a6a68cce57c15e8d3d3419e280a3c5a285317a8ac7157143647e721064736f6c634300080600330000000000000000000000007be5507183a2ef7c4625394e6e91afbe7dec37c2
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063b45aae52116100a2578063c87b56dd11610071578063c87b56dd14610568578063e985e9c514610598578063f2fde38b146105c8578063f577a500146105e4576101da565b8063b45aae52146104ce578063b88d4fde146104fe578063b9daa6d51461051a578063c10fa14c14610538576101da565b8063920c4ccb116100de578063920c4ccb1461044757806395d89b4114610463578063a22cb46514610481578063a745da651461049d576101da565b8063715018a6146104035780637f9076411461040d5780638da5cb5b14610429576101da565b806342842e0e1161017c5780634f6ccce71161014b5780634f6ccce71461035557806354fd4d50146103855780636352211e146103a357806370a08231146103d3576101da565b806342842e0e146102e3578063446d5aa4146102ff57806344ff98da1461032f5780634e71d92d1461034b576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806318160ddd1461027957806323b872dd146102975780632f745c59146102b3576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f49190613103565b610614565b604051610206919061363a565b60405180910390f35b61021761068e565b6040516102249190613655565b60405180910390f35b610247600480360381019061024291906131a6565b610720565b60405161025491906135aa565b60405180910390f35b6102776004803603810190610272919061304d565b6107a5565b005b6102816108bd565b60405161028e91906138f7565b60405180910390f35b6102b160048036038101906102ac9190612f37565b6108ca565b005b6102cd60048036038101906102c8919061304d565b61092a565b6040516102da91906138f7565b60405180910390f35b6102fd60048036038101906102f89190612f37565b6109cf565b005b61031960048036038101906103149190612eca565b6109ef565b6040516103269190613655565b60405180910390f35b61034960048036038101906103449190612eca565b610ac6565b005b610353610b71565b005b61036f600480360381019061036a91906131a6565b610de4565b60405161037c91906138f7565b60405180910390f35b61038d610e55565b60405161039a91906138f7565b60405180910390f35b6103bd60048036038101906103b891906131a6565b610e5b565b6040516103ca91906135aa565b60405180910390f35b6103ed60048036038101906103e89190612eca565b610f0d565b6040516103fa91906138f7565b60405180910390f35b61040b610fc5565b005b61042760048036038101906104229190612ef7565b61104d565b005b61043161121c565b60405161043e91906135aa565b60405180910390f35b610461600480360381019061045c919061308d565b611246565b005b61046b611437565b6040516104789190613655565b60405180910390f35b61049b6004803603810190610496919061300d565b6114c9565b005b6104b760048036038101906104b29190613200565b61164a565b6040516104c5929190613611565b60405180910390f35b6104e860048036038101906104e39190612eca565b611792565b6040516104f591906138f7565b60405180910390f35b61051860048036038101906105139190612f8a565b611864565b005b6105226118c6565b60405161052f91906135aa565b60405180910390f35b610552600480360381019061054d91906131a6565b6118ec565b60405161055f91906138f7565b60405180910390f35b610582600480360381019061057d91906131a6565b611910565b60405161058f9190613655565b60405180910390f35b6105b260048036038101906105ad9190612ef7565b611a0c565b6040516105bf919061363a565b60405180910390f35b6105e260048036038101906105dd9190612eca565b611aa0565b005b6105fe60048036038101906105f991906131a6565b611b98565b60405161060b919061363a565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610687575061068682611d7e565b5b9050919050565b60606000805461069d90613b4a565b80601f01602080910402602001604051908101604052809291908181526020018280546106c990613b4a565b80156107165780601f106106eb57610100808354040283529160200191610716565b820191906000526020600020905b8154815290600101906020018083116106f957829003601f168201915b5050505050905090565b600061072b82611e60565b61076a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076190613817565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107b082610e5b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081890613877565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610840611ecc565b73ffffffffffffffffffffffffffffffffffffffff16148061086f575061086e81610869611ecc565b611a0c565b5b6108ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a590613777565b60405180910390fd5b6108b88383611ed4565b505050565b6000600880549050905090565b6108db6108d5611ecc565b82611f8d565b61091a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091190613897565b60405180910390fd5b61092583838361206b565b505050565b600061093583610f0d565b8210610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90613677565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6109ea83838360405180602001604052806000815250611864565b505050565b6060600d600c5481548110610a0757610a06613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663446d5aa4836040518263ffffffff1660e01b8152600401610a6a91906135aa565b60006040518083038186803b158015610a8257600080fd5b505afa158015610a96573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610abf919061315d565b9050919050565b610ace611ecc565b73ffffffffffffffffffffffffffffffffffffffff16610aec61121c565b73ffffffffffffffffffffffffffffffffffffffff1614610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990613837565b60405180910390fd5b610b6e81600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661104d565b50565b6002600a541415610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae906138d7565b60405180910390fd5b6002600a81905550600d600c5481548110610bd557610bd4613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638b1b925f336040518263ffffffff1660e01b8152600401610c3891906135aa565b60206040518083038186803b158015610c5057600080fd5b505afa158015610c64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8891906130d6565b610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe906137f7565b60405180910390fd5b6000610cd233610f0d565b14610d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d09906136f7565b60405180910390fd5b610d2f336001610d206108bd565b610d2a91906139fd565b6122c7565b600d600c5481548110610d4557610d44613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631e83409a336040518263ffffffff1660e01b8152600401610da891906135aa565b600060405180830381600087803b158015610dc257600080fd5b505af1158015610dd6573d6000803e3d6000fd5b505050506001600a81905550565b6000610dee6108bd565b8210610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e26906138b7565b60405180910390fd5b60088281548110610e4357610e42613c83565b5b90600052602060002001549050919050565b600c5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb906137b7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590613797565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fcd611ecc565b73ffffffffffffffffffffffffffffffffffffffff16610feb61121c565b73ffffffffffffffffffffffffffffffffffffffff1614611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890613837565b60405180910390fd5b61104b60006122e5565b565b611055611ecc565b73ffffffffffffffffffffffffffffffffffffffff1661107361121c565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613837565b60405180910390fd5b60016110d36108bd565b6110dd9190613a53565b600e600c54815481106110f3576110f2613c83565b5b906000526020600020018190555080600d600c548154811061111857611117613c83565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c600081548092919061117390613bad565b919050555081600d600c548154811061118f5761118e613c83565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6002600a54141561128c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611283906138d7565b60405180910390fd5b6002600a8190555061129c611ecc565b73ffffffffffffffffffffffffffffffffffffffff166112ba61121c565b73ffffffffffffffffffffffffffffffffffffffff1614611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790613837565b60405180910390fd5b60005b815181101561142b5761135382828151811061133257611331613c83565b5b602002602001015160016113446108bd565b61134e91906139fd565b6122c7565b600d600c548154811061136957611368613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631e83409a8383815181106113c2576113c1613c83565b5b60200260200101516040518263ffffffff1660e01b81526004016113e691906135aa565b600060405180830381600087803b15801561140057600080fd5b505af1158015611414573d6000803e3d6000fd5b50505050808061142390613bad565b915050611313565b506001600a8190555050565b60606001805461144690613b4a565b80601f016020809104026020016040519081016040528092919081815260200182805461147290613b4a565b80156114bf5780601f10611494576101008083540402835291602001916114bf565b820191906000526020600020905b8154815290600101906020018083116114a257829003601f168201915b5050505050905090565b6114d1611ecc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690613737565b60405180910390fd5b806005600061154c611ecc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115f9611ecc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161163e919061363a565b60405180910390a35050565b60008061165684611e60565b61166757600060019150915061178b565b600061167285610e5b565b9050600c54841461168a57806002925092505061178b565b61169581600061092a565b85146116a857806003925092505061178b565b600d600c54815481106116be576116bd613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638b1b925f826040518263ffffffff1660e01b815260040161172191906135aa565b60206040518083038186803b15801561173957600080fd5b505afa15801561174d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177191906130d6565b61178257806004925092505061178b565b80600092509250505b9250929050565b6000600d600c54815481106117aa576117a9613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b45aae52836040518263ffffffff1660e01b815260040161180d91906135aa565b60206040518083038186803b15801561182557600080fd5b505afa158015611839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185d91906131d3565b9050919050565b61187561186f611ecc565b83611f8d565b6118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90613897565b60405180910390fd5b6118c0848484846123ab565b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e81815481106118fc57600080fd5b906000526020600020016000915090505481565b6060600061191d83612407565b905060008061192c858461164a565b8092508193505050600d838154811061194857611947613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663338c2fff83836040518363ffffffff1660e01b81526004016119ad929190613611565b60006040518083038186803b1580156119c557600080fd5b505afa1580156119d9573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611a02919061315d565b9350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aa8611ecc565b73ffffffffffffffffffffffffffffffffffffffff16611ac661121c565b73ffffffffffffffffffffffffffffffffffffffff1614611b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1390613837565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b83906136b7565b60405180910390fd5b611b95816122e5565b50565b6000611ba382611e60565b611bb05760009050611d79565b6000600c541415611c8b57600d600c5481548110611bd157611bd0613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638b1b925f336040518263ffffffff1660e01b8152600401611c3491906135aa565b60206040518083038186803b158015611c4c57600080fd5b505afa158015611c60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8491906130d6565b9050611d79565b6000611c9683612407565b9050600c54811415611d7357600d600c5481548110611cb857611cb7613c83565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638b1b925f336040518263ffffffff1660e01b8152600401611d1b91906135aa565b60206040518083038186803b158015611d3357600080fd5b505afa158015611d47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d6b91906130d6565b915050611d79565b60009150505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e4957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e595750611e588261245d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f4783610e5b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f9882611e60565b611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce90613757565b60405180910390fd5b6000611fe283610e5b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061205157508373ffffffffffffffffffffffffffffffffffffffff1661203984610720565b73ffffffffffffffffffffffffffffffffffffffff16145b8061206257506120618185611a0c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661208b82610e5b565b73ffffffffffffffffffffffffffffffffffffffff16146120e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d890613857565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214890613717565b60405180910390fd5b61215c8383836124c7565b612167600082611ed4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121b79190613a53565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461220e91906139fd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6122e18282604051806020016040528060008152506125db565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123b684848461206b565b6123c284848484612636565b612401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f890613697565b60405180910390fd5b50505050565b600080600090506000600c541115612454575b600e818154811061242e5761242d613c83565b5b906000526020600020015483111561245357808061244b90613bad565b91505061241a565b5b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124d28383836127cd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561251557612510816127d2565b612554565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461255357612552838261281b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125975761259281612988565b6125d6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125d5576125d48282612a59565b5b5b505050565b6125e58383612ad8565b6125f26000848484612636565b612631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262890613697565b60405180910390fd5b505050565b60006126578473ffffffffffffffffffffffffffffffffffffffff16612ca6565b156127c0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612680611ecc565b8786866040518563ffffffff1660e01b81526004016126a294939291906135c5565b602060405180830381600087803b1580156126bc57600080fd5b505af19250505080156126ed57506040513d601f19601f820116820180604052508101906126ea9190613130565b60015b612770573d806000811461271d576040519150601f19603f3d011682016040523d82523d6000602084013e612722565b606091505b50600081511415612768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275f90613697565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127c5565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161282884610f0d565b6128329190613a53565b9050600060076000848152602001908152602001600020549050818114612917576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061299c9190613a53565b90506000600960008481526020019081526020016000205490506000600883815481106129cc576129cb613c83565b5b9060005260206000200154905080600883815481106129ee576129ed613c83565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a3d57612a3c613c54565b5b6001900381819060005260206000200160009055905550505050565b6000612a6483610f0d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3f906137d7565b60405180910390fd5b612b5181611e60565b15612b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b88906136d7565b60405180910390fd5b612b9d600083836124c7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bed91906139fd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000612ccc612cc784613937565b613912565b90508083825260208201905082856020860282011115612cef57612cee613ce6565b5b60005b85811015612d1f5781612d058882612dad565b845260208401935060208301925050600181019050612cf2565b5050509392505050565b6000612d3c612d3784613963565b613912565b905082815260208101848484011115612d5857612d57613ceb565b5b612d63848285613b08565b509392505050565b6000612d7e612d7984613994565b613912565b905082815260208101848484011115612d9a57612d99613ceb565b5b612da5848285613b17565b509392505050565b600081359050612dbc8161422d565b92915050565b600082601f830112612dd757612dd6613ce1565b5b8135612de7848260208601612cb9565b91505092915050565b600081359050612dff81614244565b92915050565b600081519050612e1481614244565b92915050565b600081359050612e298161425b565b92915050565b600081519050612e3e8161425b565b92915050565b600082601f830112612e5957612e58613ce1565b5b8135612e69848260208601612d29565b91505092915050565b600082601f830112612e8757612e86613ce1565b5b8151612e97848260208601612d6b565b91505092915050565b600081359050612eaf81614272565b92915050565b600081519050612ec481614272565b92915050565b600060208284031215612ee057612edf613cf5565b5b6000612eee84828501612dad565b91505092915050565b60008060408385031215612f0e57612f0d613cf5565b5b6000612f1c85828601612dad565b9250506020612f2d85828601612dad565b9150509250929050565b600080600060608486031215612f5057612f4f613cf5565b5b6000612f5e86828701612dad565b9350506020612f6f86828701612dad565b9250506040612f8086828701612ea0565b9150509250925092565b60008060008060808587031215612fa457612fa3613cf5565b5b6000612fb287828801612dad565b9450506020612fc387828801612dad565b9350506040612fd487828801612ea0565b925050606085013567ffffffffffffffff811115612ff557612ff4613cf0565b5b61300187828801612e44565b91505092959194509250565b6000806040838503121561302457613023613cf5565b5b600061303285828601612dad565b925050602061304385828601612df0565b9150509250929050565b6000806040838503121561306457613063613cf5565b5b600061307285828601612dad565b925050602061308385828601612ea0565b9150509250929050565b6000602082840312156130a3576130a2613cf5565b5b600082013567ffffffffffffffff8111156130c1576130c0613cf0565b5b6130cd84828501612dc2565b91505092915050565b6000602082840312156130ec576130eb613cf5565b5b60006130fa84828501612e05565b91505092915050565b60006020828403121561311957613118613cf5565b5b600061312784828501612e1a565b91505092915050565b60006020828403121561314657613145613cf5565b5b600061315484828501612e2f565b91505092915050565b60006020828403121561317357613172613cf5565b5b600082015167ffffffffffffffff81111561319157613190613cf0565b5b61319d84828501612e72565b91505092915050565b6000602082840312156131bc576131bb613cf5565b5b60006131ca84828501612ea0565b91505092915050565b6000602082840312156131e9576131e8613cf5565b5b60006131f784828501612eb5565b91505092915050565b6000806040838503121561321757613216613cf5565b5b600061322585828601612ea0565b925050602061323685828601612ea0565b9150509250929050565b61324981613a87565b82525050565b61325881613a99565b82525050565b6000613269826139c5565b61327381856139db565b9350613283818560208601613b17565b61328c81613cfa565b840191505092915050565b60006132a2826139d0565b6132ac81856139ec565b93506132bc818560208601613b17565b6132c581613cfa565b840191505092915050565b60006132dd602b836139ec565b91506132e882613d0b565b604082019050919050565b60006133006032836139ec565b915061330b82613d5a565b604082019050919050565b60006133236026836139ec565b915061332e82613da9565b604082019050919050565b6000613346601c836139ec565b915061335182613df8565b602082019050919050565b6000613369600f836139ec565b915061337482613e21565b602082019050919050565b600061338c6024836139ec565b915061339782613e4a565b604082019050919050565b60006133af6019836139ec565b91506133ba82613e99565b602082019050919050565b60006133d2602c836139ec565b91506133dd82613ec2565b604082019050919050565b60006133f56038836139ec565b915061340082613f11565b604082019050919050565b6000613418602a836139ec565b915061342382613f60565b604082019050919050565b600061343b6029836139ec565b915061344682613faf565b604082019050919050565b600061345e6020836139ec565b915061346982613ffe565b602082019050919050565b60006134816009836139ec565b915061348c82614027565b602082019050919050565b60006134a4602c836139ec565b91506134af82614050565b604082019050919050565b60006134c76020836139ec565b91506134d28261409f565b602082019050919050565b60006134ea6029836139ec565b91506134f5826140c8565b604082019050919050565b600061350d6021836139ec565b915061351882614117565b604082019050919050565b60006135306031836139ec565b915061353b82614166565b604082019050919050565b6000613553602c836139ec565b915061355e826141b5565b604082019050919050565b6000613576601f836139ec565b915061358182614204565b602082019050919050565b61359581613af1565b82525050565b6135a481613afb565b82525050565b60006020820190506135bf6000830184613240565b92915050565b60006080820190506135da6000830187613240565b6135e76020830186613240565b6135f4604083018561358c565b8181036060830152613606818461325e565b905095945050505050565b60006040820190506136266000830185613240565b613633602083018461359b565b9392505050565b600060208201905061364f600083018461324f565b92915050565b6000602082019050818103600083015261366f8184613297565b905092915050565b60006020820190508181036000830152613690816132d0565b9050919050565b600060208201905081810360008301526136b0816132f3565b9050919050565b600060208201905081810360008301526136d081613316565b9050919050565b600060208201905081810360008301526136f081613339565b9050919050565b600060208201905081810360008301526137108161335c565b9050919050565b600060208201905081810360008301526137308161337f565b9050919050565b60006020820190508181036000830152613750816133a2565b9050919050565b60006020820190508181036000830152613770816133c5565b9050919050565b60006020820190508181036000830152613790816133e8565b9050919050565b600060208201905081810360008301526137b08161340b565b9050919050565b600060208201905081810360008301526137d08161342e565b9050919050565b600060208201905081810360008301526137f081613451565b9050919050565b6000602082019050818103600083015261381081613474565b9050919050565b6000602082019050818103600083015261383081613497565b9050919050565b60006020820190508181036000830152613850816134ba565b9050919050565b60006020820190508181036000830152613870816134dd565b9050919050565b6000602082019050818103600083015261389081613500565b9050919050565b600060208201905081810360008301526138b081613523565b9050919050565b600060208201905081810360008301526138d081613546565b9050919050565b600060208201905081810360008301526138f081613569565b9050919050565b600060208201905061390c600083018461358c565b92915050565b600061391c61392d565b90506139288282613b7c565b919050565b6000604051905090565b600067ffffffffffffffff82111561395257613951613cb2565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561397e5761397d613cb2565b5b61398782613cfa565b9050602081019050919050565b600067ffffffffffffffff8211156139af576139ae613cb2565b5b6139b882613cfa565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613a0882613af1565b9150613a1383613af1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a4857613a47613bf6565b5b828201905092915050565b6000613a5e82613af1565b9150613a6983613af1565b925082821015613a7c57613a7b613bf6565b5b828203905092915050565b6000613a9282613ad1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613b35578082015181840152602081019050613b1a565b83811115613b44576000848401525b50505050565b60006002820490506001821680613b6257607f821691505b60208210811415613b7657613b75613c25565b5b50919050565b613b8582613cfa565b810181811067ffffffffffffffff82111715613ba457613ba3613cb2565b5b80604052505050565b6000613bb882613af1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613beb57613bea613bf6565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f616c726561647920636c61696d65640000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6e6f742076616c69640000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61423681613a87565b811461424157600080fd5b50565b61424d81613a99565b811461425857600080fd5b50565b61426481613aa5565b811461426f57600080fd5b50565b61427b81613af1565b811461428657600080fd5b5056fea26469706673582212206616c7a5a6a68cce57c15e8d3d3419e280a3c5a285317a8ac7157143647e721064736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007be5507183a2ef7c4625394e6e91afbe7dec37c2
-----Decoded View---------------
Arg [0] : _klistV0Contract (address): 0x7be5507183A2eF7C4625394E6E91aFBE7DeC37c2
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007be5507183a2ef7c4625394e6e91afbe7dec37c2
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.