ERC-721
Overview
Max Total Supply
0 TnH
Holders
131
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TnHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TnH
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Royalty.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; interface i_BLONKS { function ownerOf(uint256 eligibleTokenId) external view returns (address); } /// @title Texture and Hues Contract /// @author Matto /// @notice This is a customized ERC-721 contract for Texture and Hues. /// @custom:security-contact [email protected] contract TnH is ERC721Royalty, Ownable, ReentrancyGuard { using Counters for Counters.Counter; string public description; string public website; string public decentralizedWebsite; string public externalURL; address public artistAddress; uint256 public royaltyBPS; address public BLONKScontract = 0x7f463b874eC264dC7BD8C780f5790b4Fc371F11f; Counters.Counter private _tokenIdCounter; mapping(uint256 => uint256) public entropyOf; uint8[700] public claimed; constructor() ERC721("Texture and Hues", "TnH") {} /** * @dev This function allows BLONKS owners to claim and mint a token. */ function CLAIM(uint16 BLONKSnumber) external nonReentrant { require(BLONKSnumber <= 691, "Only BLONKS 0-691 are eligible"); require(claimed[BLONKSnumber] == 0, "That BLONKS has been used."); require( msg.sender == i_BLONKS(BLONKScontract).ownerOf(BLONKSnumber), "Requesting account must own the BLONKS." ); require( _tokenIdCounter.current() < 256, "All Texture and Hues tokens have been minted." ); uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _assignTokenData(tokenId, BLONKSnumber); claimed[BLONKSnumber] = 1; _safeMint(msg.sender, tokenId); } /** * @dev This function assigns entropy to a mapping for tokens. */ function _assignTokenData(uint256 _tokenId, uint256 _BLONKSnumber) internal { entropyOf[_tokenId] = uint256( keccak256( abi.encodePacked( "Texture and Hues", _BLONKSnumber, _tokenId, block.number, block.timestamp ) ) ) / (10**10); } /** * @dev This function allows changes to the artist address and secondary * sale royalty amount. After setting values, _setDefaultRoyalty is called * in order to update EIP-2981 functions. */ function setArtistPayments(address _artistAddress, uint96 _royaltyBPS) external onlyOwner { artistAddress = _artistAddress; royaltyBPS = _royaltyBPS; _setDefaultRoyalty(artistAddress, _royaltyBPS); } /** * @dev This function allows changes to on-chain, project specific * metadata. */ function setProjectMeta( string memory _description, string memory _website, string memory _decentralizedWebsite, string memory _externalURL ) external onlyOwner { description = _description; website = _website; decentralizedWebsite = _decentralizedWebsite; externalURL = _externalURL; } /** * @dev This function generates the token SVG and metadata, encoding into * base 64 as needed for browsers to be able to render images without * a server or html page. */ function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _tokenId < _tokenIdCounter.current(), "That token doesn't exist" ); string memory hue = ""; if (_tokenId < 240) { hue = string( abi.encodePacked( "hsl(", Strings.toString((_tokenId * 15) / 10), ", 75%, 50%)" ) ); } else { hue = string( abi.encodePacked( "hsl(0, 0%, ", Strings.toString((_tokenId - 239) * 6), "%" ) ); } uint256 tE = entropyOf[_tokenId]; uint256[4] memory t; t[0] = (tE % 999) + 1; tE = tE / 1000; t[1] = (tE % 10) + 1; tE = tE / 10; t[2] = tE % 360; tE = tE / 1000; t[3] = (tE % 100) + 1; string memory svg = string( abi.encodePacked( '<?xml version="1.0" encoding="utf-8"?>', '<svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg">', '<filter id="texture"><feTurbulence type="fractalNoise" baseFrequency="0.0', Strings.toString(t[0]), '" result="noise" numOctaves="5" /><feDiffuseLighting in="noise" lighting-color="', hue, '" surfaceScale="', Strings.toString(t[1]), '"><feDistantLight azimuth="', Strings.toString(t[2]), '" elevation="', Strings.toString(t[3]), '" /></feDiffuseLighting></filter>', '<rect x="0" y="0" width="1000" height="1000" style="filter:url(#texture)" /></svg>' ) ); string memory traits = string( abi.encodePacked( '"attributes":[', _trait("Texture", Strings.toString(t[0])), _trait("Hue", hue), _trait("Scale", Strings.toString(t[1])), _trait("Angle", Strings.toString(t[2])), _trait("Distance", Strings.toString(t[3])), '{"trait_type":"Token License","value":"CC BY-NC 4.0"}]' ) ); string memory b64SVG = string( abi.encodePacked( "data:application/json;base64,", Base64.encode(bytes(svg)) ) ); string memory URI = string( abi.encodePacked( "data:application/json;base64,", Base64.encode( bytes( string( abi.encodePacked( '{"name":"Texture and Hues #', Strings.toString(_tokenId), '","artist":"Matto","description":"', description, '","royaltyInfo":{"artistAddress":"', Strings.toHexString(uint160(artistAddress), 20), '","royaltyBPS":', Strings.toString(royaltyBPS), '},"collection_name":"Texture and Hues","website":"', website, '","external_url":"', externalURL, '","script_type":"Solidity","image_type":"Generative SVG","image":"', b64SVG, '",', traits, "}" ) ) ) ) ) ); return URI; } /** * @dev This is a helper function for building 'attributes' (traits) * strings for metadata. */ function _trait(string memory _k, string memory _v) internal pure returns (string memory) { return string( abi.encodePacked( '{"trait_type":"', _k, '","value":"', _v, '"},' ) ); } } /// [MIT License] /// @title Base64 /// @notice Provides a function for encoding some bytes in base64 /// @author Brecht Devos <[email protected]> library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; uint256 encodedLen = 4 * ((len + 2) / 3); bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add( out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF) ) out := shl(8, out) out := add( out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF) ) out := shl(8, out) out := add( out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF) ) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) 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 making 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 // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/ERC721Royalty.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../common/ERC2981.sol"; import "../../../utils/introspection/ERC165.sol"; /** * @dev Extension of ERC721 with the ERC2981 NFT Royalty Standard, a standardized way to retrieve royalty payment * information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC721Royalty is ERC2981, ERC721 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } /** * @dev See {ERC721-_burn}. This override additionally clears the royalty information for the token. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); _resetTokenRoyalty(tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) 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: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); 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 overridden 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 token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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: caller is not token 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: caller is not token 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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BLONKScontract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"BLONKSnumber","type":"uint16"}],"name":"CLAIM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artistAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimed","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decentralizedWebsite","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"description","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"entropyOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"externalURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"address","name":"_artistAddress","type":"address"},{"internalType":"uint96","name":"_royaltyBPS","type":"uint96"}],"name":"setArtistPayments","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_description","type":"string"},{"internalType":"string","name":"_website","type":"string"},{"internalType":"string","name":"_decentralizedWebsite","type":"string"},{"internalType":"string","name":"_externalURL","type":"string"}],"name":"setProjectMeta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"website","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052737f463b874ec264dc7bd8c780f5790b4fc371f11f601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b506040518060400160405280601081526020017f5465787475726520616e642048756573000000000000000000000000000000008152506040518060400160405280600381526020017f546e4800000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000eb92919062000203565b5080600390805190602001906200010492919062000203565b505050620001276200011b6200013560201b60201c565b6200013d60201b60201c565b600160098190555062000318565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021190620002b3565b90600052602060002090601f01602090048101928262000235576000855562000281565b82601f106200025057805160ff191683800117855562000281565b8280016001018555821562000281579182015b828111156200028057825182559160200191906001019062000263565b5b50905062000290919062000294565b5090565b5b80821115620002af57600081600090555060010162000295565b5090565b60006002820490506001821680620002cc57607f821691505b60208210811415620002e357620002e2620002e9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6156b980620003286000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80637284e41611610104578063b9c9d93a116100a2578063d7eb3f3a11610071578063d7eb3f3a1461051d578063dbe7e3bd1461053b578063e985e9c51461056b578063f2fde38b1461059b576101cf565b8063b9c9d93a14610495578063beb0a416146104b3578063befb3661146104d1578063c87b56dd146104ed576101cf565b806395d89b41116100de57806395d89b4114610421578063a22cb4651461043f578063b88d4fde1461045b578063b99edfb214610477576101cf565b80637284e416146103c95780638da5cb5b146103e75780638eebeb0d14610405576101cf565b806342842e0e1161017157806361f60aff1161014b57806361f60aff146103415780636352211e1461035f57806370a082311461038f578063715018a6146103bf576101cf565b806342842e0e146102eb5780634325fa23146103075780635232a8d514610323576101cf565b8063095ea7b3116101ad578063095ea7b3146102525780630f21ec371461026e57806323b872dd1461029e5780632a55205a146102ba576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e9919061337e565b6105b7565b6040516101fb9190614154565b60405180910390f35b61020c6105c9565b604051610219919061416f565b60405180910390f35b61023c600480360381019061023791906134dc565b61065b565b60405161024991906140c4565b60405180910390f35b61026c600480360381019061026791906132fe565b6106a1565b005b610288600480360381019061028391906134dc565b6107b9565b604051610295919061446c565b60405180910390f35b6102b860048036038101906102b391906131e8565b6107d1565b005b6102d460048036038101906102cf9190613509565b610831565b6040516102e292919061412b565b60405180910390f35b610305600480360381019061030091906131e8565b610a1c565b005b610321600480360381019061031c91906134af565b610a3c565b005b61032b610d23565b604051610338919061416f565b60405180910390f35b610349610db1565b60405161035691906140c4565b60405180910390f35b610379600480360381019061037491906134dc565b610dd7565b60405161038691906140c4565b60405180910390f35b6103a960048036038101906103a4919061314e565b610e89565b6040516103b6919061446c565b60405180910390f35b6103c7610f41565b005b6103d1610f55565b6040516103de919061416f565b60405180910390f35b6103ef610fe3565b6040516103fc91906140c4565b60405180910390f35b61041f600480360381019061041a91906133d8565b61100d565b005b610429611077565b604051610436919061416f565b60405180910390f35b610459600480360381019061045491906132be565b611109565b005b6104756004803603810190610470919061323b565b61111f565b005b61047f611181565b60405161048c919061416f565b60405180910390f35b61049d61120f565b6040516104aa919061446c565b60405180910390f35b6104bb611215565b6040516104c8919061416f565b60405180910390f35b6104eb60048036038101906104e6919061333e565b6112a3565b005b610507600480360381019061050291906134dc565b611331565b604051610514919061416f565b60405180910390f35b6105256118bb565b60405161053291906140c4565b60405180910390f35b610555600480360381019061055091906134dc565b6118e1565b6040516105629190614487565b60405180910390f35b610585600480360381019061058091906131a8565b61190c565b6040516105929190614154565b60405180910390f35b6105b560048036038101906105b0919061314e565b6119a0565b005b60006105c282611a24565b9050919050565b6060600280546105d8906147bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610604906147bb565b80156106515780601f1061062657610100808354040283529160200191610651565b820191906000526020600020905b81548152906001019060200180831161063457829003601f168201915b5050505050905090565b600061066682611b06565b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106ac82610dd7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561071d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610714906143b1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661073c611b51565b73ffffffffffffffffffffffffffffffffffffffff16148061076b575061076a81610765611b51565b61190c565b5b6107aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a190614331565b60405180910390fd5b6107b48383611b59565b505050565b60126020528060005260406000206000915090505481565b6107e26107dc611b51565b82611c12565b610821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610818906143f1565b60405180910390fd5b61082c838383611ca7565b505050565b6000806000600160008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156109c75760006040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006109d1611f0e565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866109fd9190614608565b610a0791906145d7565b90508160000151819350935050509250929050565b610a378383836040518060200160405280600081525061111f565b505050565b60026009541415610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990614411565b60405180910390fd5b60026009819055506102b38161ffff161115610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90614291565b60405180910390fd5b600060138261ffff166102bc8110610aee57610aed61492f565b5b602091828204019190069054906101000a900460ff1660ff1614610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e90614311565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b8152600401610ba29190614451565b60206040518083038186803b158015610bba57600080fd5b505afa158015610bce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf2919061317b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c56906142d1565b60405180910390fd5b610100610c6c6011611f18565b10610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906141b1565b60405180910390fd5b6000610cb86011611f18565b9050610cc46011611f26565b610cd2818361ffff16611f3c565b600160138361ffff166102bc8110610ced57610cec61492f565b5b602091828204019190066101000a81548160ff021916908360ff160217905550610d173382611f97565b50600160098190555050565b600c8054610d30906147bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5c906147bb565b8015610da95780601f10610d7e57610100808354040283529160200191610da9565b820191906000526020600020905b815481529060010190602001808311610d8c57829003601f168201915b505050505081565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7790614391565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef1906142b1565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f49611fb5565b610f536000612033565b565b600a8054610f62906147bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8e906147bb565b8015610fdb5780601f10610fb057610100808354040283529160200191610fdb565b820191906000526020600020905b815481529060010190602001808311610fbe57829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611015611fb5565b83600a908051906020019061102b929190612f01565b5082600b9080519060200190611042929190612f01565b5081600c9080519060200190611059929190612f01565b5080600d9080519060200190611070929190612f01565b5050505050565b606060038054611086906147bb565b80601f01602080910402602001604051908101604052809291908181526020018280546110b2906147bb565b80156110ff5780601f106110d4576101008083540402835291602001916110ff565b820191906000526020600020905b8154815290600101906020018083116110e257829003601f168201915b5050505050905090565b61111b611114611b51565b83836120f9565b5050565b61113061112a611b51565b83611c12565b61116f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611166906143f1565b60405180910390fd5b61117b84848484612266565b50505050565b600d805461118e906147bb565b80601f01602080910402602001604051908101604052809291908181526020018280546111ba906147bb565b80156112075780601f106111dc57610100808354040283529160200191611207565b820191906000526020600020905b8154815290600101906020018083116111ea57829003601f168201915b505050505081565b600f5481565b600b8054611222906147bb565b80601f016020809104026020016040519081016040528092919081815260200182805461124e906147bb565b801561129b5780601f106112705761010080835404028352916020019161129b565b820191906000526020600020905b81548152906001019060200180831161127e57829003601f168201915b505050505081565b6112ab611fb5565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806bffffffffffffffffffffffff16600f8190555061132d600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826122c2565b5050565b606061133d6011611f18565b821061137e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611375906142f1565b60405180910390fd5b600060405180602001604052806000815250905060f08310156113e2576113bc600a600f856113ad9190614608565b6113b791906145d7565b612457565b6040516020016113cc9190613e64565b6040516020818303038152906040529050611425565b611403600660ef856113f49190614662565b6113fe9190614608565b612457565b6040516020016114139190613e91565b60405160208183030381529060405290505b600060126000858152602001908152602001600020549050611445612f87565b60016103e7836114559190614871565b61145f9190614581565b816000600481106114735761147261492f565b5b6020020181815250506103e88261148a91906145d7565b91506001600a8361149b9190614871565b6114a59190614581565b816001600481106114b9576114b861492f565b5b602002018181525050600a826114cf91906145d7565b9150610168826114df9190614871565b816002600481106114f3576114f261492f565b5b6020020181815250506103e88261150a91906145d7565b9150600160648361151b9190614871565b6115259190614581565b816003600481106115395761153861492f565b5b60200201818152505060006115658260006004811061155b5761155a61492f565b5b6020020151612457565b846115878460016004811061157d5761157c61492f565b5b6020020151612457565b6115a88560026004811061159e5761159d61492f565b5b6020020151612457565b6115c9866003600481106115bf576115be61492f565b5b6020020151612457565b6040516020016115dd959493929190613ebe565b6040516020818303038152906040529050600061164f6040518060400160405280600781526020017f546578747572650000000000000000000000000000000000000000000000000081525061164a856000600481106116405761163f61492f565b5b6020020151612457565b6125b8565b61168e6040518060400160405280600381526020017f4875650000000000000000000000000000000000000000000000000000000000815250876125b8565b6116ed6040518060400160405280600581526020017f5363616c650000000000000000000000000000000000000000000000000000008152506116e8876001600481106116de576116dd61492f565b5b6020020151612457565b6125b8565b61174c6040518060400160405280600581526020017f416e676c650000000000000000000000000000000000000000000000000000008152506117478860026004811061173d5761173c61492f565b5b6020020151612457565b6125b8565b6117ab6040518060400160405280600881526020017f44697374616e63650000000000000000000000000000000000000000000000008152506117a68960036004811061179c5761179b61492f565b5b6020020151612457565b6125b8565b6040516020016117bf959493929190614063565b604051602081830303815290604052905060006117db836125e4565b6040516020016117eb9190613f6c565b6040516020818303038152906040529050600061188b61180a8a612457565b600a61184f600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16601461277c565b61185a600f54612457565b600b600d888a604051602001611877989796959493929190613f8e565b6040516020818303038152906040526125e4565b60405160200161189b9190613f6c565b604051602081830303815290604052905080975050505050505050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6013816102bc81106118f257600080fd5b60209182820401919006915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119a8611fb5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f906141f1565b60405180910390fd5b611a2181612033565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611aef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611aff5750611afe826129b8565b5b9050919050565b611b0f81612a32565b611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4590614391565b60405180910390fd5b50565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bcc83610dd7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611c1e83610dd7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c605750611c5f818561190c565b5b80611c9e57508373ffffffffffffffffffffffffffffffffffffffff16611c868461065b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cc782610dd7565b73ffffffffffffffffffffffffffffffffffffffff1614611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490614211565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8490614251565b60405180910390fd5b611d98838383612a9e565b611da3600082611b59565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df39190614662565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e4a9190614581565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f09838383612aa3565b505050565b6000612710905090565b600081600001549050919050565b6001816000016000828254019250508190555050565b6402540be40081834342604051602001611f599493929190613dc6565b6040516020818303038152906040528051906020012060001c611f7c91906145d7565b60126000848152602001908152602001600020819055505050565b611fb1828260405180602001604052806000815250612aa8565b5050565b611fbd611b51565b73ffffffffffffffffffffffffffffffffffffffff16611fdb610fe3565b73ffffffffffffffffffffffffffffffffffffffff1614612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890614371565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f90614271565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122599190614154565b60405180910390a3505050565b612271848484611ca7565b61227d84848484612b03565b6122bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b3906141d1565b60405180910390fd5b50505050565b6122ca611f0e565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f906143d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238f90614431565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506000808201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600082141561249f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125b3565b600082905060005b600082146124d15780806124ba9061481e565b915050600a826124ca91906145d7565b91506124a7565b60008167ffffffffffffffff8111156124ed576124ec61495e565b5b6040519080825280601f01601f19166020018201604052801561251f5781602001600182028036833780820191505090505b5090505b600085146125ac576001826125389190614662565b9150600a856125479190614871565b60306125539190614581565b60f81b8183815181106125695761256861492f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125a591906145d7565b9450612523565b8093505050505b919050565b606082826040516020016125cd929190613e1f565b604051602081830303815290604052905092915050565b6060600082519050600081141561260d5760405180602001604052806000815250915050612777565b6000600360028361261e9190614581565b61262891906145d7565b60046126349190614608565b905060006020826126459190614581565b67ffffffffffffffff81111561265e5761265d61495e565b5b6040519080825280601f01601f1916602001820160405280156126905781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001615644604091399050600181016020830160005b868110156127345760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b905080845260048401935050506126bb565b50600386066001811461274e576002811461275e57612769565b613d3d60f01b6002830352612769565b603d60f81b60018303525b508484525050819450505050505b919050565b60606000600283600261278f9190614608565b6127999190614581565b67ffffffffffffffff8111156127b2576127b161495e565b5b6040519080825280601f01601f1916602001820160405280156127e45781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061281c5761281b61492f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106128805761287f61492f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026128c09190614608565b6128ca9190614581565b90505b600181111561296a577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061290c5761290b61492f565b5b1a60f81b8282815181106129235761292261492f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061296390614791565b90506128cd565b50600084146129ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a590614191565b60405180910390fd5b8091505092915050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a2b5750612a2a82612c9a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b612ab28383612d04565b612abf6000848484612b03565b612afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af5906141d1565b60405180910390fd5b505050565b6000612b248473ffffffffffffffffffffffffffffffffffffffff16612ede565b15612c8d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b4d611b51565b8786866040518563ffffffff1660e01b8152600401612b6f94939291906140df565b602060405180830381600087803b158015612b8957600080fd5b505af1925050508015612bba57506040513d601f19601f82011682018060405250810190612bb791906133ab565b60015b612c3d573d8060008114612bea576040519150601f19603f3d011682016040523d82523d6000602084013e612bef565b606091505b50600081511415612c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2c906141d1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c92565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6b90614351565b60405180910390fd5b612d7d81612a32565b15612dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db490614231565b60405180910390fd5b612dc960008383612a9e565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e199190614581565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612eda60008383612aa3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612f0d906147bb565b90600052602060002090601f016020900481019282612f2f5760008555612f76565b82601f10612f4857805160ff1916838001178555612f76565b82800160010185558215612f76579182015b82811115612f75578251825591602001919060010190612f5a565b5b509050612f839190612fa9565b5090565b6040518060800160405280600490602082028036833780820191505090505090565b5b80821115612fc2576000816000905550600101612faa565b5090565b6000612fd9612fd4846144c7565b6144a2565b905082815260208101848484011115612ff557612ff4614992565b5b61300084828561474f565b509392505050565b600061301b613016846144f8565b6144a2565b90508281526020810184848401111561303757613036614992565b5b61304284828561474f565b509392505050565b600081359050613059816155b9565b92915050565b60008151905061306e816155b9565b92915050565b600081359050613083816155d0565b92915050565b600081359050613098816155e7565b92915050565b6000815190506130ad816155e7565b92915050565b600082601f8301126130c8576130c761498d565b5b81356130d8848260208601612fc6565b91505092915050565b600082601f8301126130f6576130f561498d565b5b8135613106848260208601613008565b91505092915050565b60008135905061311e816155fe565b92915050565b60008135905061313381615615565b92915050565b6000813590506131488161562c565b92915050565b6000602082840312156131645761316361499c565b5b60006131728482850161304a565b91505092915050565b6000602082840312156131915761319061499c565b5b600061319f8482850161305f565b91505092915050565b600080604083850312156131bf576131be61499c565b5b60006131cd8582860161304a565b92505060206131de8582860161304a565b9150509250929050565b6000806000606084860312156132015761320061499c565b5b600061320f8682870161304a565b93505060206132208682870161304a565b925050604061323186828701613124565b9150509250925092565b600080600080608085870312156132555761325461499c565b5b60006132638782880161304a565b94505060206132748782880161304a565b935050604061328587828801613124565b925050606085013567ffffffffffffffff8111156132a6576132a5614997565b5b6132b2878288016130b3565b91505092959194509250565b600080604083850312156132d5576132d461499c565b5b60006132e38582860161304a565b92505060206132f485828601613074565b9150509250929050565b600080604083850312156133155761331461499c565b5b60006133238582860161304a565b925050602061333485828601613124565b9150509250929050565b600080604083850312156133555761335461499c565b5b60006133638582860161304a565b925050602061337485828601613139565b9150509250929050565b6000602082840312156133945761339361499c565b5b60006133a284828501613089565b91505092915050565b6000602082840312156133c1576133c061499c565b5b60006133cf8482850161309e565b91505092915050565b600080600080608085870312156133f2576133f161499c565b5b600085013567ffffffffffffffff8111156134105761340f614997565b5b61341c878288016130e1565b945050602085013567ffffffffffffffff81111561343d5761343c614997565b5b613449878288016130e1565b935050604085013567ffffffffffffffff81111561346a57613469614997565b5b613476878288016130e1565b925050606085013567ffffffffffffffff81111561349757613496614997565b5b6134a3878288016130e1565b91505092959194509250565b6000602082840312156134c5576134c461499c565b5b60006134d38482850161310f565b91505092915050565b6000602082840312156134f2576134f161499c565b5b600061350084828501613124565b91505092915050565b600080604083850312156135205761351f61499c565b5b600061352e85828601613124565b925050602061353f85828601613124565b9150509250929050565b61355281614696565b82525050565b613561816146a8565b82525050565b60006135728261453e565b61357c8185614554565b935061358c81856020860161475e565b613595816149a1565b840191505092915050565b60006135ab82614549565b6135b58185614565565b93506135c581856020860161475e565b6135ce816149a1565b840191505092915050565b60006135e482614549565b6135ee8185614576565b93506135fe81856020860161475e565b80840191505092915050565b60008154613617816147bb565b6136218186614576565b9450600182166000811461363c576001811461364d57613680565b60ff19831686528186019350613680565b61365685614529565b60005b8381101561367857815481890152600182019150602081019050613659565b838801955050505b50505092915050565b6000613696602083614565565b91506136a1826149b2565b602082019050919050565b60006136b9604083614576565b91506136c4826149db565b604082019050919050565b60006136dc602d83614565565b91506136e782614a2a565b604082019050919050565b60006136ff601083614576565b915061370a82614a79565b601082019050919050565b6000613722601283614576565b915061372d82614aa2565b601282019050919050565b6000613745601083614576565b915061375082614acb565b601082019050919050565b6000613768603283614565565b915061377382614af4565b604082019050919050565b600061378b605283614576565b915061379682614b43565b605282019050919050565b60006137ae602683614565565b91506137b982614bb8565b604082019050919050565b60006137d1600283614576565b91506137dc82614c07565b600282019050919050565b60006137f4602583614565565b91506137ff82614c30565b604082019050919050565b6000613817601c83614565565b915061382282614c7f565b602082019050919050565b600061383a600383614576565b915061384582614ca8565b600382019050919050565b600061385d600183614576565b915061386882614cd1565b600182019050919050565b6000613880602483614565565b915061388b82614cfa565b604082019050919050565b60006138a3601983614565565b91506138ae82614d49565b602082019050919050565b60006138c6603683614576565b91506138d182614d72565b603682019050919050565b60006138e9602283614576565b91506138f482614dc1565b602282019050919050565b600061390c600f83614576565b915061391782614e10565b600f82019050919050565b600061392f604983614576565b915061393a82614e39565b604982019050919050565b6000613952601e83614565565b915061395d82614eae565b602082019050919050565b6000613975600483614576565b915061398082614ed7565b600482019050919050565b6000613998602983614565565b91506139a382614f00565b604082019050919050565b60006139bb602783614565565b91506139c682614f4f565b604082019050919050565b60006139de601883614565565b91506139e982614f9e565b602082019050919050565b6000613a01601a83614565565b9150613a0c82614fc7565b602082019050919050565b6000613a24603e83614565565b9150613a2f82614ff0565b604082019050919050565b6000613a47602083614565565b9150613a528261503f565b602082019050919050565b6000613a6a600b83614576565b9150613a7582615068565b600b82019050919050565b6000613a8d600183614576565b9150613a9882615091565b600182019050919050565b6000613ab0602083614565565b9150613abb826150ba565b602082019050919050565b6000613ad3600b83614576565b9150613ade826150e3565b600b82019050919050565b6000613af6602183614576565b9150613b018261510c565b602182019050919050565b6000613b19602683614576565b9150613b248261515b565b602682019050919050565b6000613b3c600b83614576565b9150613b47826151aa565b600b82019050919050565b6000613b5f601883614565565b9150613b6a826151d3565b602082019050919050565b6000613b82600d83614576565b9150613b8d826151fc565b600d82019050919050565b6000613ba5602183614565565b9150613bb082615225565b604082019050919050565b6000613bc8604283614576565b9150613bd382615274565b604282019050919050565b6000613beb600f83614576565b9150613bf6826152e9565b600f82019050919050565b6000613c0e601d83614576565b9150613c1982615312565b601d82019050919050565b6000613c31605083614576565b9150613c3c8261533b565b605082019050919050565b6000613c54601b83614576565b9150613c5f826153b0565b601b82019050919050565b6000613c77602a83614565565b9150613c82826153d9565b604082019050919050565b6000613c9a602283614576565b9150613ca582615428565b602282019050919050565b6000613cbd602e83614565565b9150613cc882615477565b604082019050919050565b6000613ce0601f83614565565b9150613ceb826154c6565b602082019050919050565b6000613d03601983614565565b9150613d0e826154ef565b602082019050919050565b6000613d26601b83614576565b9150613d3182615518565b601b82019050919050565b6000613d49600e83614576565b9150613d5482615541565b600e82019050919050565b6000613d6c603283614576565b9150613d778261556a565b603282019050919050565b613d8b8161473d565b82525050565b613d9a8161470e565b82525050565b613db1613dac8261470e565b614867565b82525050565b613dc081614718565b82525050565b6000613dd1826136f2565b9150613ddd8287613da0565b602082019150613ded8286613da0565b602082019150613dfd8285613da0565b602082019150613e0d8284613da0565b60208201915081905095945050505050565b6000613e2a826138ff565b9150613e3682856135d9565b9150613e4182613b2f565b9150613e4d82846135d9565b9150613e588261382d565b91508190509392505050565b6000613e6f82613968565b9150613e7b82846135d9565b9150613e8682613ac6565b915081905092915050565b6000613e9c82613a5d565b9150613ea882846135d9565b9150613eb382613850565b915081905092915050565b6000613ec982613b0c565b9150613ed4826136ac565b9150613edf82613922565b9150613eeb82886135d9565b9150613ef682613c24565b9150613f0282876135d9565b9150613f0d82613738565b9150613f1982866135d9565b9150613f2482613d19565b9150613f3082856135d9565b9150613f3b82613b75565b9150613f4782846135d9565b9150613f5282613ae9565b9150613f5d8261377e565b91508190509695505050505050565b6000613f7782613c01565b9150613f8382846135d9565b915081905092915050565b6000613f9982613c47565b9150613fa5828b6135d9565b9150613fb082613c8d565b9150613fbc828a61360a565b9150613fc7826138dc565b9150613fd382896135d9565b9150613fde82613bde565b9150613fea82886135d9565b9150613ff582613d5f565b9150614001828761360a565b915061400c82613715565b9150614018828661360a565b915061402382613bbb565b915061402f82856135d9565b915061403a826137c4565b915061404682846135d9565b915061405182613a80565b91508190509998505050505050505050565b600061406e82613d3c565b915061407a82886135d9565b915061408682876135d9565b915061409282866135d9565b915061409e82856135d9565b91506140aa82846135d9565b91506140b5826138b9565b91508190509695505050505050565b60006020820190506140d96000830184613549565b92915050565b60006080820190506140f46000830187613549565b6141016020830186613549565b61410e6040830185613d91565b81810360608301526141208184613567565b905095945050505050565b60006040820190506141406000830185613549565b61414d6020830184613d91565b9392505050565b60006020820190506141696000830184613558565b92915050565b6000602082019050818103600083015261418981846135a0565b905092915050565b600060208201905081810360008301526141aa81613689565b9050919050565b600060208201905081810360008301526141ca816136cf565b9050919050565b600060208201905081810360008301526141ea8161375b565b9050919050565b6000602082019050818103600083015261420a816137a1565b9050919050565b6000602082019050818103600083015261422a816137e7565b9050919050565b6000602082019050818103600083015261424a8161380a565b9050919050565b6000602082019050818103600083015261426a81613873565b9050919050565b6000602082019050818103600083015261428a81613896565b9050919050565b600060208201905081810360008301526142aa81613945565b9050919050565b600060208201905081810360008301526142ca8161398b565b9050919050565b600060208201905081810360008301526142ea816139ae565b9050919050565b6000602082019050818103600083015261430a816139d1565b9050919050565b6000602082019050818103600083015261432a816139f4565b9050919050565b6000602082019050818103600083015261434a81613a17565b9050919050565b6000602082019050818103600083015261436a81613a3a565b9050919050565b6000602082019050818103600083015261438a81613aa3565b9050919050565b600060208201905081810360008301526143aa81613b52565b9050919050565b600060208201905081810360008301526143ca81613b98565b9050919050565b600060208201905081810360008301526143ea81613c6a565b9050919050565b6000602082019050818103600083015261440a81613cb0565b9050919050565b6000602082019050818103600083015261442a81613cd3565b9050919050565b6000602082019050818103600083015261444a81613cf6565b9050919050565b60006020820190506144666000830184613d82565b92915050565b60006020820190506144816000830184613d91565b92915050565b600060208201905061449c6000830184613db7565b92915050565b60006144ac6144bd565b90506144b882826147ed565b919050565b6000604051905090565b600067ffffffffffffffff8211156144e2576144e161495e565b5b6144eb826149a1565b9050602081019050919050565b600067ffffffffffffffff8211156145135761451261495e565b5b61451c826149a1565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061458c8261470e565b91506145978361470e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145cc576145cb6148a2565b5b828201905092915050565b60006145e28261470e565b91506145ed8361470e565b9250826145fd576145fc6148d1565b5b828204905092915050565b60006146138261470e565b915061461e8361470e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614657576146566148a2565b5b828202905092915050565b600061466d8261470e565b91506146788361470e565b92508282101561468b5761468a6148a2565b5b828203905092915050565b60006146a1826146ee565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b6000614748826146e0565b9050919050565b82818337600083830152505050565b60005b8381101561477c578082015181840152602081019050614761565b8381111561478b576000848401525b50505050565b600061479c8261470e565b915060008214156147b0576147af6148a2565b5b600182039050919050565b600060028204905060018216806147d357607f821691505b602082108114156147e7576147e6614900565b5b50919050565b6147f6826149a1565b810181811067ffffffffffffffff821117156148155761481461495e565b5b80604052505050565b60006148298261470e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561485c5761485b6148a2565b5b600182019050919050565b6000819050919050565b600061487c8261470e565b91506148878361470e565b925082614897576148966148d1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f3c7376672076696577426f783d22302030203130303020313030302220786d6c60008201527f6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e602082015250565b7f416c6c205465787475726520616e64204875657320746f6b656e73206861766560008201527f206265656e206d696e7465642e00000000000000000000000000000000000000602082015250565b7f5465787475726520616e64204875657300000000000000000000000000000000600082015250565b7f222c2265787465726e616c5f75726c223a220000000000000000000000000000600082015250565b7f2220737572666163655363616c653d2200000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f3c7265637420783d22302220793d2230222077696474683d223130303022206860008201527f65696768743d223130303022207374796c653d2266696c7465723a75726c282360208201527f746578747572652922202f3e3c2f7376673e0000000000000000000000000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f227d2c0000000000000000000000000000000000000000000000000000000000600082015250565b7f2500000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f7b2274726169745f74797065223a22546f6b656e204c6963656e7365222c227660008201527f616c7565223a2243432042592d4e4320342e30227d5d00000000000000000000602082015250565b7f222c22726f79616c7479496e666f223a7b22617274697374416464726573732260008201527f3a22000000000000000000000000000000000000000000000000000000000000602082015250565b7f7b2274726169745f74797065223a220000000000000000000000000000000000600082015250565b7f3c66696c7465722069643d2274657874757265223e3c666554757262756c656e60008201527f636520747970653d226672616374616c4e6f697365222062617365467265717560208201527f656e63793d22302e300000000000000000000000000000000000000000000000604082015250565b7f4f6e6c7920424c4f4e4b5320302d3639312061726520656c696769626c650000600082015250565b7f68736c2800000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f52657175657374696e67206163636f756e74206d757374206f776e207468652060008201527f424c4f4e4b532e00000000000000000000000000000000000000000000000000602082015250565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b7f5468617420424c4f4e4b5320686173206265656e20757365642e000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f68736c28302c2030252c20000000000000000000000000000000000000000000600082015250565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f2c203735252c2035302529000000000000000000000000000000000000000000600082015250565b7f22202f3e3c2f6665446966667573654c69676874696e673e3c2f66696c74657260008201527f3e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d22757460008201527f662d38223f3e0000000000000000000000000000000000000000000000000000602082015250565b7f222c2276616c7565223a22000000000000000000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f2220656c65766174696f6e3d2200000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f222c227363726970745f74797065223a22536f6c6964697479222c22696d616760008201527f655f74797065223a2247656e6572617469766520535647222c22696d6167652260208201527f3a22000000000000000000000000000000000000000000000000000000000000604082015250565b7f222c22726f79616c7479425053223a0000000000000000000000000000000000600082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f2220726573756c743d226e6f69736522206e756d4f6374617665733d2235222060008201527f2f3e3c6665446966667573654c69676874696e6720696e3d226e6f697365222060208201527f6c69676874696e672d636f6c6f723d2200000000000000000000000000000000604082015250565b7f7b226e616d65223a225465787475726520616e64204875657320230000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f222c22617274697374223a224d6174746f222c226465736372697074696f6e2260008201527f3a22000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b7f223e3c666544697374616e744c6967687420617a696d7574683d220000000000600082015250565b7f2261747472696275746573223a5b000000000000000000000000000000000000600082015250565b7f7d2c22636f6c6c656374696f6e5f6e616d65223a225465787475726520616e6460008201527f2048756573222c2277656273697465223a220000000000000000000000000000602082015250565b6155c281614696565b81146155cd57600080fd5b50565b6155d9816146a8565b81146155e457600080fd5b50565b6155f0816146b4565b81146155fb57600080fd5b50565b615607816146e0565b811461561257600080fd5b50565b61561e8161470e565b811461562957600080fd5b50565b61563581614725565b811461564057600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220f1a95882c01dafe0af95fc1ef4acdc848842f177cc86d255c7098c7c848fa56a64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80637284e41611610104578063b9c9d93a116100a2578063d7eb3f3a11610071578063d7eb3f3a1461051d578063dbe7e3bd1461053b578063e985e9c51461056b578063f2fde38b1461059b576101cf565b8063b9c9d93a14610495578063beb0a416146104b3578063befb3661146104d1578063c87b56dd146104ed576101cf565b806395d89b41116100de57806395d89b4114610421578063a22cb4651461043f578063b88d4fde1461045b578063b99edfb214610477576101cf565b80637284e416146103c95780638da5cb5b146103e75780638eebeb0d14610405576101cf565b806342842e0e1161017157806361f60aff1161014b57806361f60aff146103415780636352211e1461035f57806370a082311461038f578063715018a6146103bf576101cf565b806342842e0e146102eb5780634325fa23146103075780635232a8d514610323576101cf565b8063095ea7b3116101ad578063095ea7b3146102525780630f21ec371461026e57806323b872dd1461029e5780632a55205a146102ba576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e9919061337e565b6105b7565b6040516101fb9190614154565b60405180910390f35b61020c6105c9565b604051610219919061416f565b60405180910390f35b61023c600480360381019061023791906134dc565b61065b565b60405161024991906140c4565b60405180910390f35b61026c600480360381019061026791906132fe565b6106a1565b005b610288600480360381019061028391906134dc565b6107b9565b604051610295919061446c565b60405180910390f35b6102b860048036038101906102b391906131e8565b6107d1565b005b6102d460048036038101906102cf9190613509565b610831565b6040516102e292919061412b565b60405180910390f35b610305600480360381019061030091906131e8565b610a1c565b005b610321600480360381019061031c91906134af565b610a3c565b005b61032b610d23565b604051610338919061416f565b60405180910390f35b610349610db1565b60405161035691906140c4565b60405180910390f35b610379600480360381019061037491906134dc565b610dd7565b60405161038691906140c4565b60405180910390f35b6103a960048036038101906103a4919061314e565b610e89565b6040516103b6919061446c565b60405180910390f35b6103c7610f41565b005b6103d1610f55565b6040516103de919061416f565b60405180910390f35b6103ef610fe3565b6040516103fc91906140c4565b60405180910390f35b61041f600480360381019061041a91906133d8565b61100d565b005b610429611077565b604051610436919061416f565b60405180910390f35b610459600480360381019061045491906132be565b611109565b005b6104756004803603810190610470919061323b565b61111f565b005b61047f611181565b60405161048c919061416f565b60405180910390f35b61049d61120f565b6040516104aa919061446c565b60405180910390f35b6104bb611215565b6040516104c8919061416f565b60405180910390f35b6104eb60048036038101906104e6919061333e565b6112a3565b005b610507600480360381019061050291906134dc565b611331565b604051610514919061416f565b60405180910390f35b6105256118bb565b60405161053291906140c4565b60405180910390f35b610555600480360381019061055091906134dc565b6118e1565b6040516105629190614487565b60405180910390f35b610585600480360381019061058091906131a8565b61190c565b6040516105929190614154565b60405180910390f35b6105b560048036038101906105b0919061314e565b6119a0565b005b60006105c282611a24565b9050919050565b6060600280546105d8906147bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610604906147bb565b80156106515780601f1061062657610100808354040283529160200191610651565b820191906000526020600020905b81548152906001019060200180831161063457829003601f168201915b5050505050905090565b600061066682611b06565b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106ac82610dd7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561071d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610714906143b1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661073c611b51565b73ffffffffffffffffffffffffffffffffffffffff16148061076b575061076a81610765611b51565b61190c565b5b6107aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a190614331565b60405180910390fd5b6107b48383611b59565b505050565b60126020528060005260406000206000915090505481565b6107e26107dc611b51565b82611c12565b610821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610818906143f1565b60405180910390fd5b61082c838383611ca7565b505050565b6000806000600160008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156109c75760006040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006109d1611f0e565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866109fd9190614608565b610a0791906145d7565b90508160000151819350935050509250929050565b610a378383836040518060200160405280600081525061111f565b505050565b60026009541415610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990614411565b60405180910390fd5b60026009819055506102b38161ffff161115610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90614291565b60405180910390fd5b600060138261ffff166102bc8110610aee57610aed61492f565b5b602091828204019190069054906101000a900460ff1660ff1614610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e90614311565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e826040518263ffffffff1660e01b8152600401610ba29190614451565b60206040518083038186803b158015610bba57600080fd5b505afa158015610bce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf2919061317b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c56906142d1565b60405180910390fd5b610100610c6c6011611f18565b10610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906141b1565b60405180910390fd5b6000610cb86011611f18565b9050610cc46011611f26565b610cd2818361ffff16611f3c565b600160138361ffff166102bc8110610ced57610cec61492f565b5b602091828204019190066101000a81548160ff021916908360ff160217905550610d173382611f97565b50600160098190555050565b600c8054610d30906147bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5c906147bb565b8015610da95780601f10610d7e57610100808354040283529160200191610da9565b820191906000526020600020905b815481529060010190602001808311610d8c57829003601f168201915b505050505081565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7790614391565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef1906142b1565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f49611fb5565b610f536000612033565b565b600a8054610f62906147bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8e906147bb565b8015610fdb5780601f10610fb057610100808354040283529160200191610fdb565b820191906000526020600020905b815481529060010190602001808311610fbe57829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611015611fb5565b83600a908051906020019061102b929190612f01565b5082600b9080519060200190611042929190612f01565b5081600c9080519060200190611059929190612f01565b5080600d9080519060200190611070929190612f01565b5050505050565b606060038054611086906147bb565b80601f01602080910402602001604051908101604052809291908181526020018280546110b2906147bb565b80156110ff5780601f106110d4576101008083540402835291602001916110ff565b820191906000526020600020905b8154815290600101906020018083116110e257829003601f168201915b5050505050905090565b61111b611114611b51565b83836120f9565b5050565b61113061112a611b51565b83611c12565b61116f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611166906143f1565b60405180910390fd5b61117b84848484612266565b50505050565b600d805461118e906147bb565b80601f01602080910402602001604051908101604052809291908181526020018280546111ba906147bb565b80156112075780601f106111dc57610100808354040283529160200191611207565b820191906000526020600020905b8154815290600101906020018083116111ea57829003601f168201915b505050505081565b600f5481565b600b8054611222906147bb565b80601f016020809104026020016040519081016040528092919081815260200182805461124e906147bb565b801561129b5780601f106112705761010080835404028352916020019161129b565b820191906000526020600020905b81548152906001019060200180831161127e57829003601f168201915b505050505081565b6112ab611fb5565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806bffffffffffffffffffffffff16600f8190555061132d600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826122c2565b5050565b606061133d6011611f18565b821061137e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611375906142f1565b60405180910390fd5b600060405180602001604052806000815250905060f08310156113e2576113bc600a600f856113ad9190614608565b6113b791906145d7565b612457565b6040516020016113cc9190613e64565b6040516020818303038152906040529050611425565b611403600660ef856113f49190614662565b6113fe9190614608565b612457565b6040516020016114139190613e91565b60405160208183030381529060405290505b600060126000858152602001908152602001600020549050611445612f87565b60016103e7836114559190614871565b61145f9190614581565b816000600481106114735761147261492f565b5b6020020181815250506103e88261148a91906145d7565b91506001600a8361149b9190614871565b6114a59190614581565b816001600481106114b9576114b861492f565b5b602002018181525050600a826114cf91906145d7565b9150610168826114df9190614871565b816002600481106114f3576114f261492f565b5b6020020181815250506103e88261150a91906145d7565b9150600160648361151b9190614871565b6115259190614581565b816003600481106115395761153861492f565b5b60200201818152505060006115658260006004811061155b5761155a61492f565b5b6020020151612457565b846115878460016004811061157d5761157c61492f565b5b6020020151612457565b6115a88560026004811061159e5761159d61492f565b5b6020020151612457565b6115c9866003600481106115bf576115be61492f565b5b6020020151612457565b6040516020016115dd959493929190613ebe565b6040516020818303038152906040529050600061164f6040518060400160405280600781526020017f546578747572650000000000000000000000000000000000000000000000000081525061164a856000600481106116405761163f61492f565b5b6020020151612457565b6125b8565b61168e6040518060400160405280600381526020017f4875650000000000000000000000000000000000000000000000000000000000815250876125b8565b6116ed6040518060400160405280600581526020017f5363616c650000000000000000000000000000000000000000000000000000008152506116e8876001600481106116de576116dd61492f565b5b6020020151612457565b6125b8565b61174c6040518060400160405280600581526020017f416e676c650000000000000000000000000000000000000000000000000000008152506117478860026004811061173d5761173c61492f565b5b6020020151612457565b6125b8565b6117ab6040518060400160405280600881526020017f44697374616e63650000000000000000000000000000000000000000000000008152506117a68960036004811061179c5761179b61492f565b5b6020020151612457565b6125b8565b6040516020016117bf959493929190614063565b604051602081830303815290604052905060006117db836125e4565b6040516020016117eb9190613f6c565b6040516020818303038152906040529050600061188b61180a8a612457565b600a61184f600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16601461277c565b61185a600f54612457565b600b600d888a604051602001611877989796959493929190613f8e565b6040516020818303038152906040526125e4565b60405160200161189b9190613f6c565b604051602081830303815290604052905080975050505050505050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6013816102bc81106118f257600080fd5b60209182820401919006915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119a8611fb5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f906141f1565b60405180910390fd5b611a2181612033565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611aef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611aff5750611afe826129b8565b5b9050919050565b611b0f81612a32565b611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4590614391565b60405180910390fd5b50565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bcc83610dd7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611c1e83610dd7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c605750611c5f818561190c565b5b80611c9e57508373ffffffffffffffffffffffffffffffffffffffff16611c868461065b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cc782610dd7565b73ffffffffffffffffffffffffffffffffffffffff1614611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490614211565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8490614251565b60405180910390fd5b611d98838383612a9e565b611da3600082611b59565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df39190614662565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e4a9190614581565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f09838383612aa3565b505050565b6000612710905090565b600081600001549050919050565b6001816000016000828254019250508190555050565b6402540be40081834342604051602001611f599493929190613dc6565b6040516020818303038152906040528051906020012060001c611f7c91906145d7565b60126000848152602001908152602001600020819055505050565b611fb1828260405180602001604052806000815250612aa8565b5050565b611fbd611b51565b73ffffffffffffffffffffffffffffffffffffffff16611fdb610fe3565b73ffffffffffffffffffffffffffffffffffffffff1614612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890614371565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f90614271565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122599190614154565b60405180910390a3505050565b612271848484611ca7565b61227d84848484612b03565b6122bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b3906141d1565b60405180910390fd5b50505050565b6122ca611f0e565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f906143d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238f90614431565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506000808201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600082141561249f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125b3565b600082905060005b600082146124d15780806124ba9061481e565b915050600a826124ca91906145d7565b91506124a7565b60008167ffffffffffffffff8111156124ed576124ec61495e565b5b6040519080825280601f01601f19166020018201604052801561251f5781602001600182028036833780820191505090505b5090505b600085146125ac576001826125389190614662565b9150600a856125479190614871565b60306125539190614581565b60f81b8183815181106125695761256861492f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125a591906145d7565b9450612523565b8093505050505b919050565b606082826040516020016125cd929190613e1f565b604051602081830303815290604052905092915050565b6060600082519050600081141561260d5760405180602001604052806000815250915050612777565b6000600360028361261e9190614581565b61262891906145d7565b60046126349190614608565b905060006020826126459190614581565b67ffffffffffffffff81111561265e5761265d61495e565b5b6040519080825280601f01601f1916602001820160405280156126905781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001615644604091399050600181016020830160005b868110156127345760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b905080845260048401935050506126bb565b50600386066001811461274e576002811461275e57612769565b613d3d60f01b6002830352612769565b603d60f81b60018303525b508484525050819450505050505b919050565b60606000600283600261278f9190614608565b6127999190614581565b67ffffffffffffffff8111156127b2576127b161495e565b5b6040519080825280601f01601f1916602001820160405280156127e45781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061281c5761281b61492f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106128805761287f61492f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026128c09190614608565b6128ca9190614581565b90505b600181111561296a577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061290c5761290b61492f565b5b1a60f81b8282815181106129235761292261492f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061296390614791565b90506128cd565b50600084146129ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a590614191565b60405180910390fd5b8091505092915050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a2b5750612a2a82612c9a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b612ab28383612d04565b612abf6000848484612b03565b612afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af5906141d1565b60405180910390fd5b505050565b6000612b248473ffffffffffffffffffffffffffffffffffffffff16612ede565b15612c8d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b4d611b51565b8786866040518563ffffffff1660e01b8152600401612b6f94939291906140df565b602060405180830381600087803b158015612b8957600080fd5b505af1925050508015612bba57506040513d601f19601f82011682018060405250810190612bb791906133ab565b60015b612c3d573d8060008114612bea576040519150601f19603f3d011682016040523d82523d6000602084013e612bef565b606091505b50600081511415612c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2c906141d1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c92565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6b90614351565b60405180910390fd5b612d7d81612a32565b15612dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db490614231565b60405180910390fd5b612dc960008383612a9e565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e199190614581565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612eda60008383612aa3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612f0d906147bb565b90600052602060002090601f016020900481019282612f2f5760008555612f76565b82601f10612f4857805160ff1916838001178555612f76565b82800160010185558215612f76579182015b82811115612f75578251825591602001919060010190612f5a565b5b509050612f839190612fa9565b5090565b6040518060800160405280600490602082028036833780820191505090505090565b5b80821115612fc2576000816000905550600101612faa565b5090565b6000612fd9612fd4846144c7565b6144a2565b905082815260208101848484011115612ff557612ff4614992565b5b61300084828561474f565b509392505050565b600061301b613016846144f8565b6144a2565b90508281526020810184848401111561303757613036614992565b5b61304284828561474f565b509392505050565b600081359050613059816155b9565b92915050565b60008151905061306e816155b9565b92915050565b600081359050613083816155d0565b92915050565b600081359050613098816155e7565b92915050565b6000815190506130ad816155e7565b92915050565b600082601f8301126130c8576130c761498d565b5b81356130d8848260208601612fc6565b91505092915050565b600082601f8301126130f6576130f561498d565b5b8135613106848260208601613008565b91505092915050565b60008135905061311e816155fe565b92915050565b60008135905061313381615615565b92915050565b6000813590506131488161562c565b92915050565b6000602082840312156131645761316361499c565b5b60006131728482850161304a565b91505092915050565b6000602082840312156131915761319061499c565b5b600061319f8482850161305f565b91505092915050565b600080604083850312156131bf576131be61499c565b5b60006131cd8582860161304a565b92505060206131de8582860161304a565b9150509250929050565b6000806000606084860312156132015761320061499c565b5b600061320f8682870161304a565b93505060206132208682870161304a565b925050604061323186828701613124565b9150509250925092565b600080600080608085870312156132555761325461499c565b5b60006132638782880161304a565b94505060206132748782880161304a565b935050604061328587828801613124565b925050606085013567ffffffffffffffff8111156132a6576132a5614997565b5b6132b2878288016130b3565b91505092959194509250565b600080604083850312156132d5576132d461499c565b5b60006132e38582860161304a565b92505060206132f485828601613074565b9150509250929050565b600080604083850312156133155761331461499c565b5b60006133238582860161304a565b925050602061333485828601613124565b9150509250929050565b600080604083850312156133555761335461499c565b5b60006133638582860161304a565b925050602061337485828601613139565b9150509250929050565b6000602082840312156133945761339361499c565b5b60006133a284828501613089565b91505092915050565b6000602082840312156133c1576133c061499c565b5b60006133cf8482850161309e565b91505092915050565b600080600080608085870312156133f2576133f161499c565b5b600085013567ffffffffffffffff8111156134105761340f614997565b5b61341c878288016130e1565b945050602085013567ffffffffffffffff81111561343d5761343c614997565b5b613449878288016130e1565b935050604085013567ffffffffffffffff81111561346a57613469614997565b5b613476878288016130e1565b925050606085013567ffffffffffffffff81111561349757613496614997565b5b6134a3878288016130e1565b91505092959194509250565b6000602082840312156134c5576134c461499c565b5b60006134d38482850161310f565b91505092915050565b6000602082840312156134f2576134f161499c565b5b600061350084828501613124565b91505092915050565b600080604083850312156135205761351f61499c565b5b600061352e85828601613124565b925050602061353f85828601613124565b9150509250929050565b61355281614696565b82525050565b613561816146a8565b82525050565b60006135728261453e565b61357c8185614554565b935061358c81856020860161475e565b613595816149a1565b840191505092915050565b60006135ab82614549565b6135b58185614565565b93506135c581856020860161475e565b6135ce816149a1565b840191505092915050565b60006135e482614549565b6135ee8185614576565b93506135fe81856020860161475e565b80840191505092915050565b60008154613617816147bb565b6136218186614576565b9450600182166000811461363c576001811461364d57613680565b60ff19831686528186019350613680565b61365685614529565b60005b8381101561367857815481890152600182019150602081019050613659565b838801955050505b50505092915050565b6000613696602083614565565b91506136a1826149b2565b602082019050919050565b60006136b9604083614576565b91506136c4826149db565b604082019050919050565b60006136dc602d83614565565b91506136e782614a2a565b604082019050919050565b60006136ff601083614576565b915061370a82614a79565b601082019050919050565b6000613722601283614576565b915061372d82614aa2565b601282019050919050565b6000613745601083614576565b915061375082614acb565b601082019050919050565b6000613768603283614565565b915061377382614af4565b604082019050919050565b600061378b605283614576565b915061379682614b43565b605282019050919050565b60006137ae602683614565565b91506137b982614bb8565b604082019050919050565b60006137d1600283614576565b91506137dc82614c07565b600282019050919050565b60006137f4602583614565565b91506137ff82614c30565b604082019050919050565b6000613817601c83614565565b915061382282614c7f565b602082019050919050565b600061383a600383614576565b915061384582614ca8565b600382019050919050565b600061385d600183614576565b915061386882614cd1565b600182019050919050565b6000613880602483614565565b915061388b82614cfa565b604082019050919050565b60006138a3601983614565565b91506138ae82614d49565b602082019050919050565b60006138c6603683614576565b91506138d182614d72565b603682019050919050565b60006138e9602283614576565b91506138f482614dc1565b602282019050919050565b600061390c600f83614576565b915061391782614e10565b600f82019050919050565b600061392f604983614576565b915061393a82614e39565b604982019050919050565b6000613952601e83614565565b915061395d82614eae565b602082019050919050565b6000613975600483614576565b915061398082614ed7565b600482019050919050565b6000613998602983614565565b91506139a382614f00565b604082019050919050565b60006139bb602783614565565b91506139c682614f4f565b604082019050919050565b60006139de601883614565565b91506139e982614f9e565b602082019050919050565b6000613a01601a83614565565b9150613a0c82614fc7565b602082019050919050565b6000613a24603e83614565565b9150613a2f82614ff0565b604082019050919050565b6000613a47602083614565565b9150613a528261503f565b602082019050919050565b6000613a6a600b83614576565b9150613a7582615068565b600b82019050919050565b6000613a8d600183614576565b9150613a9882615091565b600182019050919050565b6000613ab0602083614565565b9150613abb826150ba565b602082019050919050565b6000613ad3600b83614576565b9150613ade826150e3565b600b82019050919050565b6000613af6602183614576565b9150613b018261510c565b602182019050919050565b6000613b19602683614576565b9150613b248261515b565b602682019050919050565b6000613b3c600b83614576565b9150613b47826151aa565b600b82019050919050565b6000613b5f601883614565565b9150613b6a826151d3565b602082019050919050565b6000613b82600d83614576565b9150613b8d826151fc565b600d82019050919050565b6000613ba5602183614565565b9150613bb082615225565b604082019050919050565b6000613bc8604283614576565b9150613bd382615274565b604282019050919050565b6000613beb600f83614576565b9150613bf6826152e9565b600f82019050919050565b6000613c0e601d83614576565b9150613c1982615312565b601d82019050919050565b6000613c31605083614576565b9150613c3c8261533b565b605082019050919050565b6000613c54601b83614576565b9150613c5f826153b0565b601b82019050919050565b6000613c77602a83614565565b9150613c82826153d9565b604082019050919050565b6000613c9a602283614576565b9150613ca582615428565b602282019050919050565b6000613cbd602e83614565565b9150613cc882615477565b604082019050919050565b6000613ce0601f83614565565b9150613ceb826154c6565b602082019050919050565b6000613d03601983614565565b9150613d0e826154ef565b602082019050919050565b6000613d26601b83614576565b9150613d3182615518565b601b82019050919050565b6000613d49600e83614576565b9150613d5482615541565b600e82019050919050565b6000613d6c603283614576565b9150613d778261556a565b603282019050919050565b613d8b8161473d565b82525050565b613d9a8161470e565b82525050565b613db1613dac8261470e565b614867565b82525050565b613dc081614718565b82525050565b6000613dd1826136f2565b9150613ddd8287613da0565b602082019150613ded8286613da0565b602082019150613dfd8285613da0565b602082019150613e0d8284613da0565b60208201915081905095945050505050565b6000613e2a826138ff565b9150613e3682856135d9565b9150613e4182613b2f565b9150613e4d82846135d9565b9150613e588261382d565b91508190509392505050565b6000613e6f82613968565b9150613e7b82846135d9565b9150613e8682613ac6565b915081905092915050565b6000613e9c82613a5d565b9150613ea882846135d9565b9150613eb382613850565b915081905092915050565b6000613ec982613b0c565b9150613ed4826136ac565b9150613edf82613922565b9150613eeb82886135d9565b9150613ef682613c24565b9150613f0282876135d9565b9150613f0d82613738565b9150613f1982866135d9565b9150613f2482613d19565b9150613f3082856135d9565b9150613f3b82613b75565b9150613f4782846135d9565b9150613f5282613ae9565b9150613f5d8261377e565b91508190509695505050505050565b6000613f7782613c01565b9150613f8382846135d9565b915081905092915050565b6000613f9982613c47565b9150613fa5828b6135d9565b9150613fb082613c8d565b9150613fbc828a61360a565b9150613fc7826138dc565b9150613fd382896135d9565b9150613fde82613bde565b9150613fea82886135d9565b9150613ff582613d5f565b9150614001828761360a565b915061400c82613715565b9150614018828661360a565b915061402382613bbb565b915061402f82856135d9565b915061403a826137c4565b915061404682846135d9565b915061405182613a80565b91508190509998505050505050505050565b600061406e82613d3c565b915061407a82886135d9565b915061408682876135d9565b915061409282866135d9565b915061409e82856135d9565b91506140aa82846135d9565b91506140b5826138b9565b91508190509695505050505050565b60006020820190506140d96000830184613549565b92915050565b60006080820190506140f46000830187613549565b6141016020830186613549565b61410e6040830185613d91565b81810360608301526141208184613567565b905095945050505050565b60006040820190506141406000830185613549565b61414d6020830184613d91565b9392505050565b60006020820190506141696000830184613558565b92915050565b6000602082019050818103600083015261418981846135a0565b905092915050565b600060208201905081810360008301526141aa81613689565b9050919050565b600060208201905081810360008301526141ca816136cf565b9050919050565b600060208201905081810360008301526141ea8161375b565b9050919050565b6000602082019050818103600083015261420a816137a1565b9050919050565b6000602082019050818103600083015261422a816137e7565b9050919050565b6000602082019050818103600083015261424a8161380a565b9050919050565b6000602082019050818103600083015261426a81613873565b9050919050565b6000602082019050818103600083015261428a81613896565b9050919050565b600060208201905081810360008301526142aa81613945565b9050919050565b600060208201905081810360008301526142ca8161398b565b9050919050565b600060208201905081810360008301526142ea816139ae565b9050919050565b6000602082019050818103600083015261430a816139d1565b9050919050565b6000602082019050818103600083015261432a816139f4565b9050919050565b6000602082019050818103600083015261434a81613a17565b9050919050565b6000602082019050818103600083015261436a81613a3a565b9050919050565b6000602082019050818103600083015261438a81613aa3565b9050919050565b600060208201905081810360008301526143aa81613b52565b9050919050565b600060208201905081810360008301526143ca81613b98565b9050919050565b600060208201905081810360008301526143ea81613c6a565b9050919050565b6000602082019050818103600083015261440a81613cb0565b9050919050565b6000602082019050818103600083015261442a81613cd3565b9050919050565b6000602082019050818103600083015261444a81613cf6565b9050919050565b60006020820190506144666000830184613d82565b92915050565b60006020820190506144816000830184613d91565b92915050565b600060208201905061449c6000830184613db7565b92915050565b60006144ac6144bd565b90506144b882826147ed565b919050565b6000604051905090565b600067ffffffffffffffff8211156144e2576144e161495e565b5b6144eb826149a1565b9050602081019050919050565b600067ffffffffffffffff8211156145135761451261495e565b5b61451c826149a1565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061458c8261470e565b91506145978361470e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145cc576145cb6148a2565b5b828201905092915050565b60006145e28261470e565b91506145ed8361470e565b9250826145fd576145fc6148d1565b5b828204905092915050565b60006146138261470e565b915061461e8361470e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614657576146566148a2565b5b828202905092915050565b600061466d8261470e565b91506146788361470e565b92508282101561468b5761468a6148a2565b5b828203905092915050565b60006146a1826146ee565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b6000614748826146e0565b9050919050565b82818337600083830152505050565b60005b8381101561477c578082015181840152602081019050614761565b8381111561478b576000848401525b50505050565b600061479c8261470e565b915060008214156147b0576147af6148a2565b5b600182039050919050565b600060028204905060018216806147d357607f821691505b602082108114156147e7576147e6614900565b5b50919050565b6147f6826149a1565b810181811067ffffffffffffffff821117156148155761481461495e565b5b80604052505050565b60006148298261470e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561485c5761485b6148a2565b5b600182019050919050565b6000819050919050565b600061487c8261470e565b91506148878361470e565b925082614897576148966148d1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f3c7376672076696577426f783d22302030203130303020313030302220786d6c60008201527f6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e602082015250565b7f416c6c205465787475726520616e64204875657320746f6b656e73206861766560008201527f206265656e206d696e7465642e00000000000000000000000000000000000000602082015250565b7f5465787475726520616e64204875657300000000000000000000000000000000600082015250565b7f222c2265787465726e616c5f75726c223a220000000000000000000000000000600082015250565b7f2220737572666163655363616c653d2200000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f3c7265637420783d22302220793d2230222077696474683d223130303022206860008201527f65696768743d223130303022207374796c653d2266696c7465723a75726c282360208201527f746578747572652922202f3e3c2f7376673e0000000000000000000000000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f227d2c0000000000000000000000000000000000000000000000000000000000600082015250565b7f2500000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f7b2274726169745f74797065223a22546f6b656e204c6963656e7365222c227660008201527f616c7565223a2243432042592d4e4320342e30227d5d00000000000000000000602082015250565b7f222c22726f79616c7479496e666f223a7b22617274697374416464726573732260008201527f3a22000000000000000000000000000000000000000000000000000000000000602082015250565b7f7b2274726169745f74797065223a220000000000000000000000000000000000600082015250565b7f3c66696c7465722069643d2274657874757265223e3c666554757262756c656e60008201527f636520747970653d226672616374616c4e6f697365222062617365467265717560208201527f656e63793d22302e300000000000000000000000000000000000000000000000604082015250565b7f4f6e6c7920424c4f4e4b5320302d3639312061726520656c696769626c650000600082015250565b7f68736c2800000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f52657175657374696e67206163636f756e74206d757374206f776e207468652060008201527f424c4f4e4b532e00000000000000000000000000000000000000000000000000602082015250565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b7f5468617420424c4f4e4b5320686173206265656e20757365642e000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f68736c28302c2030252c20000000000000000000000000000000000000000000600082015250565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f2c203735252c2035302529000000000000000000000000000000000000000000600082015250565b7f22202f3e3c2f6665446966667573654c69676874696e673e3c2f66696c74657260008201527f3e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d22757460008201527f662d38223f3e0000000000000000000000000000000000000000000000000000602082015250565b7f222c2276616c7565223a22000000000000000000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f2220656c65766174696f6e3d2200000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f222c227363726970745f74797065223a22536f6c6964697479222c22696d616760008201527f655f74797065223a2247656e6572617469766520535647222c22696d6167652260208201527f3a22000000000000000000000000000000000000000000000000000000000000604082015250565b7f222c22726f79616c7479425053223a0000000000000000000000000000000000600082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f2220726573756c743d226e6f69736522206e756d4f6374617665733d2235222060008201527f2f3e3c6665446966667573654c69676874696e6720696e3d226e6f697365222060208201527f6c69676874696e672d636f6c6f723d2200000000000000000000000000000000604082015250565b7f7b226e616d65223a225465787475726520616e64204875657320230000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f222c22617274697374223a224d6174746f222c226465736372697074696f6e2260008201527f3a22000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b7f223e3c666544697374616e744c6967687420617a696d7574683d220000000000600082015250565b7f2261747472696275746573223a5b000000000000000000000000000000000000600082015250565b7f7d2c22636f6c6c656374696f6e5f6e616d65223a225465787475726520616e6460008201527f2048756573222c2277656273697465223a220000000000000000000000000000602082015250565b6155c281614696565b81146155cd57600080fd5b50565b6155d9816146a8565b81146155e457600080fd5b50565b6155f0816146b4565b81146155fb57600080fd5b50565b615607816146e0565b811461561257600080fd5b50565b61561e8161470e565b811461562957600080fd5b50565b61563581614725565b811461564057600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220f1a95882c01dafe0af95fc1ef4acdc848842f177cc86d255c7098c7c848fa56a64736f6c63430008070033
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.