Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
2,777 MPC
Holders
715
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 MPCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MysteriousPlayers
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/**************************************************************** ****************************************************************** ** ** /$$ /$$ /$$ /$$ /$$$$$$$ /$$ ** | $$$ /$$$ | $$ |__/ | $$__ $$| $$ ** | $$$$ /$$$$ /$$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ /$$ /$$$$$$ /$$ /$$ /$$$$$$$| $$ \ $$| $$ /$$$$$$ /$$ /$$ /$$$$$$ /$$$$$$ /$$$$$$$ ** | $$ $$/$$ $$| $$ | $$ /$$_____/|_ $$_/ /$$__ $$ /$$__ $$| $$ /$$__ $$| $$ | $$ /$$_____/| $$$$$$$/| $$ |____ $$| $$ | $$ /$$__ $$ /$$__ $$ /$$_____/ ** | $$ $$$| $$| $$ | $$| $$$$$$ | $$ | $$$$$$$$| $$ \__/| $$| $$ \ $$| $$ | $$| $$$$$$ | $$____/ | $$ /$$$$$$$| $$ | $$| $$$$$$$$| $$ \__/| $$$$$$ ** | $$\ $ | $$| $$ | $$ \____ $$ | $$ /$$| $$_____/| $$ | $$| $$ | $$| $$ | $$ \____ $$| $$ | $$ /$$__ $$| $$ | $$| $$_____/| $$ \____ $$ ** | $$ \/ | $$| $$$$$$$ /$$$$$$$/ | $$$$/| $$$$$$$| $$ | $$| $$$$$$/| $$$$$$/ /$$$$$$$/| $$ | $$| $$$$$$$| $$$$$$$| $$$$$$$| $$ /$$$$$$$/ ** |__/ |__/ \____ $$|_______/ \___/ \_______/|__/ |__/ \______/ \______/ |_______/ |__/ |__/ \_______/ \____ $$ \_______/|__/ |_______/ ** /$$ | $$ /$$ | $$ ** | $$$$$$/ | $$$$$$/ ** \______/ \______/ ** ****************************************************************** ******************************************************************/ /** *Submitted for verification at Etherscan.io on 2023-03-08 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // 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); } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } // File: @openzeppelin/contracts/utils/Address.sol // 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); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/GitcoinPunks.sol pragma solidity >=0.8.0 <0.9.0; contract MysteriousPlayers is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public _baseTokenURI; string public hiddenMetadataUri; uint256 public cost = 0.0015 ether; uint256 public maxSupply = 2777; uint256 public freeSupply = 500; uint256 public maxMintAmountPerTx = 5; uint256 public maxFreeAmountPerTx = 1; uint256 public freemintCount = 0; bool public paused; bool public revealed = true; bool public mintEnabled = false; constructor() ERC721A("MysteriousPlayers", "MPC") { setBaseURI("ipfs://bafybeibntb7qfjm4wd5ud4k47terajh5pqi7mar7jmdgple7o6uxrr7jju/"); // _safeMint(_msgSender(), 1); } function mint(uint256 _mintAmount) public payable nonReentrant { require(mintEnabled, "Mint is not live yet."); bool isFree = false; if (cost > 0){ require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); }else{ isFree = true; require(_mintAmount > 0 && _mintAmount <= maxFreeAmountPerTx, "Invalid mint amount!"); require(freemintCount + _mintAmount <= freeSupply, "Max FreeSupply exceeded!"); } require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); require(!paused, "The contract is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); if (isFree){ freemintCount++; } _safeMint(_msgSender(), _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setMaxFreeAmountPerTx(uint256 _maxFreeAmountPerTx) public onlyOwner { maxFreeAmountPerTx = _maxFreeAmountPerTx; } // function setMaxSupply(uint256 _maxSupply) public onlyOwner { // maxSupply = _maxSupply; // } function setFreeSupply(uint256 _freeSupply) public onlyOwner { freeSupply = _freeSupply; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } // METADATA HANDLING function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function flipMint() external onlyOwner { mintEnabled = !mintEnabled; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI does not exist!"); if (revealed) { return string(abi.encodePacked(_baseURI(), _tokenId.toString(),".json")); } else { return hiddenMetadataUri; } } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxFreeAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeAmountPerTx","type":"uint256"}],"name":"setMaxFreeAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526605543df729c000600c55610ad9600d556101f4600e556005600f55600160105560006011556001601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff0219169083151502179055503480156200006d57600080fd5b506040518060400160405280601181526020017f4d7973746572696f7573506c61796572730000000000000000000000000000008152506040518060400160405280600381526020017f4d504300000000000000000000000000000000000000000000000000000000008152508160029081620000eb91906200058d565b508060039081620000fd91906200058d565b506200010e6200016e60201b60201c565b6000819055505050620001366200012a6200017760201b60201c565b6200017f60201b60201c565b600160098190555062000168604051806080016040528060438152602001620048c7604391396200024560201b60201c565b620006f7565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002556200017760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200027b620002e960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002cb90620006d5565b60405180910390fd5b80600a9081620002e591906200058d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200039557607f821691505b602082108103620003ab57620003aa6200034d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003d6565b620004218683620003d6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200046e62000468620004628462000439565b62000443565b62000439565b9050919050565b6000819050919050565b6200048a836200044d565b620004a2620004998262000475565b848454620003e3565b825550505050565b600090565b620004b9620004aa565b620004c68184846200047f565b505050565b5b81811015620004ee57620004e2600082620004af565b600181019050620004cc565b5050565b601f8211156200053d576200050781620003b1565b6200051284620003c6565b8101602085101562000522578190505b6200053a6200053185620003c6565b830182620004cb565b50505b505050565b600082821c905092915050565b6000620005626000198460080262000542565b1980831691505092915050565b60006200057d83836200054f565b9150826002028217905092915050565b620005988262000313565b67ffffffffffffffff811115620005b457620005b36200031e565b5b620005c082546200037c565b620005cd828285620004f2565b600060209050601f831160018114620006055760008415620005f0578287015190505b620005fc85826200056f565b8655506200066c565b601f1984166200061586620003b1565b60005b828110156200063f5784890151825560018201915060208501945060208101905062000618565b868310156200065f57848901516200065b601f8916826200054f565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620006bd60208362000674565b9150620006ca8262000685565b602082019050919050565b60006020820190508181036000830152620006f081620006ae565b9050919050565b6141c080620007076000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063c87b56dd116100ab578063e0a808531161006f578063e0a808531461081a578063e985e9c514610843578063efbd73f414610880578063f2fde38b146108a9578063f676308a146108d25761023b565b8063c87b56dd14610745578063cfc86f7b14610782578063d1239730146107ad578063d2ed5c59146107d8578063d5abeb01146107ef5761023b565b8063a0712d68116100f2578063a0712d6814610683578063a22cb4651461069f578063a45ba8e7146106c8578063b071401b146106f3578063b88d4fde1461071c5761023b565b8063715018a6146105c25780637b2f1595146105d95780638da5cb5b1461060257806394354fd01461062d57806395d89b41146106585761023b565b80633ccfd60b116101bc57806355f804b31161018057806355f804b3146104c95780635c975abb146104f25780636352211e1461051d57806366e982611461055a57806370a08231146105855761023b565b80633ccfd60b1461040c57806342842e0e1461042357806344a0d68a1461044c5780634fdd43cb14610475578063518302271461049e5761023b565b806313faede61161020357806313faede61461033957806316c38b3c1461036457806318160ddd1461038d57806323b872dd146103b857806324a6ab0c146103e15761023b565b80630156347e1461024057806301ffc9a71461026b57806306fdde03146102a8578063081812fc146102d3578063095ea7b314610310575b600080fd5b34801561024c57600080fd5b506102556108fb565b6040516102629190612f95565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d919061301c565b610901565b60405161029f9190613064565b60405180910390f35b3480156102b457600080fd5b506102bd6109e3565b6040516102ca919061310f565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f5919061315d565b610a75565b60405161030791906131cb565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190613212565b610af1565b005b34801561034557600080fd5b5061034e610bfb565b60405161035b9190612f95565b60405180910390f35b34801561037057600080fd5b5061038b6004803603810190610386919061327e565b610c01565b005b34801561039957600080fd5b506103a2610c9a565b6040516103af9190612f95565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da91906132ab565b610cb1565b005b3480156103ed57600080fd5b506103f6610cc1565b6040516104039190612f95565b60405180910390f35b34801561041857600080fd5b50610421610cc7565b005b34801561042f57600080fd5b5061044a600480360381019061044591906132ab565b610e18565b005b34801561045857600080fd5b50610473600480360381019061046e919061315d565b610e38565b005b34801561048157600080fd5b5061049c60048036038101906104979190613433565b610ebe565b005b3480156104aa57600080fd5b506104b3610f4d565b6040516104c09190613064565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190613433565b610f60565b005b3480156104fe57600080fd5b50610507610fef565b6040516105149190613064565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f919061315d565b611002565b60405161055191906131cb565b60405180910390f35b34801561056657600080fd5b5061056f611018565b60405161057c9190612f95565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a7919061347c565b61101e565b6040516105b99190612f95565b60405180910390f35b3480156105ce57600080fd5b506105d76110ed565b005b3480156105e557600080fd5b5061060060048036038101906105fb919061315d565b611175565b005b34801561060e57600080fd5b506106176111fb565b60405161062491906131cb565b60405180910390f35b34801561063957600080fd5b50610642611225565b60405161064f9190612f95565b60405180910390f35b34801561066457600080fd5b5061066d61122b565b60405161067a919061310f565b60405180910390f35b61069d6004803603810190610698919061315d565b6112bd565b005b3480156106ab57600080fd5b506106c660048036038101906106c191906134a9565b611596565b005b3480156106d457600080fd5b506106dd61170d565b6040516106ea919061310f565b60405180910390f35b3480156106ff57600080fd5b5061071a6004803603810190610715919061315d565b61179b565b005b34801561072857600080fd5b50610743600480360381019061073e919061358a565b611821565b005b34801561075157600080fd5b5061076c6004803603810190610767919061315d565b61189d565b604051610779919061310f565b60405180910390f35b34801561078e57600080fd5b506107976119c7565b6040516107a4919061310f565b60405180910390f35b3480156107b957600080fd5b506107c2611a55565b6040516107cf9190613064565b60405180910390f35b3480156107e457600080fd5b506107ed611a68565b005b3480156107fb57600080fd5b50610804611b10565b6040516108119190612f95565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061327e565b611b16565b005b34801561084f57600080fd5b5061086a6004803603810190610865919061360d565b611baf565b6040516108779190613064565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a2919061364d565b611c43565b005b3480156108b557600080fd5b506108d060048036038101906108cb919061347c565b611ccd565b005b3480156108de57600080fd5b506108f960048036038101906108f4919061315d565b611dc4565b005b60115481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109cc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109dc57506109db82611e4a565b5b9050919050565b6060600280546109f2906136bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1e906136bc565b8015610a6b5780601f10610a4057610100808354040283529160200191610a6b565b820191906000526020600020905b815481529060010190602001808311610a4e57829003601f168201915b5050505050905090565b6000610a8082611eb4565b610ab6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610afc82611002565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b63576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b82611f02565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bb45750610bb281610bad611f02565b611baf565b155b15610beb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bf6838383611f0a565b505050565b600c5481565b610c09611f02565b73ffffffffffffffffffffffffffffffffffffffff16610c276111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490613739565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000610ca4611fbc565b6001546000540303905090565b610cbc838383611fc5565b505050565b600e5481565b610ccf611f02565b73ffffffffffffffffffffffffffffffffffffffff16610ced6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90613739565b60405180910390fd5b600260095403610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f906137a5565b60405180910390fd5b60026009819055506000610d9a6111fb565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dbd906137f6565b60006040518083038185875af1925050503d8060008114610dfa576040519150601f19603f3d011682016040523d82523d6000602084013e610dff565b606091505b5050905080610e0d57600080fd5b506001600981905550565b610e3383838360405180602001604052806000815250611821565b505050565b610e40611f02565b73ffffffffffffffffffffffffffffffffffffffff16610e5e6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab90613739565b60405180910390fd5b80600c8190555050565b610ec6611f02565b73ffffffffffffffffffffffffffffffffffffffff16610ee46111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190613739565b60405180910390fd5b80600b9081610f4991906139b7565b5050565b601260019054906101000a900460ff1681565b610f68611f02565b73ffffffffffffffffffffffffffffffffffffffff16610f866111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390613739565b60405180910390fd5b80600a9081610feb91906139b7565b5050565b601260009054906101000a900460ff1681565b600061100d82612479565b600001519050919050565b60105481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611085576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110f5611f02565b73ffffffffffffffffffffffffffffffffffffffff166111136111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116090613739565b60405180910390fd5b6111736000612708565b565b61117d611f02565b73ffffffffffffffffffffffffffffffffffffffff1661119b6111fb565b73ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613739565b60405180910390fd5b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606003805461123a906136bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611266906136bc565b80156112b35780601f10611288576101008083540402835291602001916112b3565b820191906000526020600020905b81548152906001019060200180831161129657829003601f168201915b5050505050905090565b600260095403611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f9906137a5565b60405180910390fd5b6002600981905550601260029054906101000a900460ff16611359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135090613ad5565b60405180910390fd5b600080600c5411156113bb576000821180156113775750600f548211155b6113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90613b41565b60405180910390fd5b611463565b600190506000821180156113d157506010548211155b611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790613b41565b60405180910390fd5b600e54826011546114219190613b90565b1115611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145990613c10565b60405180910390fd5b5b600d548261146f610c9a565b6114799190613b90565b11156114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190613c7c565b60405180910390fd5b601260009054906101000a900460ff161561150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190613ce8565b60405180910390fd5b81600c546115189190613d08565b34101561155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190613d96565b60405180910390fd5b8015611579576011600081548092919061157390613db6565b91905055505b61158a611584611f02565b836127ce565b50600160098190555050565b61159e611f02565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611602576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061160f611f02565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116bc611f02565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117019190613064565b60405180910390a35050565b600b805461171a906136bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611746906136bc565b80156117935780601f1061176857610100808354040283529160200191611793565b820191906000526020600020905b81548152906001019060200180831161177657829003601f168201915b505050505081565b6117a3611f02565b73ffffffffffffffffffffffffffffffffffffffff166117c16111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e90613739565b60405180910390fd5b80600f8190555050565b61182c848484611fc5565b61184b8373ffffffffffffffffffffffffffffffffffffffff166127ec565b8015611860575061185e8484848461280f565b155b15611897576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118a882611eb4565b6118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613e4a565b60405180910390fd5b601260019054906101000a900460ff16156119345761190461295f565b61190d836129f1565b60405160200161191e929190613ef2565b60405160208183030381529060405290506119c2565b600b8054611941906136bc565b80601f016020809104026020016040519081016040528092919081815260200182805461196d906136bc565b80156119ba5780601f1061198f576101008083540402835291602001916119ba565b820191906000526020600020905b81548152906001019060200180831161199d57829003601f168201915b505050505090505b919050565b600a80546119d4906136bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611a00906136bc565b8015611a4d5780601f10611a2257610100808354040283529160200191611a4d565b820191906000526020600020905b815481529060010190602001808311611a3057829003601f168201915b505050505081565b601260029054906101000a900460ff1681565b611a70611f02565b73ffffffffffffffffffffffffffffffffffffffff16611a8e6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90613739565b60405180910390fd5b601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550565b600d5481565b611b1e611f02565b73ffffffffffffffffffffffffffffffffffffffff16611b3c6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8990613739565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c4b611f02565b73ffffffffffffffffffffffffffffffffffffffff16611c696111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690613739565b60405180910390fd5b611cc981836127ce565b5050565b611cd5611f02565b73ffffffffffffffffffffffffffffffffffffffff16611cf36111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4090613739565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf90613f93565b60405180910390fd5b611dc181612708565b50565b611dcc611f02565b73ffffffffffffffffffffffffffffffffffffffff16611dea6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3790613739565b60405180910390fd5b80600e8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611ebf611fbc565b11158015611ece575060005482105b8015611efb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611fd082612479565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461203b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661205c611f02565b73ffffffffffffffffffffffffffffffffffffffff16148061208b575061208a85612085611f02565b611baf565b5b806120d05750612099611f02565b73ffffffffffffffffffffffffffffffffffffffff166120b884610a75565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612109576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361216f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61217c8585856001612b51565b61218860008487611f0a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361240757600054821461240657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124728585856001612b57565b5050505050565b612481612f39565b60008290508061248f611fbc565b1115801561249e575060005481105b156126d1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516126cf57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125b3578092505050612703565b5b6001156126ce57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126c9578092505050612703565b6125b4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127e8828260405180602001604052806000815250612b5d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612835611f02565b8786866040518563ffffffff1660e01b81526004016128579493929190614008565b6020604051808303816000875af192505050801561289357506040513d601f19601f820116820180604052508101906128909190614069565b60015b61290c573d80600081146128c3576040519150601f19603f3d011682016040523d82523d6000602084013e6128c8565b606091505b506000815103612904576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461296e906136bc565b80601f016020809104026020016040519081016040528092919081815260200182805461299a906136bc565b80156129e75780601f106129bc576101008083540402835291602001916129e7565b820191906000526020600020905b8154815290600101906020018083116129ca57829003601f168201915b5050505050905090565b606060008203612a38576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b4c565b600082905060005b60008214612a6a578080612a5390613db6565b915050600a82612a6391906140c5565b9150612a40565b60008167ffffffffffffffff811115612a8657612a85613308565b5b6040519080825280601f01601f191660200182016040528015612ab85781602001600182028036833780820191505090505b5090505b60008514612b4557600182612ad191906140f6565b9150600a85612ae0919061412a565b6030612aec9190613b90565b60f81b818381518110612b0257612b0161415b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b3e91906140c5565b9450612abc565b8093505050505b919050565b50505050565b50505050565b612b6a8383836001612b6f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612bdb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612c15576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c226000868387612b51565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612dec5750612deb8773ffffffffffffffffffffffffffffffffffffffff166127ec565b5b15612eb1575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e61600088848060010195508861280f565b612e97576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612df2578260005414612eac57600080fd5b612f1c565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612eb2575b816000819055505050612f326000868387612b57565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000819050919050565b612f8f81612f7c565b82525050565b6000602082019050612faa6000830184612f86565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ff981612fc4565b811461300457600080fd5b50565b60008135905061301681612ff0565b92915050565b60006020828403121561303257613031612fba565b5b600061304084828501613007565b91505092915050565b60008115159050919050565b61305e81613049565b82525050565b60006020820190506130796000830184613055565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130b957808201518184015260208101905061309e565b60008484015250505050565b6000601f19601f8301169050919050565b60006130e18261307f565b6130eb818561308a565b93506130fb81856020860161309b565b613104816130c5565b840191505092915050565b6000602082019050818103600083015261312981846130d6565b905092915050565b61313a81612f7c565b811461314557600080fd5b50565b60008135905061315781613131565b92915050565b60006020828403121561317357613172612fba565b5b600061318184828501613148565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131b58261318a565b9050919050565b6131c5816131aa565b82525050565b60006020820190506131e060008301846131bc565b92915050565b6131ef816131aa565b81146131fa57600080fd5b50565b60008135905061320c816131e6565b92915050565b6000806040838503121561322957613228612fba565b5b6000613237858286016131fd565b925050602061324885828601613148565b9150509250929050565b61325b81613049565b811461326657600080fd5b50565b60008135905061327881613252565b92915050565b60006020828403121561329457613293612fba565b5b60006132a284828501613269565b91505092915050565b6000806000606084860312156132c4576132c3612fba565b5b60006132d2868287016131fd565b93505060206132e3868287016131fd565b92505060406132f486828701613148565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613340826130c5565b810181811067ffffffffffffffff8211171561335f5761335e613308565b5b80604052505050565b6000613372612fb0565b905061337e8282613337565b919050565b600067ffffffffffffffff82111561339e5761339d613308565b5b6133a7826130c5565b9050602081019050919050565b82818337600083830152505050565b60006133d66133d184613383565b613368565b9050828152602081018484840111156133f2576133f1613303565b5b6133fd8482856133b4565b509392505050565b600082601f83011261341a576134196132fe565b5b813561342a8482602086016133c3565b91505092915050565b60006020828403121561344957613448612fba565b5b600082013567ffffffffffffffff81111561346757613466612fbf565b5b61347384828501613405565b91505092915050565b60006020828403121561349257613491612fba565b5b60006134a0848285016131fd565b91505092915050565b600080604083850312156134c0576134bf612fba565b5b60006134ce858286016131fd565b92505060206134df85828601613269565b9150509250929050565b600067ffffffffffffffff82111561350457613503613308565b5b61350d826130c5565b9050602081019050919050565b600061352d613528846134e9565b613368565b90508281526020810184848401111561354957613548613303565b5b6135548482856133b4565b509392505050565b600082601f830112613571576135706132fe565b5b813561358184826020860161351a565b91505092915050565b600080600080608085870312156135a4576135a3612fba565b5b60006135b2878288016131fd565b94505060206135c3878288016131fd565b93505060406135d487828801613148565b925050606085013567ffffffffffffffff8111156135f5576135f4612fbf565b5b6136018782880161355c565b91505092959194509250565b6000806040838503121561362457613623612fba565b5b6000613632858286016131fd565b9250506020613643858286016131fd565b9150509250929050565b6000806040838503121561366457613663612fba565b5b600061367285828601613148565b9250506020613683858286016131fd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136d457607f821691505b6020821081036136e7576136e661368d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061372360208361308a565b915061372e826136ed565b602082019050919050565b6000602082019050818103600083015261375281613716565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061378f601f8361308a565b915061379a82613759565b602082019050919050565b600060208201905081810360008301526137be81613782565b9050919050565b600081905092915050565b50565b60006137e06000836137c5565b91506137eb826137d0565b600082019050919050565b6000613801826137d3565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261386d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613830565b6138778683613830565b95508019841693508086168417925050509392505050565b6000819050919050565b60006138b46138af6138aa84612f7c565b61388f565b612f7c565b9050919050565b6000819050919050565b6138ce83613899565b6138e26138da826138bb565b84845461383d565b825550505050565b600090565b6138f76138ea565b6139028184846138c5565b505050565b5b818110156139265761391b6000826138ef565b600181019050613908565b5050565b601f82111561396b5761393c8161380b565b61394584613820565b81016020851015613954578190505b61396861396085613820565b830182613907565b50505b505050565b600082821c905092915050565b600061398e60001984600802613970565b1980831691505092915050565b60006139a7838361397d565b9150826002028217905092915050565b6139c08261307f565b67ffffffffffffffff8111156139d9576139d8613308565b5b6139e382546136bc565b6139ee82828561392a565b600060209050601f831160018114613a215760008415613a0f578287015190505b613a19858261399b565b865550613a81565b601f198416613a2f8661380b565b60005b82811015613a5757848901518255600182019150602085019450602081019050613a32565b86831015613a745784890151613a70601f89168261397d565b8355505b6001600288020188555050505b505050505050565b7f4d696e74206973206e6f74206c697665207965742e0000000000000000000000600082015250565b6000613abf60158361308a565b9150613aca82613a89565b602082019050919050565b60006020820190508181036000830152613aee81613ab2565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613b2b60148361308a565b9150613b3682613af5565b602082019050919050565b60006020820190508181036000830152613b5a81613b1e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b9b82612f7c565b9150613ba683612f7c565b9250828201905080821115613bbe57613bbd613b61565b5b92915050565b7f4d61782046726565537570706c79206578636565646564210000000000000000600082015250565b6000613bfa60188361308a565b9150613c0582613bc4565b602082019050919050565b60006020820190508181036000830152613c2981613bed565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613c6660148361308a565b9150613c7182613c30565b602082019050919050565b60006020820190508181036000830152613c9581613c59565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613cd260178361308a565b9150613cdd82613c9c565b602082019050919050565b60006020820190508181036000830152613d0181613cc5565b9050919050565b6000613d1382612f7c565b9150613d1e83612f7c565b9250828202613d2c81612f7c565b91508282048414831517613d4357613d42613b61565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613d8060138361308a565b9150613d8b82613d4a565b602082019050919050565b60006020820190508181036000830152613daf81613d73565b9050919050565b6000613dc182612f7c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613df357613df2613b61565b5b600182019050919050565b7f55524920646f6573206e6f742065786973742100000000000000000000000000600082015250565b6000613e3460138361308a565b9150613e3f82613dfe565b602082019050919050565b60006020820190508181036000830152613e6381613e27565b9050919050565b600081905092915050565b6000613e808261307f565b613e8a8185613e6a565b9350613e9a81856020860161309b565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613edc600583613e6a565b9150613ee782613ea6565b600582019050919050565b6000613efe8285613e75565b9150613f0a8284613e75565b9150613f1582613ecf565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f7d60268361308a565b9150613f8882613f21565b604082019050919050565b60006020820190508181036000830152613fac81613f70565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613fda82613fb3565b613fe48185613fbe565b9350613ff481856020860161309b565b613ffd816130c5565b840191505092915050565b600060808201905061401d60008301876131bc565b61402a60208301866131bc565b6140376040830185612f86565b81810360608301526140498184613fcf565b905095945050505050565b60008151905061406381612ff0565b92915050565b60006020828403121561407f5761407e612fba565b5b600061408d84828501614054565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140d082612f7c565b91506140db83612f7c565b9250826140eb576140ea614096565b5b828204905092915050565b600061410182612f7c565b915061410c83612f7c565b925082820390508181111561412457614123613b61565b5b92915050565b600061413582612f7c565b915061414083612f7c565b9250826141505761414f614096565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e5286bac2ac1fbc3d61d3ac2b532c91755b84f40bdfe2408dc14c41f3001f8bf64736f6c63430008120033697066733a2f2f62616679626569626e74623771666a6d347764357564346b3437746572616a6835707169376d6172376a6d6467706c65376f3675787272376a6a752f
Deployed Bytecode
0x60806040526004361061023b5760003560e01c8063715018a61161012e578063c87b56dd116100ab578063e0a808531161006f578063e0a808531461081a578063e985e9c514610843578063efbd73f414610880578063f2fde38b146108a9578063f676308a146108d25761023b565b8063c87b56dd14610745578063cfc86f7b14610782578063d1239730146107ad578063d2ed5c59146107d8578063d5abeb01146107ef5761023b565b8063a0712d68116100f2578063a0712d6814610683578063a22cb4651461069f578063a45ba8e7146106c8578063b071401b146106f3578063b88d4fde1461071c5761023b565b8063715018a6146105c25780637b2f1595146105d95780638da5cb5b1461060257806394354fd01461062d57806395d89b41146106585761023b565b80633ccfd60b116101bc57806355f804b31161018057806355f804b3146104c95780635c975abb146104f25780636352211e1461051d57806366e982611461055a57806370a08231146105855761023b565b80633ccfd60b1461040c57806342842e0e1461042357806344a0d68a1461044c5780634fdd43cb14610475578063518302271461049e5761023b565b806313faede61161020357806313faede61461033957806316c38b3c1461036457806318160ddd1461038d57806323b872dd146103b857806324a6ab0c146103e15761023b565b80630156347e1461024057806301ffc9a71461026b57806306fdde03146102a8578063081812fc146102d3578063095ea7b314610310575b600080fd5b34801561024c57600080fd5b506102556108fb565b6040516102629190612f95565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d919061301c565b610901565b60405161029f9190613064565b60405180910390f35b3480156102b457600080fd5b506102bd6109e3565b6040516102ca919061310f565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f5919061315d565b610a75565b60405161030791906131cb565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190613212565b610af1565b005b34801561034557600080fd5b5061034e610bfb565b60405161035b9190612f95565b60405180910390f35b34801561037057600080fd5b5061038b6004803603810190610386919061327e565b610c01565b005b34801561039957600080fd5b506103a2610c9a565b6040516103af9190612f95565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da91906132ab565b610cb1565b005b3480156103ed57600080fd5b506103f6610cc1565b6040516104039190612f95565b60405180910390f35b34801561041857600080fd5b50610421610cc7565b005b34801561042f57600080fd5b5061044a600480360381019061044591906132ab565b610e18565b005b34801561045857600080fd5b50610473600480360381019061046e919061315d565b610e38565b005b34801561048157600080fd5b5061049c60048036038101906104979190613433565b610ebe565b005b3480156104aa57600080fd5b506104b3610f4d565b6040516104c09190613064565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190613433565b610f60565b005b3480156104fe57600080fd5b50610507610fef565b6040516105149190613064565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f919061315d565b611002565b60405161055191906131cb565b60405180910390f35b34801561056657600080fd5b5061056f611018565b60405161057c9190612f95565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a7919061347c565b61101e565b6040516105b99190612f95565b60405180910390f35b3480156105ce57600080fd5b506105d76110ed565b005b3480156105e557600080fd5b5061060060048036038101906105fb919061315d565b611175565b005b34801561060e57600080fd5b506106176111fb565b60405161062491906131cb565b60405180910390f35b34801561063957600080fd5b50610642611225565b60405161064f9190612f95565b60405180910390f35b34801561066457600080fd5b5061066d61122b565b60405161067a919061310f565b60405180910390f35b61069d6004803603810190610698919061315d565b6112bd565b005b3480156106ab57600080fd5b506106c660048036038101906106c191906134a9565b611596565b005b3480156106d457600080fd5b506106dd61170d565b6040516106ea919061310f565b60405180910390f35b3480156106ff57600080fd5b5061071a6004803603810190610715919061315d565b61179b565b005b34801561072857600080fd5b50610743600480360381019061073e919061358a565b611821565b005b34801561075157600080fd5b5061076c6004803603810190610767919061315d565b61189d565b604051610779919061310f565b60405180910390f35b34801561078e57600080fd5b506107976119c7565b6040516107a4919061310f565b60405180910390f35b3480156107b957600080fd5b506107c2611a55565b6040516107cf9190613064565b60405180910390f35b3480156107e457600080fd5b506107ed611a68565b005b3480156107fb57600080fd5b50610804611b10565b6040516108119190612f95565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061327e565b611b16565b005b34801561084f57600080fd5b5061086a6004803603810190610865919061360d565b611baf565b6040516108779190613064565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a2919061364d565b611c43565b005b3480156108b557600080fd5b506108d060048036038101906108cb919061347c565b611ccd565b005b3480156108de57600080fd5b506108f960048036038101906108f4919061315d565b611dc4565b005b60115481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109cc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109dc57506109db82611e4a565b5b9050919050565b6060600280546109f2906136bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1e906136bc565b8015610a6b5780601f10610a4057610100808354040283529160200191610a6b565b820191906000526020600020905b815481529060010190602001808311610a4e57829003601f168201915b5050505050905090565b6000610a8082611eb4565b610ab6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610afc82611002565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b63576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b82611f02565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bb45750610bb281610bad611f02565b611baf565b155b15610beb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bf6838383611f0a565b505050565b600c5481565b610c09611f02565b73ffffffffffffffffffffffffffffffffffffffff16610c276111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490613739565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000610ca4611fbc565b6001546000540303905090565b610cbc838383611fc5565b505050565b600e5481565b610ccf611f02565b73ffffffffffffffffffffffffffffffffffffffff16610ced6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90613739565b60405180910390fd5b600260095403610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f906137a5565b60405180910390fd5b60026009819055506000610d9a6111fb565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dbd906137f6565b60006040518083038185875af1925050503d8060008114610dfa576040519150601f19603f3d011682016040523d82523d6000602084013e610dff565b606091505b5050905080610e0d57600080fd5b506001600981905550565b610e3383838360405180602001604052806000815250611821565b505050565b610e40611f02565b73ffffffffffffffffffffffffffffffffffffffff16610e5e6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab90613739565b60405180910390fd5b80600c8190555050565b610ec6611f02565b73ffffffffffffffffffffffffffffffffffffffff16610ee46111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190613739565b60405180910390fd5b80600b9081610f4991906139b7565b5050565b601260019054906101000a900460ff1681565b610f68611f02565b73ffffffffffffffffffffffffffffffffffffffff16610f866111fb565b73ffffffffffffffffffffffffffffffffffffffff1614610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390613739565b60405180910390fd5b80600a9081610feb91906139b7565b5050565b601260009054906101000a900460ff1681565b600061100d82612479565b600001519050919050565b60105481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611085576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110f5611f02565b73ffffffffffffffffffffffffffffffffffffffff166111136111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116090613739565b60405180910390fd5b6111736000612708565b565b61117d611f02565b73ffffffffffffffffffffffffffffffffffffffff1661119b6111fb565b73ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613739565b60405180910390fd5b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606003805461123a906136bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611266906136bc565b80156112b35780601f10611288576101008083540402835291602001916112b3565b820191906000526020600020905b81548152906001019060200180831161129657829003601f168201915b5050505050905090565b600260095403611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f9906137a5565b60405180910390fd5b6002600981905550601260029054906101000a900460ff16611359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135090613ad5565b60405180910390fd5b600080600c5411156113bb576000821180156113775750600f548211155b6113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90613b41565b60405180910390fd5b611463565b600190506000821180156113d157506010548211155b611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790613b41565b60405180910390fd5b600e54826011546114219190613b90565b1115611462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145990613c10565b60405180910390fd5b5b600d548261146f610c9a565b6114799190613b90565b11156114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190613c7c565b60405180910390fd5b601260009054906101000a900460ff161561150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190613ce8565b60405180910390fd5b81600c546115189190613d08565b34101561155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190613d96565b60405180910390fd5b8015611579576011600081548092919061157390613db6565b91905055505b61158a611584611f02565b836127ce565b50600160098190555050565b61159e611f02565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611602576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061160f611f02565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116bc611f02565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117019190613064565b60405180910390a35050565b600b805461171a906136bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611746906136bc565b80156117935780601f1061176857610100808354040283529160200191611793565b820191906000526020600020905b81548152906001019060200180831161177657829003601f168201915b505050505081565b6117a3611f02565b73ffffffffffffffffffffffffffffffffffffffff166117c16111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e90613739565b60405180910390fd5b80600f8190555050565b61182c848484611fc5565b61184b8373ffffffffffffffffffffffffffffffffffffffff166127ec565b8015611860575061185e8484848461280f565b155b15611897576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118a882611eb4565b6118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613e4a565b60405180910390fd5b601260019054906101000a900460ff16156119345761190461295f565b61190d836129f1565b60405160200161191e929190613ef2565b60405160208183030381529060405290506119c2565b600b8054611941906136bc565b80601f016020809104026020016040519081016040528092919081815260200182805461196d906136bc565b80156119ba5780601f1061198f576101008083540402835291602001916119ba565b820191906000526020600020905b81548152906001019060200180831161199d57829003601f168201915b505050505090505b919050565b600a80546119d4906136bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611a00906136bc565b8015611a4d5780601f10611a2257610100808354040283529160200191611a4d565b820191906000526020600020905b815481529060010190602001808311611a3057829003601f168201915b505050505081565b601260029054906101000a900460ff1681565b611a70611f02565b73ffffffffffffffffffffffffffffffffffffffff16611a8e6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90613739565b60405180910390fd5b601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550565b600d5481565b611b1e611f02565b73ffffffffffffffffffffffffffffffffffffffff16611b3c6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8990613739565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c4b611f02565b73ffffffffffffffffffffffffffffffffffffffff16611c696111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690613739565b60405180910390fd5b611cc981836127ce565b5050565b611cd5611f02565b73ffffffffffffffffffffffffffffffffffffffff16611cf36111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4090613739565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf90613f93565b60405180910390fd5b611dc181612708565b50565b611dcc611f02565b73ffffffffffffffffffffffffffffffffffffffff16611dea6111fb565b73ffffffffffffffffffffffffffffffffffffffff1614611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3790613739565b60405180910390fd5b80600e8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611ebf611fbc565b11158015611ece575060005482105b8015611efb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611fd082612479565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461203b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661205c611f02565b73ffffffffffffffffffffffffffffffffffffffff16148061208b575061208a85612085611f02565b611baf565b5b806120d05750612099611f02565b73ffffffffffffffffffffffffffffffffffffffff166120b884610a75565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612109576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361216f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61217c8585856001612b51565b61218860008487611f0a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361240757600054821461240657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124728585856001612b57565b5050505050565b612481612f39565b60008290508061248f611fbc565b1115801561249e575060005481105b156126d1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516126cf57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125b3578092505050612703565b5b6001156126ce57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126c9578092505050612703565b6125b4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127e8828260405180602001604052806000815250612b5d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612835611f02565b8786866040518563ffffffff1660e01b81526004016128579493929190614008565b6020604051808303816000875af192505050801561289357506040513d601f19601f820116820180604052508101906128909190614069565b60015b61290c573d80600081146128c3576040519150601f19603f3d011682016040523d82523d6000602084013e6128c8565b606091505b506000815103612904576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461296e906136bc565b80601f016020809104026020016040519081016040528092919081815260200182805461299a906136bc565b80156129e75780601f106129bc576101008083540402835291602001916129e7565b820191906000526020600020905b8154815290600101906020018083116129ca57829003601f168201915b5050505050905090565b606060008203612a38576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b4c565b600082905060005b60008214612a6a578080612a5390613db6565b915050600a82612a6391906140c5565b9150612a40565b60008167ffffffffffffffff811115612a8657612a85613308565b5b6040519080825280601f01601f191660200182016040528015612ab85781602001600182028036833780820191505090505b5090505b60008514612b4557600182612ad191906140f6565b9150600a85612ae0919061412a565b6030612aec9190613b90565b60f81b818381518110612b0257612b0161415b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b3e91906140c5565b9450612abc565b8093505050505b919050565b50505050565b50505050565b612b6a8383836001612b6f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612bdb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612c15576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c226000868387612b51565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612dec5750612deb8773ffffffffffffffffffffffffffffffffffffffff166127ec565b5b15612eb1575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e61600088848060010195508861280f565b612e97576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612df2578260005414612eac57600080fd5b612f1c565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612eb2575b816000819055505050612f326000868387612b57565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000819050919050565b612f8f81612f7c565b82525050565b6000602082019050612faa6000830184612f86565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ff981612fc4565b811461300457600080fd5b50565b60008135905061301681612ff0565b92915050565b60006020828403121561303257613031612fba565b5b600061304084828501613007565b91505092915050565b60008115159050919050565b61305e81613049565b82525050565b60006020820190506130796000830184613055565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130b957808201518184015260208101905061309e565b60008484015250505050565b6000601f19601f8301169050919050565b60006130e18261307f565b6130eb818561308a565b93506130fb81856020860161309b565b613104816130c5565b840191505092915050565b6000602082019050818103600083015261312981846130d6565b905092915050565b61313a81612f7c565b811461314557600080fd5b50565b60008135905061315781613131565b92915050565b60006020828403121561317357613172612fba565b5b600061318184828501613148565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131b58261318a565b9050919050565b6131c5816131aa565b82525050565b60006020820190506131e060008301846131bc565b92915050565b6131ef816131aa565b81146131fa57600080fd5b50565b60008135905061320c816131e6565b92915050565b6000806040838503121561322957613228612fba565b5b6000613237858286016131fd565b925050602061324885828601613148565b9150509250929050565b61325b81613049565b811461326657600080fd5b50565b60008135905061327881613252565b92915050565b60006020828403121561329457613293612fba565b5b60006132a284828501613269565b91505092915050565b6000806000606084860312156132c4576132c3612fba565b5b60006132d2868287016131fd565b93505060206132e3868287016131fd565b92505060406132f486828701613148565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613340826130c5565b810181811067ffffffffffffffff8211171561335f5761335e613308565b5b80604052505050565b6000613372612fb0565b905061337e8282613337565b919050565b600067ffffffffffffffff82111561339e5761339d613308565b5b6133a7826130c5565b9050602081019050919050565b82818337600083830152505050565b60006133d66133d184613383565b613368565b9050828152602081018484840111156133f2576133f1613303565b5b6133fd8482856133b4565b509392505050565b600082601f83011261341a576134196132fe565b5b813561342a8482602086016133c3565b91505092915050565b60006020828403121561344957613448612fba565b5b600082013567ffffffffffffffff81111561346757613466612fbf565b5b61347384828501613405565b91505092915050565b60006020828403121561349257613491612fba565b5b60006134a0848285016131fd565b91505092915050565b600080604083850312156134c0576134bf612fba565b5b60006134ce858286016131fd565b92505060206134df85828601613269565b9150509250929050565b600067ffffffffffffffff82111561350457613503613308565b5b61350d826130c5565b9050602081019050919050565b600061352d613528846134e9565b613368565b90508281526020810184848401111561354957613548613303565b5b6135548482856133b4565b509392505050565b600082601f830112613571576135706132fe565b5b813561358184826020860161351a565b91505092915050565b600080600080608085870312156135a4576135a3612fba565b5b60006135b2878288016131fd565b94505060206135c3878288016131fd565b93505060406135d487828801613148565b925050606085013567ffffffffffffffff8111156135f5576135f4612fbf565b5b6136018782880161355c565b91505092959194509250565b6000806040838503121561362457613623612fba565b5b6000613632858286016131fd565b9250506020613643858286016131fd565b9150509250929050565b6000806040838503121561366457613663612fba565b5b600061367285828601613148565b9250506020613683858286016131fd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136d457607f821691505b6020821081036136e7576136e661368d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061372360208361308a565b915061372e826136ed565b602082019050919050565b6000602082019050818103600083015261375281613716565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061378f601f8361308a565b915061379a82613759565b602082019050919050565b600060208201905081810360008301526137be81613782565b9050919050565b600081905092915050565b50565b60006137e06000836137c5565b91506137eb826137d0565b600082019050919050565b6000613801826137d3565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261386d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613830565b6138778683613830565b95508019841693508086168417925050509392505050565b6000819050919050565b60006138b46138af6138aa84612f7c565b61388f565b612f7c565b9050919050565b6000819050919050565b6138ce83613899565b6138e26138da826138bb565b84845461383d565b825550505050565b600090565b6138f76138ea565b6139028184846138c5565b505050565b5b818110156139265761391b6000826138ef565b600181019050613908565b5050565b601f82111561396b5761393c8161380b565b61394584613820565b81016020851015613954578190505b61396861396085613820565b830182613907565b50505b505050565b600082821c905092915050565b600061398e60001984600802613970565b1980831691505092915050565b60006139a7838361397d565b9150826002028217905092915050565b6139c08261307f565b67ffffffffffffffff8111156139d9576139d8613308565b5b6139e382546136bc565b6139ee82828561392a565b600060209050601f831160018114613a215760008415613a0f578287015190505b613a19858261399b565b865550613a81565b601f198416613a2f8661380b565b60005b82811015613a5757848901518255600182019150602085019450602081019050613a32565b86831015613a745784890151613a70601f89168261397d565b8355505b6001600288020188555050505b505050505050565b7f4d696e74206973206e6f74206c697665207965742e0000000000000000000000600082015250565b6000613abf60158361308a565b9150613aca82613a89565b602082019050919050565b60006020820190508181036000830152613aee81613ab2565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613b2b60148361308a565b9150613b3682613af5565b602082019050919050565b60006020820190508181036000830152613b5a81613b1e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b9b82612f7c565b9150613ba683612f7c565b9250828201905080821115613bbe57613bbd613b61565b5b92915050565b7f4d61782046726565537570706c79206578636565646564210000000000000000600082015250565b6000613bfa60188361308a565b9150613c0582613bc4565b602082019050919050565b60006020820190508181036000830152613c2981613bed565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613c6660148361308a565b9150613c7182613c30565b602082019050919050565b60006020820190508181036000830152613c9581613c59565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613cd260178361308a565b9150613cdd82613c9c565b602082019050919050565b60006020820190508181036000830152613d0181613cc5565b9050919050565b6000613d1382612f7c565b9150613d1e83612f7c565b9250828202613d2c81612f7c565b91508282048414831517613d4357613d42613b61565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613d8060138361308a565b9150613d8b82613d4a565b602082019050919050565b60006020820190508181036000830152613daf81613d73565b9050919050565b6000613dc182612f7c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613df357613df2613b61565b5b600182019050919050565b7f55524920646f6573206e6f742065786973742100000000000000000000000000600082015250565b6000613e3460138361308a565b9150613e3f82613dfe565b602082019050919050565b60006020820190508181036000830152613e6381613e27565b9050919050565b600081905092915050565b6000613e808261307f565b613e8a8185613e6a565b9350613e9a81856020860161309b565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613edc600583613e6a565b9150613ee782613ea6565b600582019050919050565b6000613efe8285613e75565b9150613f0a8284613e75565b9150613f1582613ecf565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f7d60268361308a565b9150613f8882613f21565b604082019050919050565b60006020820190508181036000830152613fac81613f70565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613fda82613fb3565b613fe48185613fbe565b9350613ff481856020860161309b565b613ffd816130c5565b840191505092915050565b600060808201905061401d60008301876131bc565b61402a60208301866131bc565b6140376040830185612f86565b81810360608301526140498184613fcf565b905095945050505050565b60008151905061406381612ff0565b92915050565b60006020828403121561407f5761407e612fba565b5b600061408d84828501614054565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140d082612f7c565b91506140db83612f7c565b9250826140eb576140ea614096565b5b828204905092915050565b600061410182612f7c565b915061410c83612f7c565b925082820390508181111561412457614123613b61565b5b92915050565b600061413582612f7c565b915061414083612f7c565b9250826141505761414f614096565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e5286bac2ac1fbc3d61d3ac2b532c91755b84f40bdfe2408dc14c41f3001f8bf64736f6c63430008120033
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.