Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 JT33
Holders
59
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 JT33Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Jagwar
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /** ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ░░░░░░░░░░░▒█████████▓░░░░░░░░░▓███████▒▒░░░░░░░░░░░ ░░░░░░░░░░▓██▓▓▓▓▓█████▒░░░░░▒█████▓▓▓▓██▒░░░░░░░░░░ ░░░░░░░░░█▓▒░░░░░░░█████▒░░░▒████▓░░░░░░░▓█░░░░░░░░░ ░░░░░░░░░░░░░░░░░░░░███▒░░░░▒████░░░░░░░░░░░░░░░░░░░ ░░░░░░░░░░░░░░░░░░░███▓░░░░░░░███▒░░░░░░░░░░░░░░░░░░ ░░░░░░░░░░░░░░░░░████▒░░░░░░░░░▒██▒░░░░░░░░░░░░░░░░░ ░░░░░░░░░░░░░░▓███████▒░░░░░░▒███████▓▒░░░░░░░░░░░░░ ░░░░░░░░░░░░░░░░▒▓▓█████▒░░░▓█████▓▓░░░░░░░░░░░░░░░░ ░░░░░░░░░░░░░░░░░░░░█████▒░▒████▓░░░░░░░░░░░░░░░░░░░ ░░░░░░░░░░░░░░░░░░░░░████▓░▒███▓░░░░░░░░░░░░░░░░░░░░ ░░░░░░░░░░░░░░░░░░░░░████▒░▒███▓░░░░░░░░░░░░░░░░░░░░ ░░░░░░░░░░░░░░░░░░░░░███▒░░░▒███░░░░░░░░░░░░░░░░░░░░ ░░░░░░░░▓███▓▓▓▓▓▓▓▓██▒░░░░░░░▓██▓▓▓▓▓▓▓▓▓▓░░░░░░░░░ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ Jagwar Twin x CTHDRL Contract: Jagwar Twin - 33 [Album] Website: https://jagwartwin.com **/ pragma solidity ^0.8.11; import {Strings} from "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Jagwar is Ownable, ERC721 { using Counters for Counters.Counter; event EditionCreated(uint256 editionId); event EditionMetadataUpdated(uint256 editionId, string metadata); event EditionPriceUpdated(uint256 editionId, uint256 price); struct Edition { string metadata; uint256 price; // the total number of tokens that can be minted for this edition uint256 size; // the number of tokens currently minted for this edition (<= size) Counters.Counter counter; } struct Token { uint256 editionId; // the value of the edition counter when this token was minted uint256 number; } Counters.Counter private editionIds; Counters.Counter private tokenIds; mapping(uint256 => Edition) public editions; mapping(uint256 => Token) public tokens; bool frozen = false; // EIP-721 // https://eips.ethereum.org/EIPS/eip-721 constructor() ERC721("Jagwar Twin - 33 [Album]", "JT33") {} function tokenURI(uint256 _tokenId) public view override(ERC721) returns (string memory) { Token storage _token = tokens[_tokenId]; Edition storage _edition = editions[_token.editionId]; // edition metadata is the base URI for the edition string memory _editionMetadata = _edition.metadata; string memory _number = Strings.toString(_token.number); return string(abi.encodePacked(_editionMetadata, "/", _number, ".json")); } // EIP-2981 // https://eips.ethereum.org/EIPS/eip-2981 function royaltyInfo( uint256, /*tokenId*/ uint256 _price ) external view returns (address receiver, uint256 royaltyAmount) { receiver = owner(); royaltyAmount = _price / 10; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } // custom function createEdition(string memory _metadata, uint256 _size) public onlyOwner returns (uint256) { require(!frozen, "Frozen"); editionIds.increment(); uint256 _editionId = editionIds.current(); editions[_editionId] = Edition( _metadata, 0, _size, Counters.Counter(0) ); emit EditionCreated(_editionId); return _editionId; } function setEditionMetadata(uint256 _editionId, string memory _metadata) public onlyOwner { require(!frozen, "Frozen"); editions[_editionId].metadata = _metadata; emit EditionMetadataUpdated(_editionId, _metadata); } function setEditionPrice(uint256 _editionId, uint256 _price) public onlyOwner { require(!frozen, "Frozen"); editions[_editionId].price = _price; emit EditionPriceUpdated(_editionId, _price); } function freeze() public onlyOwner { frozen = true; } function purchase(uint256 _editionId) external payable returns (uint256) { Edition storage _edition = editions[_editionId]; require(_edition.price > 0, "Not for sale"); require(_edition.counter.current() < _edition.size, "Sold out"); require(msg.value == _edition.price, "Wrong amount"); payable(owner()).transfer(msg.value); tokenIds.increment(); uint256 _tokenId = tokenIds.current(); _edition.counter.increment(); tokens[_tokenId] = Token(_editionId, _edition.counter.current()); _mint(msg.sender, _tokenId); return _tokenId; } }
// 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 v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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 (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 (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _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: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _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 a {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 a {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 Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @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 (last updated v4.5.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "./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 payed 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 v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "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":false,"internalType":"uint256","name":"editionId","type":"uint256"}],"name":"EditionCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"editionId","type":"uint256"},{"indexed":false,"internalType":"string","name":"metadata","type":"string"}],"name":"EditionMetadataUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"editionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"EditionPriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_metadata","type":"string"},{"internalType":"uint256","name":"_size","type":"uint256"}],"name":"createEdition","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"editions","outputs":[{"internalType":"string","name":"metadata","type":"string"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"size","type":"uint256"},{"components":[{"internalType":"uint256","name":"_value","type":"uint256"}],"internalType":"struct Counters.Counter","name":"counter","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_editionId","type":"uint256"}],"name":"purchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_editionId","type":"uint256"},{"internalType":"string","name":"_metadata","type":"string"}],"name":"setEditionMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_editionId","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setEditionPrice","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":"uint256","name":"","type":"uint256"}],"name":"tokens","outputs":[{"internalType":"uint256","name":"editionId","type":"uint256"},{"internalType":"uint256","name":"number","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600b60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280601881526020017f4a6167776172205477696e202d203333205b416c62756d5d00000000000000008152506040518060400160405280600481526020017f4a54333300000000000000000000000000000000000000000000000000000000815250620000b9620000ad620000f360201b60201c565b620000fb60201b60201c565b8160019080519060200190620000d1929190620001bf565b508060029080519060200190620000ea929190620001bf565b505050620002d4565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cd906200029e565b90600052602060002090601f016020900481019282620001f157600085556200023d565b82601f106200020c57805160ff19168380011785556200023d565b828001600101855582156200023d579182015b828111156200023c5782518255916020019190600101906200021f565b5b5090506200024c919062000250565b5090565b5b808211156200026b57600081600090555060010162000251565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002b757607f821691505b60208210811415620002ce57620002cd6200026f565b5b50919050565b613a8080620002e46000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063a22cb4651161006f578063a22cb465146104b9578063b88d4fde146104e2578063c87b56dd1461050b578063e985e9c514610548578063efef39a114610585578063f2fde38b146105b55761014b565b806370a08231146103bd578063715018a6146103fa5780637e4112ee146104115780637fe9a4281461043a5780638da5cb5b1461046357806395d89b411461048e5761014b565b80632a55205a116101085780632a55205a1461028757806342842e0e146102c55780634f64b2be146102ee57806362a5af3b1461032c5780636352211e14610343578063657dbe64146103805761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806323b872dd1461021e578063279c806e14610247575b600080fd5b34801561015c57600080fd5b50610177600480360381019061017291906124a7565b6105de565b60405161018491906124ef565b60405180910390f35b34801561019957600080fd5b506101a2610658565b6040516101af91906125a3565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da91906125fb565b6106ea565b6040516101ec9190612669565b60405180910390f35b34801561020157600080fd5b5061021c600480360381019061021791906126b0565b61076f565b005b34801561022a57600080fd5b50610245600480360381019061024091906126f0565b610887565b005b34801561025357600080fd5b5061026e600480360381019061026991906125fb565b6108e7565b60405161027e949392919061277d565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906127c9565b6109b3565b6040516102bc929190612809565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e791906126f0565b6109d6565b005b3480156102fa57600080fd5b50610315600480360381019061031091906125fb565b6109f6565b604051610323929190612832565b60405180910390f35b34801561033857600080fd5b50610341610a1a565b005b34801561034f57600080fd5b5061036a600480360381019061036591906125fb565b610ab3565b6040516103779190612669565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612990565b610b65565b6040516103b491906129ec565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190612a07565b610d19565b6040516103f191906129ec565b60405180910390f35b34801561040657600080fd5b5061040f610dd1565b005b34801561041d57600080fd5b5061043860048036038101906104339190612a34565b610e59565b005b34801561044657600080fd5b50610461600480360381019061045c91906127c9565b610f8d565b005b34801561046f57600080fd5b506104786110b1565b6040516104859190612669565b60405180910390f35b34801561049a57600080fd5b506104a36110da565b6040516104b091906125a3565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612abc565b61116c565b005b3480156104ee57600080fd5b5061050960048036038101906105049190612b9d565b611182565b005b34801561051757600080fd5b50610532600480360381019061052d91906125fb565b6111e4565b60405161053f91906125a3565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612c20565b6112e7565b60405161057c91906124ef565b60405180910390f35b61059f600480360381019061059a91906125fb565b61137b565b6040516105ac91906129ec565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612a07565b611541565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610651575061065082611639565b5b9050919050565b60606001805461066790612c8f565b80601f016020809104026020016040519081016040528092919081815260200182805461069390612c8f565b80156106e05780601f106106b5576101008083540402835291602001916106e0565b820191906000526020600020905b8154815290600101906020018083116106c357829003601f168201915b5050505050905090565b60006106f58261171b565b610734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072b90612d33565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077a82610ab3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e290612dc5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661080a611787565b73ffffffffffffffffffffffffffffffffffffffff161480610839575061083881610833611787565b6112e7565b5b610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f90612e57565b60405180910390fd5b610882838361178f565b505050565b610898610892611787565b82611848565b6108d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ce90612ee9565b60405180910390fd5b6108e2838383611926565b505050565b600960205280600052604060002060009150905080600001805461090a90612c8f565b80601f016020809104026020016040519081016040528092919081815260200182805461093690612c8f565b80156109835780601f1061095857610100808354040283529160200191610983565b820191906000526020600020905b81548152906001019060200180831161096657829003601f168201915b50505050509080600101549080600201549080600301604051806020016040529081600082015481525050905084565b6000806109be6110b1565b9150600a836109cd9190612f67565b90509250929050565b6109f183838360405180602001604052806000815250611182565b505050565b600a6020528060005260406000206000915090508060000154908060010154905082565b610a22611787565b73ffffffffffffffffffffffffffffffffffffffff16610a406110b1565b73ffffffffffffffffffffffffffffffffffffffff1614610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90612fe4565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5390613076565b60405180910390fd5b80915050919050565b6000610b6f611787565b73ffffffffffffffffffffffffffffffffffffffff16610b8d6110b1565b73ffffffffffffffffffffffffffffffffffffffff1614610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90612fe4565b60405180910390fd5b600b60009054906101000a900460ff1615610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a906130e2565b60405180910390fd5b610c3d6007611b8d565b6000610c496007611ba3565b905060405180608001604052808581526020016000815260200184815260200160405180602001604052806000815250815250600960008381526020019081526020016000206000820151816000019080519060200190610cab929190612398565b5060208201518160010155604082015181600201556060820151816003016000820151816000015550509050507f962bb64b059ad60d491bef43125921210925c52b11ff1cc093409113c8c5fe3781604051610d0791906129ec565b60405180910390a18091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190613174565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dd9611787565b73ffffffffffffffffffffffffffffffffffffffff16610df76110b1565b73ffffffffffffffffffffffffffffffffffffffff1614610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490612fe4565b60405180910390fd5b610e576000611bb1565b565b610e61611787565b73ffffffffffffffffffffffffffffffffffffffff16610e7f6110b1565b73ffffffffffffffffffffffffffffffffffffffff1614610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc90612fe4565b60405180910390fd5b600b60009054906101000a900460ff1615610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c906130e2565b60405180910390fd5b80600960008481526020019081526020016000206000019080519060200190610f4f929190612398565b507fd75079a6a8fc043e679220d707e37b8defcfa2e7a96ecb41ee8bc3970f0dff568282604051610f81929190613194565b60405180910390a15050565b610f95611787565b73ffffffffffffffffffffffffffffffffffffffff16610fb36110b1565b73ffffffffffffffffffffffffffffffffffffffff1614611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100090612fe4565b60405180910390fd5b600b60009054906101000a900460ff1615611059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611050906130e2565b60405180910390fd5b8060096000848152602001908152602001600020600101819055507ff1b6be85d4ce2ca40db140e4ba53b00d6db503fc9b262d2393b7812ad8551eb182826040516110a5929190612832565b60405180910390a15050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546110e990612c8f565b80601f016020809104026020016040519081016040528092919081815260200182805461111590612c8f565b80156111625780601f1061113757610100808354040283529160200191611162565b820191906000526020600020905b81548152906001019060200180831161114557829003601f168201915b5050505050905090565b61117e611177611787565b8383611c75565b5050565b61119361118d611787565b83611848565b6111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990612ee9565b60405180910390fd5b6111de84848484611de2565b50505050565b60606000600a60008481526020019081526020016000209050600060096000836000015481526020019081526020016000209050600081600001805461122990612c8f565b80601f016020809104026020016040519081016040528092919081815260200182805461125590612c8f565b80156112a25780601f10611277576101008083540402835291602001916112a2565b820191906000526020600020905b81548152906001019060200180831161128557829003601f168201915b5050505050905060006112b88460010154611e3e565b905081816040516020016112cd929190613298565b604051602081830303815290604052945050505050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008060096000848152602001908152602001600020905060008160010154116113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d19061331e565b60405180910390fd5b80600201546113eb82600301611ba3565b1061142b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114229061338a565b60405180910390fd5b80600101543414611471576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611468906133f6565b60405180910390fd5b6114796110b1565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156114be573d6000803e3d6000fd5b506114c96008611b8d565b60006114d56008611ba3565b90506114e382600301611b8d565b604051806040016040528085815260200161150084600301611ba3565b815250600a600083815260200190815260200160002060008201518160000155602082015181600101559050506115373382611f9f565b8092505050919050565b611549611787565b73ffffffffffffffffffffffffffffffffffffffff166115676110b1565b73ffffffffffffffffffffffffffffffffffffffff16146115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490612fe4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490613488565b60405180910390fd5b61163681611bb1565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061170457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611714575061171382612179565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661180283610ab3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118538261171b565b611892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118899061351a565b60405180910390fd5b600061189d83610ab3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061190c57508373ffffffffffffffffffffffffffffffffffffffff166118f4846106ea565b73ffffffffffffffffffffffffffffffffffffffff16145b8061191d575061191c81856112e7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661194682610ab3565b73ffffffffffffffffffffffffffffffffffffffff161461199c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611993906135ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a039061363e565b60405180910390fd5b611a178383836121e3565b611a2260008261178f565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a72919061365e565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ac99190613692565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b888383836121e8565b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90613734565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dd591906124ef565b60405180910390a3505050565b611ded848484611926565b611df9848484846121ed565b611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f906137c6565b60405180910390fd5b50505050565b60606000821415611e86576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f9a565b600082905060005b60008214611eb8578080611ea1906137e6565b915050600a82611eb19190612f67565b9150611e8e565b60008167ffffffffffffffff811115611ed457611ed3612865565b5b6040519080825280601f01601f191660200182016040528015611f065781602001600182028036833780820191505090505b5090505b60008514611f9357600182611f1f919061365e565b9150600a85611f2e919061382f565b6030611f3a9190613692565b60f81b818381518110611f5057611f4f613860565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f8c9190612f67565b9450611f0a565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561200f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612006906138db565b60405180910390fd5b6120188161171b565b15612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f90613947565b60405180910390fd5b612064600083836121e3565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120b49190613692565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612175600083836121e8565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b505050565b600061220e8473ffffffffffffffffffffffffffffffffffffffff16612375565b15612368578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612237611787565b8786866040518563ffffffff1660e01b815260040161225994939291906139bc565b6020604051808303816000875af192505050801561229557506040513d601f19601f820116820180604052508101906122929190613a1d565b60015b612318573d80600081146122c5576040519150601f19603f3d011682016040523d82523d6000602084013e6122ca565b606091505b50600081511415612310576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612307906137c6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061236d565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546123a490612c8f565b90600052602060002090601f0160209004810192826123c6576000855561240d565b82601f106123df57805160ff191683800117855561240d565b8280016001018555821561240d579182015b8281111561240c5782518255916020019190600101906123f1565b5b50905061241a919061241e565b5090565b5b8082111561243757600081600090555060010161241f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124848161244f565b811461248f57600080fd5b50565b6000813590506124a18161247b565b92915050565b6000602082840312156124bd576124bc612445565b5b60006124cb84828501612492565b91505092915050565b60008115159050919050565b6124e9816124d4565b82525050565b600060208201905061250460008301846124e0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612544578082015181840152602081019050612529565b83811115612553576000848401525b50505050565b6000601f19601f8301169050919050565b60006125758261250a565b61257f8185612515565b935061258f818560208601612526565b61259881612559565b840191505092915050565b600060208201905081810360008301526125bd818461256a565b905092915050565b6000819050919050565b6125d8816125c5565b81146125e357600080fd5b50565b6000813590506125f5816125cf565b92915050565b60006020828403121561261157612610612445565b5b600061261f848285016125e6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061265382612628565b9050919050565b61266381612648565b82525050565b600060208201905061267e600083018461265a565b92915050565b61268d81612648565b811461269857600080fd5b50565b6000813590506126aa81612684565b92915050565b600080604083850312156126c7576126c6612445565b5b60006126d58582860161269b565b92505060206126e6858286016125e6565b9150509250929050565b60008060006060848603121561270957612708612445565b5b60006127178682870161269b565b93505060206127288682870161269b565b9250506040612739868287016125e6565b9150509250925092565b61274c816125c5565b82525050565b61275b816125c5565b82525050565b6020820160008201516127776000850182612752565b50505050565b60006080820190508181036000830152612797818761256a565b90506127a66020830186612743565b6127b36040830185612743565b6127c06060830184612761565b95945050505050565b600080604083850312156127e0576127df612445565b5b60006127ee858286016125e6565b92505060206127ff858286016125e6565b9150509250929050565b600060408201905061281e600083018561265a565b61282b6020830184612743565b9392505050565b60006040820190506128476000830185612743565b6128546020830184612743565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61289d82612559565b810181811067ffffffffffffffff821117156128bc576128bb612865565b5b80604052505050565b60006128cf61243b565b90506128db8282612894565b919050565b600067ffffffffffffffff8211156128fb576128fa612865565b5b61290482612559565b9050602081019050919050565b82818337600083830152505050565b600061293361292e846128e0565b6128c5565b90508281526020810184848401111561294f5761294e612860565b5b61295a848285612911565b509392505050565b600082601f8301126129775761297661285b565b5b8135612987848260208601612920565b91505092915050565b600080604083850312156129a7576129a6612445565b5b600083013567ffffffffffffffff8111156129c5576129c461244a565b5b6129d185828601612962565b92505060206129e2858286016125e6565b9150509250929050565b6000602082019050612a016000830184612743565b92915050565b600060208284031215612a1d57612a1c612445565b5b6000612a2b8482850161269b565b91505092915050565b60008060408385031215612a4b57612a4a612445565b5b6000612a59858286016125e6565b925050602083013567ffffffffffffffff811115612a7a57612a7961244a565b5b612a8685828601612962565b9150509250929050565b612a99816124d4565b8114612aa457600080fd5b50565b600081359050612ab681612a90565b92915050565b60008060408385031215612ad357612ad2612445565b5b6000612ae18582860161269b565b9250506020612af285828601612aa7565b9150509250929050565b600067ffffffffffffffff821115612b1757612b16612865565b5b612b2082612559565b9050602081019050919050565b6000612b40612b3b84612afc565b6128c5565b905082815260208101848484011115612b5c57612b5b612860565b5b612b67848285612911565b509392505050565b600082601f830112612b8457612b8361285b565b5b8135612b94848260208601612b2d565b91505092915050565b60008060008060808587031215612bb757612bb6612445565b5b6000612bc58782880161269b565b9450506020612bd68782880161269b565b9350506040612be7878288016125e6565b925050606085013567ffffffffffffffff811115612c0857612c0761244a565b5b612c1487828801612b6f565b91505092959194509250565b60008060408385031215612c3757612c36612445565b5b6000612c458582860161269b565b9250506020612c568582860161269b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ca757607f821691505b60208210811415612cbb57612cba612c60565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612d1d602c83612515565b9150612d2882612cc1565b604082019050919050565b60006020820190508181036000830152612d4c81612d10565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612daf602183612515565b9150612dba82612d53565b604082019050919050565b60006020820190508181036000830152612dde81612da2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612e41603883612515565b9150612e4c82612de5565b604082019050919050565b60006020820190508181036000830152612e7081612e34565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612ed3603183612515565b9150612ede82612e77565b604082019050919050565b60006020820190508181036000830152612f0281612ec6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f72826125c5565b9150612f7d836125c5565b925082612f8d57612f8c612f09565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fce602083612515565b9150612fd982612f98565b602082019050919050565b60006020820190508181036000830152612ffd81612fc1565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613060602983612515565b915061306b82613004565b604082019050919050565b6000602082019050818103600083015261308f81613053565b9050919050565b7f46726f7a656e0000000000000000000000000000000000000000000000000000600082015250565b60006130cc600683612515565b91506130d782613096565b602082019050919050565b600060208201905081810360008301526130fb816130bf565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061315e602a83612515565b915061316982613102565b604082019050919050565b6000602082019050818103600083015261318d81613151565b9050919050565b60006040820190506131a96000830185612743565b81810360208301526131bb818461256a565b90509392505050565b600081905092915050565b60006131da8261250a565b6131e481856131c4565b93506131f4818560208601612526565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006132366001836131c4565b915061324182613200565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006132826005836131c4565b915061328d8261324c565b600582019050919050565b60006132a482856131cf565b91506132af82613229565b91506132bb82846131cf565b91506132c682613275565b91508190509392505050565b7f4e6f7420666f722073616c650000000000000000000000000000000000000000600082015250565b6000613308600c83612515565b9150613313826132d2565b602082019050919050565b60006020820190508181036000830152613337816132fb565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000613374600883612515565b915061337f8261333e565b602082019050919050565b600060208201905081810360008301526133a381613367565b9050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b60006133e0600c83612515565b91506133eb826133aa565b602082019050919050565b6000602082019050818103600083015261340f816133d3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613472602683612515565b915061347d82613416565b604082019050919050565b600060208201905081810360008301526134a181613465565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613504602c83612515565b915061350f826134a8565b604082019050919050565b60006020820190508181036000830152613533816134f7565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613596602583612515565b91506135a18261353a565b604082019050919050565b600060208201905081810360008301526135c581613589565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613628602483612515565b9150613633826135cc565b604082019050919050565b600060208201905081810360008301526136578161361b565b9050919050565b6000613669826125c5565b9150613674836125c5565b92508282101561368757613686612f38565b5b828203905092915050565b600061369d826125c5565b91506136a8836125c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136dd576136dc612f38565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061371e601983612515565b9150613729826136e8565b602082019050919050565b6000602082019050818103600083015261374d81613711565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006137b0603283612515565b91506137bb82613754565b604082019050919050565b600060208201905081810360008301526137df816137a3565b9050919050565b60006137f1826125c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561382457613823612f38565b5b600182019050919050565b600061383a826125c5565b9150613845836125c5565b92508261385557613854612f09565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006138c5602083612515565b91506138d08261388f565b602082019050919050565b600060208201905081810360008301526138f4816138b8565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613931601c83612515565b915061393c826138fb565b602082019050919050565b6000602082019050818103600083015261396081613924565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061398e82613967565b6139988185613972565b93506139a8818560208601612526565b6139b181612559565b840191505092915050565b60006080820190506139d1600083018761265a565b6139de602083018661265a565b6139eb6040830185612743565b81810360608301526139fd8184613983565b905095945050505050565b600081519050613a178161247b565b92915050565b600060208284031215613a3357613a32612445565b5b6000613a4184828501613a08565b9150509291505056fea2646970667358221220d2758a12bc59459a71a7783fe90b4b6afd4ea7a917b3215b7f9fc3fe0cc6bb4464736f6c634300080b0033
Deployed Bytecode
0x60806040526004361061014b5760003560e01c806370a08231116100b6578063a22cb4651161006f578063a22cb465146104b9578063b88d4fde146104e2578063c87b56dd1461050b578063e985e9c514610548578063efef39a114610585578063f2fde38b146105b55761014b565b806370a08231146103bd578063715018a6146103fa5780637e4112ee146104115780637fe9a4281461043a5780638da5cb5b1461046357806395d89b411461048e5761014b565b80632a55205a116101085780632a55205a1461028757806342842e0e146102c55780634f64b2be146102ee57806362a5af3b1461032c5780636352211e14610343578063657dbe64146103805761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806323b872dd1461021e578063279c806e14610247575b600080fd5b34801561015c57600080fd5b50610177600480360381019061017291906124a7565b6105de565b60405161018491906124ef565b60405180910390f35b34801561019957600080fd5b506101a2610658565b6040516101af91906125a3565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da91906125fb565b6106ea565b6040516101ec9190612669565b60405180910390f35b34801561020157600080fd5b5061021c600480360381019061021791906126b0565b61076f565b005b34801561022a57600080fd5b50610245600480360381019061024091906126f0565b610887565b005b34801561025357600080fd5b5061026e600480360381019061026991906125fb565b6108e7565b60405161027e949392919061277d565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906127c9565b6109b3565b6040516102bc929190612809565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e791906126f0565b6109d6565b005b3480156102fa57600080fd5b50610315600480360381019061031091906125fb565b6109f6565b604051610323929190612832565b60405180910390f35b34801561033857600080fd5b50610341610a1a565b005b34801561034f57600080fd5b5061036a600480360381019061036591906125fb565b610ab3565b6040516103779190612669565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612990565b610b65565b6040516103b491906129ec565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190612a07565b610d19565b6040516103f191906129ec565b60405180910390f35b34801561040657600080fd5b5061040f610dd1565b005b34801561041d57600080fd5b5061043860048036038101906104339190612a34565b610e59565b005b34801561044657600080fd5b50610461600480360381019061045c91906127c9565b610f8d565b005b34801561046f57600080fd5b506104786110b1565b6040516104859190612669565b60405180910390f35b34801561049a57600080fd5b506104a36110da565b6040516104b091906125a3565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612abc565b61116c565b005b3480156104ee57600080fd5b5061050960048036038101906105049190612b9d565b611182565b005b34801561051757600080fd5b50610532600480360381019061052d91906125fb565b6111e4565b60405161053f91906125a3565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612c20565b6112e7565b60405161057c91906124ef565b60405180910390f35b61059f600480360381019061059a91906125fb565b61137b565b6040516105ac91906129ec565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612a07565b611541565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610651575061065082611639565b5b9050919050565b60606001805461066790612c8f565b80601f016020809104026020016040519081016040528092919081815260200182805461069390612c8f565b80156106e05780601f106106b5576101008083540402835291602001916106e0565b820191906000526020600020905b8154815290600101906020018083116106c357829003601f168201915b5050505050905090565b60006106f58261171b565b610734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072b90612d33565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077a82610ab3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e290612dc5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661080a611787565b73ffffffffffffffffffffffffffffffffffffffff161480610839575061083881610833611787565b6112e7565b5b610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f90612e57565b60405180910390fd5b610882838361178f565b505050565b610898610892611787565b82611848565b6108d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ce90612ee9565b60405180910390fd5b6108e2838383611926565b505050565b600960205280600052604060002060009150905080600001805461090a90612c8f565b80601f016020809104026020016040519081016040528092919081815260200182805461093690612c8f565b80156109835780601f1061095857610100808354040283529160200191610983565b820191906000526020600020905b81548152906001019060200180831161096657829003601f168201915b50505050509080600101549080600201549080600301604051806020016040529081600082015481525050905084565b6000806109be6110b1565b9150600a836109cd9190612f67565b90509250929050565b6109f183838360405180602001604052806000815250611182565b505050565b600a6020528060005260406000206000915090508060000154908060010154905082565b610a22611787565b73ffffffffffffffffffffffffffffffffffffffff16610a406110b1565b73ffffffffffffffffffffffffffffffffffffffff1614610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90612fe4565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5390613076565b60405180910390fd5b80915050919050565b6000610b6f611787565b73ffffffffffffffffffffffffffffffffffffffff16610b8d6110b1565b73ffffffffffffffffffffffffffffffffffffffff1614610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90612fe4565b60405180910390fd5b600b60009054906101000a900460ff1615610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a906130e2565b60405180910390fd5b610c3d6007611b8d565b6000610c496007611ba3565b905060405180608001604052808581526020016000815260200184815260200160405180602001604052806000815250815250600960008381526020019081526020016000206000820151816000019080519060200190610cab929190612398565b5060208201518160010155604082015181600201556060820151816003016000820151816000015550509050507f962bb64b059ad60d491bef43125921210925c52b11ff1cc093409113c8c5fe3781604051610d0791906129ec565b60405180910390a18091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190613174565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dd9611787565b73ffffffffffffffffffffffffffffffffffffffff16610df76110b1565b73ffffffffffffffffffffffffffffffffffffffff1614610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490612fe4565b60405180910390fd5b610e576000611bb1565b565b610e61611787565b73ffffffffffffffffffffffffffffffffffffffff16610e7f6110b1565b73ffffffffffffffffffffffffffffffffffffffff1614610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc90612fe4565b60405180910390fd5b600b60009054906101000a900460ff1615610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c906130e2565b60405180910390fd5b80600960008481526020019081526020016000206000019080519060200190610f4f929190612398565b507fd75079a6a8fc043e679220d707e37b8defcfa2e7a96ecb41ee8bc3970f0dff568282604051610f81929190613194565b60405180910390a15050565b610f95611787565b73ffffffffffffffffffffffffffffffffffffffff16610fb36110b1565b73ffffffffffffffffffffffffffffffffffffffff1614611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100090612fe4565b60405180910390fd5b600b60009054906101000a900460ff1615611059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611050906130e2565b60405180910390fd5b8060096000848152602001908152602001600020600101819055507ff1b6be85d4ce2ca40db140e4ba53b00d6db503fc9b262d2393b7812ad8551eb182826040516110a5929190612832565b60405180910390a15050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546110e990612c8f565b80601f016020809104026020016040519081016040528092919081815260200182805461111590612c8f565b80156111625780601f1061113757610100808354040283529160200191611162565b820191906000526020600020905b81548152906001019060200180831161114557829003601f168201915b5050505050905090565b61117e611177611787565b8383611c75565b5050565b61119361118d611787565b83611848565b6111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990612ee9565b60405180910390fd5b6111de84848484611de2565b50505050565b60606000600a60008481526020019081526020016000209050600060096000836000015481526020019081526020016000209050600081600001805461122990612c8f565b80601f016020809104026020016040519081016040528092919081815260200182805461125590612c8f565b80156112a25780601f10611277576101008083540402835291602001916112a2565b820191906000526020600020905b81548152906001019060200180831161128557829003601f168201915b5050505050905060006112b88460010154611e3e565b905081816040516020016112cd929190613298565b604051602081830303815290604052945050505050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008060096000848152602001908152602001600020905060008160010154116113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d19061331e565b60405180910390fd5b80600201546113eb82600301611ba3565b1061142b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114229061338a565b60405180910390fd5b80600101543414611471576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611468906133f6565b60405180910390fd5b6114796110b1565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156114be573d6000803e3d6000fd5b506114c96008611b8d565b60006114d56008611ba3565b90506114e382600301611b8d565b604051806040016040528085815260200161150084600301611ba3565b815250600a600083815260200190815260200160002060008201518160000155602082015181600101559050506115373382611f9f565b8092505050919050565b611549611787565b73ffffffffffffffffffffffffffffffffffffffff166115676110b1565b73ffffffffffffffffffffffffffffffffffffffff16146115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490612fe4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490613488565b60405180910390fd5b61163681611bb1565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061170457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611714575061171382612179565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661180283610ab3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118538261171b565b611892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118899061351a565b60405180910390fd5b600061189d83610ab3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061190c57508373ffffffffffffffffffffffffffffffffffffffff166118f4846106ea565b73ffffffffffffffffffffffffffffffffffffffff16145b8061191d575061191c81856112e7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661194682610ab3565b73ffffffffffffffffffffffffffffffffffffffff161461199c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611993906135ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a039061363e565b60405180910390fd5b611a178383836121e3565b611a2260008261178f565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a72919061365e565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ac99190613692565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b888383836121e8565b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90613734565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dd591906124ef565b60405180910390a3505050565b611ded848484611926565b611df9848484846121ed565b611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f906137c6565b60405180910390fd5b50505050565b60606000821415611e86576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f9a565b600082905060005b60008214611eb8578080611ea1906137e6565b915050600a82611eb19190612f67565b9150611e8e565b60008167ffffffffffffffff811115611ed457611ed3612865565b5b6040519080825280601f01601f191660200182016040528015611f065781602001600182028036833780820191505090505b5090505b60008514611f9357600182611f1f919061365e565b9150600a85611f2e919061382f565b6030611f3a9190613692565b60f81b818381518110611f5057611f4f613860565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f8c9190612f67565b9450611f0a565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561200f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612006906138db565b60405180910390fd5b6120188161171b565b15612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f90613947565b60405180910390fd5b612064600083836121e3565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120b49190613692565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612175600083836121e8565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b505050565b600061220e8473ffffffffffffffffffffffffffffffffffffffff16612375565b15612368578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612237611787565b8786866040518563ffffffff1660e01b815260040161225994939291906139bc565b6020604051808303816000875af192505050801561229557506040513d601f19601f820116820180604052508101906122929190613a1d565b60015b612318573d80600081146122c5576040519150601f19603f3d011682016040523d82523d6000602084013e6122ca565b606091505b50600081511415612310576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612307906137c6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061236d565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546123a490612c8f565b90600052602060002090601f0160209004810192826123c6576000855561240d565b82601f106123df57805160ff191683800117855561240d565b8280016001018555821561240d579182015b8281111561240c5782518255916020019190600101906123f1565b5b50905061241a919061241e565b5090565b5b8082111561243757600081600090555060010161241f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124848161244f565b811461248f57600080fd5b50565b6000813590506124a18161247b565b92915050565b6000602082840312156124bd576124bc612445565b5b60006124cb84828501612492565b91505092915050565b60008115159050919050565b6124e9816124d4565b82525050565b600060208201905061250460008301846124e0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612544578082015181840152602081019050612529565b83811115612553576000848401525b50505050565b6000601f19601f8301169050919050565b60006125758261250a565b61257f8185612515565b935061258f818560208601612526565b61259881612559565b840191505092915050565b600060208201905081810360008301526125bd818461256a565b905092915050565b6000819050919050565b6125d8816125c5565b81146125e357600080fd5b50565b6000813590506125f5816125cf565b92915050565b60006020828403121561261157612610612445565b5b600061261f848285016125e6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061265382612628565b9050919050565b61266381612648565b82525050565b600060208201905061267e600083018461265a565b92915050565b61268d81612648565b811461269857600080fd5b50565b6000813590506126aa81612684565b92915050565b600080604083850312156126c7576126c6612445565b5b60006126d58582860161269b565b92505060206126e6858286016125e6565b9150509250929050565b60008060006060848603121561270957612708612445565b5b60006127178682870161269b565b93505060206127288682870161269b565b9250506040612739868287016125e6565b9150509250925092565b61274c816125c5565b82525050565b61275b816125c5565b82525050565b6020820160008201516127776000850182612752565b50505050565b60006080820190508181036000830152612797818761256a565b90506127a66020830186612743565b6127b36040830185612743565b6127c06060830184612761565b95945050505050565b600080604083850312156127e0576127df612445565b5b60006127ee858286016125e6565b92505060206127ff858286016125e6565b9150509250929050565b600060408201905061281e600083018561265a565b61282b6020830184612743565b9392505050565b60006040820190506128476000830185612743565b6128546020830184612743565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61289d82612559565b810181811067ffffffffffffffff821117156128bc576128bb612865565b5b80604052505050565b60006128cf61243b565b90506128db8282612894565b919050565b600067ffffffffffffffff8211156128fb576128fa612865565b5b61290482612559565b9050602081019050919050565b82818337600083830152505050565b600061293361292e846128e0565b6128c5565b90508281526020810184848401111561294f5761294e612860565b5b61295a848285612911565b509392505050565b600082601f8301126129775761297661285b565b5b8135612987848260208601612920565b91505092915050565b600080604083850312156129a7576129a6612445565b5b600083013567ffffffffffffffff8111156129c5576129c461244a565b5b6129d185828601612962565b92505060206129e2858286016125e6565b9150509250929050565b6000602082019050612a016000830184612743565b92915050565b600060208284031215612a1d57612a1c612445565b5b6000612a2b8482850161269b565b91505092915050565b60008060408385031215612a4b57612a4a612445565b5b6000612a59858286016125e6565b925050602083013567ffffffffffffffff811115612a7a57612a7961244a565b5b612a8685828601612962565b9150509250929050565b612a99816124d4565b8114612aa457600080fd5b50565b600081359050612ab681612a90565b92915050565b60008060408385031215612ad357612ad2612445565b5b6000612ae18582860161269b565b9250506020612af285828601612aa7565b9150509250929050565b600067ffffffffffffffff821115612b1757612b16612865565b5b612b2082612559565b9050602081019050919050565b6000612b40612b3b84612afc565b6128c5565b905082815260208101848484011115612b5c57612b5b612860565b5b612b67848285612911565b509392505050565b600082601f830112612b8457612b8361285b565b5b8135612b94848260208601612b2d565b91505092915050565b60008060008060808587031215612bb757612bb6612445565b5b6000612bc58782880161269b565b9450506020612bd68782880161269b565b9350506040612be7878288016125e6565b925050606085013567ffffffffffffffff811115612c0857612c0761244a565b5b612c1487828801612b6f565b91505092959194509250565b60008060408385031215612c3757612c36612445565b5b6000612c458582860161269b565b9250506020612c568582860161269b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ca757607f821691505b60208210811415612cbb57612cba612c60565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612d1d602c83612515565b9150612d2882612cc1565b604082019050919050565b60006020820190508181036000830152612d4c81612d10565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612daf602183612515565b9150612dba82612d53565b604082019050919050565b60006020820190508181036000830152612dde81612da2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612e41603883612515565b9150612e4c82612de5565b604082019050919050565b60006020820190508181036000830152612e7081612e34565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612ed3603183612515565b9150612ede82612e77565b604082019050919050565b60006020820190508181036000830152612f0281612ec6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f72826125c5565b9150612f7d836125c5565b925082612f8d57612f8c612f09565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fce602083612515565b9150612fd982612f98565b602082019050919050565b60006020820190508181036000830152612ffd81612fc1565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613060602983612515565b915061306b82613004565b604082019050919050565b6000602082019050818103600083015261308f81613053565b9050919050565b7f46726f7a656e0000000000000000000000000000000000000000000000000000600082015250565b60006130cc600683612515565b91506130d782613096565b602082019050919050565b600060208201905081810360008301526130fb816130bf565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061315e602a83612515565b915061316982613102565b604082019050919050565b6000602082019050818103600083015261318d81613151565b9050919050565b60006040820190506131a96000830185612743565b81810360208301526131bb818461256a565b90509392505050565b600081905092915050565b60006131da8261250a565b6131e481856131c4565b93506131f4818560208601612526565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006132366001836131c4565b915061324182613200565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006132826005836131c4565b915061328d8261324c565b600582019050919050565b60006132a482856131cf565b91506132af82613229565b91506132bb82846131cf565b91506132c682613275565b91508190509392505050565b7f4e6f7420666f722073616c650000000000000000000000000000000000000000600082015250565b6000613308600c83612515565b9150613313826132d2565b602082019050919050565b60006020820190508181036000830152613337816132fb565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000613374600883612515565b915061337f8261333e565b602082019050919050565b600060208201905081810360008301526133a381613367565b9050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b60006133e0600c83612515565b91506133eb826133aa565b602082019050919050565b6000602082019050818103600083015261340f816133d3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613472602683612515565b915061347d82613416565b604082019050919050565b600060208201905081810360008301526134a181613465565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613504602c83612515565b915061350f826134a8565b604082019050919050565b60006020820190508181036000830152613533816134f7565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613596602583612515565b91506135a18261353a565b604082019050919050565b600060208201905081810360008301526135c581613589565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613628602483612515565b9150613633826135cc565b604082019050919050565b600060208201905081810360008301526136578161361b565b9050919050565b6000613669826125c5565b9150613674836125c5565b92508282101561368757613686612f38565b5b828203905092915050565b600061369d826125c5565b91506136a8836125c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136dd576136dc612f38565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061371e601983612515565b9150613729826136e8565b602082019050919050565b6000602082019050818103600083015261374d81613711565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006137b0603283612515565b91506137bb82613754565b604082019050919050565b600060208201905081810360008301526137df816137a3565b9050919050565b60006137f1826125c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561382457613823612f38565b5b600182019050919050565b600061383a826125c5565b9150613845836125c5565b92508261385557613854612f09565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006138c5602083612515565b91506138d08261388f565b602082019050919050565b600060208201905081810360008301526138f4816138b8565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613931601c83612515565b915061393c826138fb565b602082019050919050565b6000602082019050818103600083015261396081613924565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061398e82613967565b6139988185613972565b93506139a8818560208601612526565b6139b181612559565b840191505092915050565b60006080820190506139d1600083018761265a565b6139de602083018661265a565b6139eb6040830185612743565b81810360608301526139fd8184613983565b905095945050505050565b600081519050613a178161247b565b92915050565b600060208284031215613a3357613a32612445565b5b6000613a4184828501613a08565b9150509291505056fea2646970667358221220d2758a12bc59459a71a7783fe90b4b6afd4ea7a917b3215b7f9fc3fe0cc6bb4464736f6c634300080b0033
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.