More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 2,862 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 70166472 | 11 days ago | IN | 0 POL | 0.00140363 | ||||
Set Approval For... | 70013191 | 15 days ago | IN | 0 POL | 0.00270279 | ||||
Set Approval For... | 69786830 | 21 days ago | IN | 0 POL | 0.00074121 | ||||
Safe Transfer Fr... | 69250362 | 34 days ago | IN | 0 POL | 0.00271696 | ||||
Set Approval For... | 69188422 | 36 days ago | IN | 0 POL | 0.00121427 | ||||
Safe Transfer Fr... | 68974966 | 41 days ago | IN | 0 POL | 0.00263256 | ||||
Set Approval For... | 68925010 | 42 days ago | IN | 0 POL | 0.00255415 | ||||
Set Approval For... | 68767075 | 46 days ago | IN | 0 POL | 0.00351939 | ||||
Set Approval For... | 68700439 | 48 days ago | IN | 0 POL | 0.00140109 | ||||
Set Approval For... | 68668003 | 49 days ago | IN | 0 POL | 0.00250584 | ||||
Set Approval For... | 68360343 | 56 days ago | IN | 0 POL | 0.00781245 | ||||
Set Approval For... | 68135275 | 62 days ago | IN | 0 POL | 0.00139857 | ||||
Set Approval For... | 67472815 | 79 days ago | IN | 0 POL | 0.05293409 | ||||
Set Approval For... | 67360727 | 81 days ago | IN | 0 POL | 0.00121209 | ||||
Set Approval For... | 67324772 | 82 days ago | IN | 0 POL | 0.00139857 | ||||
Set Approval For... | 67159320 | 87 days ago | IN | 0 POL | 0.00135578 | ||||
Safe Transfer Fr... | 66853773 | 94 days ago | IN | 0 POL | 0.00937914 | ||||
Safe Transfer Fr... | 66851582 | 94 days ago | IN | 0 POL | 0.00981527 | ||||
Set Approval For... | 66332529 | 107 days ago | IN | 0 POL | 0.00139907 | ||||
Set Approval For... | 66295292 | 108 days ago | IN | 0 POL | 0.0016268 | ||||
Set Approval For... | 65839707 | 120 days ago | IN | 0 POL | 0.00252203 | ||||
Mint | 65518747 | 128 days ago | IN | 0 POL | 0.00091512 | ||||
Safe Transfer Fr... | 65388232 | 131 days ago | IN | 0 POL | 0.00280932 | ||||
Set Approval For... | 65337429 | 133 days ago | IN | 0 POL | 0.00139857 | ||||
Set Approval For... | 65241788 | 135 days ago | IN | 0 POL | 0.00140109 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
NFT
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/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/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/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/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/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/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/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: @openzeppelin/contracts/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/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/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the Merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates Merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** *@dev The multiproof provided is not valid. */ error MerkleProofInvalidMultiproof(); /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} */ function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the Merkle tree. uint256 leavesLen = leaves.length; uint256 proofLen = proof.length; uint256 totalHashes = proofFlags.length; // Check proof validity. if (leavesLen + proofLen != totalHashes + 1) { revert MerkleProofInvalidMultiproof(); } // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { if (proofPos != proofLen) { revert MerkleProofInvalidMultiproof(); } unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the Merkle tree. uint256 leavesLen = leaves.length; uint256 proofLen = proof.length; uint256 totalHashes = proofFlags.length; // Check proof validity. if (leavesLen + proofLen != totalHashes + 1) { revert MerkleProofInvalidMultiproof(); } // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { if (proofPos != proofLen) { revert MerkleProofInvalidMultiproof(); } unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Sorts the pair (a, b) and hashes the result. */ function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } /** * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory. */ function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } pragma solidity >=0.7.0 <0.9.0; contract NFT is ERC721Enumerable, Ownable { using Strings for uint256; string private baseURI; string private notRevealedUri; string public baseExtension = ".json"; uint256 public maxSupply = 4500; uint256 public mintStartDate; uint256 public mintEndDate; uint256 public maxMintAmountPerWallet = 1; bool public paused = true; bool public revealed = false; bytes32 public merkleRoot; // Merkle Root to verify against mapping(address => uint256) public mintedBalance; constructor(bytes32 _merkleRoot) ERC721("Locus Fleet: Special Proto Craft", "LFSPC") { setBaseURI("ipfs://"); setNotRevealedURI("ipfs://ipfs/QmcDJUo3bvhok2gwvmx56DzkZNL5vcVLpa7NTmz1sPQ7LZ/"); mintStartDate = 1727359200; mintEndDate = mintStartDate + (72 hours); merkleRoot = _merkleRoot; } function _baseURI() internal view virtual override returns (string memory) { return revealed ? baseURI : notRevealedUri; } function mint(bytes32[] calldata _merkleProof) public { require(!paused, "Minting is currently paused."); require(block.timestamp >= mintStartDate && block.timestamp <= mintEndDate, "Minting is not in the allowed period."); require(mintedBalance[msg.sender] < maxMintAmountPerWallet, "Already minted the maximum allowed per wallet."); require(totalSupply() < maxSupply, "Exceeds maximum supply"); // Verify the Merkle Proof bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Address is not whitelisted."); mintedBalance[msg.sender]++; _safeMint(msg.sender, totalSupply() + 1); } function ownerMint(uint256 _mintAmount) public onlyOwner { require(totalSupply() + _mintAmount <= maxSupply, "Exceeds maximum supply"); for (uint256 i = 0; i < _mintAmount; i++) { _safeMint(msg.sender, totalSupply() + 1); } } function updateMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function reveal() public onlyOwner { revealed = true; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (!revealed) { return notRevealedUri; } else { string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setMintStartDate(uint256 _newMintStartDate) public onlyOwner { mintStartDate = _newMintStartDate; } function setMintEndDate(uint256 _newMintEndDate) public onlyOwner { mintEndDate = _newMintEndDate; } function setNotRevealedURI(string memory _newNotRevealedUri) public onlyOwner { notRevealedUri = _newNotRevealedUri; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function isWhitelisted(address _addr, bytes32[] calldata _merkleProof) public view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(_addr)); return MerkleProof.verify(_merkleProof, merkleRoot, leaf); } }
{ "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
Contract ABI
API[{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintEndDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintStartDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","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":"reveal","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintEndDate","type":"uint256"}],"name":"setMintEndDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintStartDate","type":"uint256"}],"name":"setMintStartDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newNotRevealedUri","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9081610048919061065a565b50611194600e556001601155600160125f6101000a81548160ff0219169083151502179055505f601260016101000a81548160ff021916908315150217905550348015610093575f80fd5b5060405161509b38038061509b83398181016040528101906100b59190610760565b6040518060400160405280602081526020017f4c6f63757320466c6565743a205370656369616c2050726f746f2043726166748152506040518060400160405280600581526020017f4c46535043000000000000000000000000000000000000000000000000000000815250815f908161012f919061065a565b50806001908161013f919061065a565b50505061015e6101536101f860201b60201c565b6101ff60201b60201c565b6101a26040518060400160405280600781526020017f697066733a2f2f000000000000000000000000000000000000000000000000008152506102c260201b60201c565b6101c96040518060600160405280603b8152602001615060603b913961035d60201b60201c565b6366f568e0600f819055506203f480600f546101e591906107b8565b6010819055508060138190555050610863565b5f33905090565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6102d06101f860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166102f46103f860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161461034a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161034190610845565b60405180910390fd5b80600b9081610359919061065a565b5050565b61036b6101f860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1661038f6103f860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146103e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103dc90610845565b60405180910390fd5b80600c90816103f4919061065a565b5050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061049b57607f821691505b6020821081036104ae576104ad610457565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105107fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826104d5565b61051a86836104d5565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61055e61055961055484610532565b61053b565b610532565b9050919050565b5f819050919050565b61057783610544565b61058b61058382610565565b8484546104e1565b825550505050565b5f90565b61059f610593565b6105aa81848461056e565b505050565b5b818110156105cd576105c25f82610597565b6001810190506105b0565b5050565b601f821115610612576105e3816104b4565b6105ec846104c6565b810160208510156105fb578190505b61060f610607856104c6565b8301826105af565b50505b505050565b5f82821c905092915050565b5f6106325f1984600802610617565b1980831691505092915050565b5f61064a8383610623565b9150826002028217905092915050565b61066382610420565b67ffffffffffffffff81111561067c5761067b61042a565b5b6106868254610484565b6106918282856105d1565b5f60209050601f8311600181146106c2575f84156106b0578287015190505b6106ba858261063f565b865550610721565b601f1984166106d0866104b4565b5f5b828110156106f7578489015182556001820191506020850194506020810190506106d2565b868310156107145784890151610710601f891682610623565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f819050919050565b61073f8161072d565b8114610749575f80fd5b50565b5f8151905061075a81610736565b92915050565b5f6020828403121561077557610774610729565b5b5f6107828482850161074c565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6107c282610532565b91506107cd83610532565b92508282019050808211156107e5576107e461078b565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61082f6020836107eb565b915061083a826107fb565b602082019050919050565b5f6020820190508181035f83015261085c81610823565b9050919050565b6147f0806108705f395ff3fe608060405234801561000f575f80fd5b506004361061023b575f3560e01c806370a0823111610139578063bc951b91116100b6578063e051b4161161007a578063e051b4161461068b578063e985e9c5146106bb578063f19e75d4146106eb578063f2c4ce1e14610707578063f2fde38b146107235761023b565b8063bc951b91146105e5578063c668286214610603578063c87b56dd14610621578063d5abeb0114610651578063da3ef23f1461066f5761023b565b806395d89b41116100fd57806395d89b4114610569578063a22cb46514610587578063a475b5dd146105a3578063b77a147b146105ad578063b88d4fde146105c95761023b565b806370a08231146104d7578063715018a6146105075780638ab517d1146105115780638da5cb5b1461052d57806395b1b6801461054b5761023b565b806342842e0e116101c757806355f804b31161018b57806355f804b3146104215780635a23dd991461043d5780635c975abb1461046d5780636352211e1461048b578063700738f8146104bb5761023b565b806342842e0e1461037d5780634783f0ef1461039957806349b5fe1f146103b55780634f6ccce7146103d357806351830227146104035761023b565b8063095ea7b31161020e578063095ea7b3146102d957806318160ddd146102f557806323b872dd146103135780632eb4a7ab1461032f5780632f745c591461034d5761023b565b806301ffc9a71461023f57806302329a291461026f57806306fdde031461028b578063081812fc146102a9575b5f80fd5b61025960048036038101906102549190612db8565b61073f565b6040516102669190612dfd565b60405180910390f35b61028960048036038101906102849190612e40565b6107b8565b005b610293610850565b6040516102a09190612edb565b60405180910390f35b6102c360048036038101906102be9190612f2e565b6108df565b6040516102d09190612f98565b60405180910390f35b6102f360048036038101906102ee9190612fdb565b610960565b005b6102fd610a76565b60405161030a9190613028565b60405180910390f35b61032d60048036038101906103289190613041565b610a82565b005b610337610ae2565b60405161034491906130a9565b60405180910390f35b61036760048036038101906103629190612fdb565b610ae8565b6040516103749190613028565b60405180910390f35b61039760048036038101906103929190613041565b610b88565b005b6103b360048036038101906103ae91906130ec565b610ba7565b005b6103bd610c2d565b6040516103ca9190613028565b60405180910390f35b6103ed60048036038101906103e89190612f2e565b610c33565b6040516103fa9190613028565b60405180910390f35b61040b610ca1565b6040516104189190612dfd565b60405180910390f35b61043b60048036038101906104369190613243565b610cb4565b005b610457600480360381019061045291906132e7565b610d43565b6040516104649190612dfd565b60405180910390f35b610475610dc5565b6040516104829190612dfd565b60405180910390f35b6104a560048036038101906104a09190612f2e565b610dd7565b6040516104b29190612f98565b60405180910390f35b6104d560048036038101906104d09190612f2e565b610e83565b005b6104f160048036038101906104ec9190613344565b610f09565b6040516104fe9190613028565b60405180910390f35b61050f610fbd565b005b61052b60048036038101906105269190612f2e565b611044565b005b6105356110ca565b6040516105429190612f98565b60405180910390f35b6105536110f2565b6040516105609190613028565b60405180910390f35b6105716110f8565b60405161057e9190612edb565b60405180910390f35b6105a1600480360381019061059c919061336f565b611188565b005b6105ab611303565b005b6105c760048036038101906105c291906133ad565b61139c565b005b6105e360048036038101906105de9190613496565b611634565b005b6105ed611696565b6040516105fa9190613028565b60405180910390f35b61060b61169c565b6040516106189190612edb565b60405180910390f35b61063b60048036038101906106369190612f2e565b611728565b6040516106489190612edb565b60405180910390f35b610659611874565b6040516106669190613028565b60405180910390f35b61068960048036038101906106849190613243565b61187a565b005b6106a560048036038101906106a09190613344565b611909565b6040516106b29190613028565b60405180910390f35b6106d560048036038101906106d09190613516565b61191e565b6040516106e29190612dfd565b60405180910390f35b61070560048036038101906107009190612f2e565b6119ac565b005b610721600480360381019061071c9190613243565b611ab7565b005b61073d60048036038101906107389190613344565b611b46565b005b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b157506107b082611c3c565b5b9050919050565b6107c0611d1d565b73ffffffffffffffffffffffffffffffffffffffff166107de6110ca565b73ffffffffffffffffffffffffffffffffffffffff1614610834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082b9061359e565b60405180910390fd5b8060125f6101000a81548160ff02191690831515021790555050565b60605f805461085e906135e9565b80601f016020809104026020016040519081016040528092919081815260200182805461088a906135e9565b80156108d55780601f106108ac576101008083540402835291602001916108d5565b820191905f5260205f20905b8154815290600101906020018083116108b857829003601f168201915b5050505050905090565b5f6108e982611d24565b610928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091f90613689565b60405180910390fd5b60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61096a82610dd7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190613717565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f9611d1d565b73ffffffffffffffffffffffffffffffffffffffff161480610a285750610a2781610a22611d1d565b61191e565b5b610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e906137a5565b60405180910390fd5b610a718383611d8c565b505050565b5f600880549050905090565b610a93610a8d611d1d565b82611e42565b610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac990613833565b60405180910390fd5b610add838383611f1e565b505050565b60135481565b5f610af283610f09565b8210610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a906138c1565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b610ba283838360405180602001604052805f815250611634565b505050565b610baf611d1d565b73ffffffffffffffffffffffffffffffffffffffff16610bcd6110ca565b73ffffffffffffffffffffffffffffffffffffffff1614610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a9061359e565b60405180910390fd5b8060138190555050565b600f5481565b5f610c3c610a76565b8210610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c749061394f565b60405180910390fd5b60088281548110610c9157610c9061396d565b5b905f5260205f2001549050919050565b601260019054906101000a900460ff1681565b610cbc611d1d565b73ffffffffffffffffffffffffffffffffffffffff16610cda6110ca565b73ffffffffffffffffffffffffffffffffffffffff1614610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d279061359e565b60405180910390fd5b80600b9081610d3f9190613b37565b5050565b5f8084604051602001610d569190613c4b565b604051602081830303815290604052805190602001209050610dbb8484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f820116905080830192505050505050506013548361216e565b9150509392505050565b60125f9054906101000a900460ff1681565b5f8060025f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190613cd5565b60405180910390fd5b80915050919050565b610e8b611d1d565b73ffffffffffffffffffffffffffffffffffffffff16610ea96110ca565b73ffffffffffffffffffffffffffffffffffffffff1614610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef69061359e565b60405180910390fd5b8060108190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90613d63565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610fc5611d1d565b73ffffffffffffffffffffffffffffffffffffffff16610fe36110ca565b73ffffffffffffffffffffffffffffffffffffffff1614611039576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110309061359e565b60405180910390fd5b6110425f612184565b565b61104c611d1d565b73ffffffffffffffffffffffffffffffffffffffff1661106a6110ca565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b79061359e565b60405180910390fd5b80600f8190555050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b606060018054611107906135e9565b80601f0160208091040260200160405190810160405280929190818152602001828054611133906135e9565b801561117e5780601f106111555761010080835404028352916020019161117e565b820191905f5260205f20905b81548152906001019060200180831161116157829003601f168201915b5050505050905090565b611190611d1d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490613dcb565b60405180910390fd5b8060055f611209611d1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112b2611d1d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112f79190612dfd565b60405180910390a35050565b61130b611d1d565b73ffffffffffffffffffffffffffffffffffffffff166113296110ca565b73ffffffffffffffffffffffffffffffffffffffff161461137f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113769061359e565b60405180910390fd5b6001601260016101000a81548160ff021916908315150217905550565b60125f9054906101000a900460ff16156113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290613e33565b60405180910390fd5b600f5442101580156113ff57506010544211155b61143e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143590613ec1565b60405180910390fd5b60115460145f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054106114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690613f4f565b60405180910390fd5b600e546114ca610a76565b1061150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190613fb7565b60405180910390fd5b5f3360405160200161151c9190613c4b565b6040516020818303038152906040528051906020012090506115818383808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f820116905080830192505050505050506013548361216e565b6115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b79061401f565b60405180910390fd5b60145f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81548092919061160d9061406a565b919050555061162f336001611620610a76565b61162a91906140b1565b612247565b505050565b61164561163f611d1d565b83611e42565b611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90613833565b60405180910390fd5b61169084848484612264565b50505050565b60115481565b600d80546116a9906135e9565b80601f01602080910402602001604051908101604052809291908181526020018280546116d5906135e9565b80156117205780601f106116f757610100808354040283529160200191611720565b820191905f5260205f20905b81548152906001019060200180831161170357829003601f168201915b505050505081565b606061173382611d24565b611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990614154565b60405180910390fd5b601260019054906101000a900460ff1661181657600c8054611793906135e9565b80601f01602080910402602001604051908101604052809291908181526020018280546117bf906135e9565b801561180a5780601f106117e15761010080835404028352916020019161180a565b820191905f5260205f20905b8154815290600101906020018083116117ed57829003601f168201915b5050505050905061186f565b5f61181f6122c0565b90505f81511161183d5760405180602001604052805f81525061186b565b806118478461236c565b600d60405160200161185b9392919061422c565b6040516020818303038152906040525b9150505b919050565b600e5481565b611882611d1d565b73ffffffffffffffffffffffffffffffffffffffff166118a06110ca565b73ffffffffffffffffffffffffffffffffffffffff16146118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed9061359e565b60405180910390fd5b80600d90816119059190613b37565b5050565b6014602052805f5260405f205f915090505481565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6119b4611d1d565b73ffffffffffffffffffffffffffffffffffffffff166119d26110ca565b73ffffffffffffffffffffffffffffffffffffffff1614611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f9061359e565b60405180910390fd5b600e5481611a34610a76565b611a3e91906140b1565b1115611a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7690613fb7565b60405180910390fd5b5f5b81811015611ab357611aa6336001611a97610a76565b611aa191906140b1565b612247565b8080600101915050611a81565b5050565b611abf611d1d565b73ffffffffffffffffffffffffffffffffffffffff16611add6110ca565b73ffffffffffffffffffffffffffffffffffffffff1614611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a9061359e565b60405180910390fd5b80600c9081611b429190613b37565b5050565b611b4e611d1d565b73ffffffffffffffffffffffffffffffffffffffff16611b6c6110ca565b73ffffffffffffffffffffffffffffffffffffffff1614611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb99061359e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c27906142cc565b60405180910390fd5b611c3981612184565b50565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d0657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d165750611d15826124c5565b5b9050919050565b5f33905090565b5f8073ffffffffffffffffffffffffffffffffffffffff1660025f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b8160045f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dfc83610dd7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f611e4c82611d24565b611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e829061435a565b60405180910390fd5b5f611e9583610dd7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f0457508373ffffffffffffffffffffffffffffffffffffffff16611eec846108df565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f155750611f14818561191e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f3e82610dd7565b73ffffffffffffffffffffffffffffffffffffffff1614611f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8b906143e8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990614476565b60405180910390fd5b61200d83838361252e565b6120175f82611d8c565b600160035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546120649190614494565b92505081905550600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546120b891906140b1565b925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b5f8261217a858461263e565b1490509392505050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612260828260405180602001604052805f81525061268c565b5050565b61226f848484611f1e565b61227b848484846126e6565b6122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b190614537565b60405180910390fd5b50505050565b6060601260019054906101000a900460ff166122dd57600c6122e0565b600b5b80546122eb906135e9565b80601f0160208091040260200160405190810160405280929190818152602001828054612317906135e9565b80156123625780601f1061233957610100808354040283529160200191612362565b820191905f5260205f20905b81548152906001019060200180831161234557829003601f168201915b5050505050905090565b60605f82036123b2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124c0565b5f8290505f5b5f82146123e15780806123ca9061406a565b915050600a826123da9190614582565b91506123b8565b5f8167ffffffffffffffff8111156123fc576123fb61311f565b5b6040519080825280601f01601f19166020018201604052801561242e5781602001600182028036833780820191505090505b5090505b5f85146124b9576001826124469190614494565b9150600a8561245591906145b2565b603061246191906140b1565b60f81b8183815181106124775761247661396d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a856124b29190614582565b9450612432565b8093505050505b919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612539838383612868565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361257a576125758161286d565b6125b9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125b8576125b783826128b1565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125fa576125f581612a07565b612639565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612638576126378282612ac7565b5b5b505050565b5f808290505f5b845181101561268157612672828683815181106126655761266461396d565b5b6020026020010151612b3f565b91508080600101915050612645565b508091505092915050565b6126968383612b69565b6126a25f8484846126e6565b6126e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d890614537565b60405180910390fd5b505050565b5f6127068473ffffffffffffffffffffffffffffffffffffffff16612d2d565b1561285b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261272f611d1d565b8786866040518563ffffffff1660e01b81526004016127519493929190614634565b6020604051808303815f875af192505050801561278c57506040513d601f19601f820116820180604052508101906127899190614692565b60015b61280b573d805f81146127ba576040519150601f19603f3d011682016040523d82523d5f602084013e6127bf565b606091505b505f815103612803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fa90614537565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612860565b600190505b949350505050565b505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f60016128bd84610f09565b6128c79190614494565b90505f60075f8481526020019081526020015f2054905081811461299e575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f6001600880549050612a1a9190614494565b90505f60095f8481526020019081526020015f205490505f60088381548110612a4657612a4561396d565b5b905f5260205f20015490508060088381548110612a6657612a6561396d565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f90556008805480612aae57612aad6146bd565b5b600190038181905f5260205f20015f9055905550505050565b5f612ad183610f09565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b5f818310612b5657612b518284612d3e565b612b61565b612b608383612d3e565b5b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bce90614734565b60405180910390fd5b612be081611d24565b15612c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c179061479c565b60405180910390fd5b612c2b5f838361252e565b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254612c7891906140b1565b925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f80823b90505f8111915050919050565b5f825f528160205260405f20905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d9781612d63565b8114612da1575f80fd5b50565b5f81359050612db281612d8e565b92915050565b5f60208284031215612dcd57612dcc612d5b565b5b5f612dda84828501612da4565b91505092915050565b5f8115159050919050565b612df781612de3565b82525050565b5f602082019050612e105f830184612dee565b92915050565b612e1f81612de3565b8114612e29575f80fd5b50565b5f81359050612e3a81612e16565b92915050565b5f60208284031215612e5557612e54612d5b565b5b5f612e6284828501612e2c565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612ead82612e6b565b612eb78185612e75565b9350612ec7818560208601612e85565b612ed081612e93565b840191505092915050565b5f6020820190508181035f830152612ef38184612ea3565b905092915050565b5f819050919050565b612f0d81612efb565b8114612f17575f80fd5b50565b5f81359050612f2881612f04565b92915050565b5f60208284031215612f4357612f42612d5b565b5b5f612f5084828501612f1a565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612f8282612f59565b9050919050565b612f9281612f78565b82525050565b5f602082019050612fab5f830184612f89565b92915050565b612fba81612f78565b8114612fc4575f80fd5b50565b5f81359050612fd581612fb1565b92915050565b5f8060408385031215612ff157612ff0612d5b565b5b5f612ffe85828601612fc7565b925050602061300f85828601612f1a565b9150509250929050565b61302281612efb565b82525050565b5f60208201905061303b5f830184613019565b92915050565b5f805f6060848603121561305857613057612d5b565b5b5f61306586828701612fc7565b935050602061307686828701612fc7565b925050604061308786828701612f1a565b9150509250925092565b5f819050919050565b6130a381613091565b82525050565b5f6020820190506130bc5f83018461309a565b92915050565b6130cb81613091565b81146130d5575f80fd5b50565b5f813590506130e6816130c2565b92915050565b5f6020828403121561310157613100612d5b565b5b5f61310e848285016130d8565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61315582612e93565b810181811067ffffffffffffffff821117156131745761317361311f565b5b80604052505050565b5f613186612d52565b9050613192828261314c565b919050565b5f67ffffffffffffffff8211156131b1576131b061311f565b5b6131ba82612e93565b9050602081019050919050565b828183375f83830152505050565b5f6131e76131e284613197565b61317d565b9050828152602081018484840111156132035761320261311b565b5b61320e8482856131c7565b509392505050565b5f82601f83011261322a57613229613117565b5b813561323a8482602086016131d5565b91505092915050565b5f6020828403121561325857613257612d5b565b5b5f82013567ffffffffffffffff81111561327557613274612d5f565b5b61328184828501613216565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126132a7576132a6613117565b5b8235905067ffffffffffffffff8111156132c4576132c361328a565b5b6020830191508360208202830111156132e0576132df61328e565b5b9250929050565b5f805f604084860312156132fe576132fd612d5b565b5b5f61330b86828701612fc7565b935050602084013567ffffffffffffffff81111561332c5761332b612d5f565b5b61333886828701613292565b92509250509250925092565b5f6020828403121561335957613358612d5b565b5b5f61336684828501612fc7565b91505092915050565b5f806040838503121561338557613384612d5b565b5b5f61339285828601612fc7565b92505060206133a385828601612e2c565b9150509250929050565b5f80602083850312156133c3576133c2612d5b565b5b5f83013567ffffffffffffffff8111156133e0576133df612d5f565b5b6133ec85828601613292565b92509250509250929050565b5f67ffffffffffffffff8211156134125761341161311f565b5b61341b82612e93565b9050602081019050919050565b5f61343a613435846133f8565b61317d565b9050828152602081018484840111156134565761345561311b565b5b6134618482856131c7565b509392505050565b5f82601f83011261347d5761347c613117565b5b813561348d848260208601613428565b91505092915050565b5f805f80608085870312156134ae576134ad612d5b565b5b5f6134bb87828801612fc7565b94505060206134cc87828801612fc7565b93505060406134dd87828801612f1a565b925050606085013567ffffffffffffffff8111156134fe576134fd612d5f565b5b61350a87828801613469565b91505092959194509250565b5f806040838503121561352c5761352b612d5b565b5b5f61353985828601612fc7565b925050602061354a85828601612fc7565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613588602083612e75565b915061359382613554565b602082019050919050565b5f6020820190508181035f8301526135b58161357c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061360057607f821691505b602082108103613613576136126135bc565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e65785f8201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b5f613673602c83612e75565b915061367e82613619565b604082019050919050565b5f6020820190508181035f8301526136a081613667565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e655f8201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b5f613701602183612e75565b915061370c826136a7565b604082019050919050565b5f6020820190508181035f83015261372e816136f5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f775f8201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b5f61378f603883612e75565b915061379a82613735565b604082019050919050565b5f6020820190508181035f8301526137bc81613783565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f5f8201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b5f61381d603183612e75565b9150613828826137c3565b604082019050919050565b5f6020820190508181035f83015261384a81613811565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f755f8201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b5f6138ab602b83612e75565b91506138b682613851565b604082019050919050565b5f6020820190508181035f8301526138d88161389f565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f5f8201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b5f613939602c83612e75565b9150613944826138df565b604082019050919050565b5f6020820190508181035f8301526139668161392d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026139f67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826139bb565b613a0086836139bb565b95508019841693508086168417925050509392505050565b5f819050919050565b5f613a3b613a36613a3184612efb565b613a18565b612efb565b9050919050565b5f819050919050565b613a5483613a21565b613a68613a6082613a42565b8484546139c7565b825550505050565b5f90565b613a7c613a70565b613a87818484613a4b565b505050565b5b81811015613aaa57613a9f5f82613a74565b600181019050613a8d565b5050565b601f821115613aef57613ac08161399a565b613ac9846139ac565b81016020851015613ad8578190505b613aec613ae4856139ac565b830182613a8c565b50505b505050565b5f82821c905092915050565b5f613b0f5f1984600802613af4565b1980831691505092915050565b5f613b278383613b00565b9150826002028217905092915050565b613b4082612e6b565b67ffffffffffffffff811115613b5957613b5861311f565b5b613b6382546135e9565b613b6e828285613aae565b5f60209050601f831160018114613b9f575f8415613b8d578287015190505b613b978582613b1c565b865550613bfe565b601f198416613bad8661399a565b5f5b82811015613bd457848901518255600182019150602085019450602081019050613baf565b86831015613bf15784890151613bed601f891682613b00565b8355505b6001600288020188555050505b505050505050565b5f8160601b9050919050565b5f613c1c82613c06565b9050919050565b5f613c2d82613c12565b9050919050565b613c45613c4082612f78565b613c23565b82525050565b5f613c568284613c34565b60148201915081905092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e65786973745f8201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b5f613cbf602983612e75565b9150613cca82613c65565b604082019050919050565b5f6020820190508181035f830152613cec81613cb3565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a655f8201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b5f613d4d602a83612e75565b9150613d5882613cf3565b604082019050919050565b5f6020820190508181035f830152613d7a81613d41565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c6572000000000000005f82015250565b5f613db5601983612e75565b9150613dc082613d81565b602082019050919050565b5f6020820190508181035f830152613de281613da9565b9050919050565b7f4d696e74696e672069732063757272656e746c79207061757365642e000000005f82015250565b5f613e1d601c83612e75565b9150613e2882613de9565b602082019050919050565b5f6020820190508181035f830152613e4a81613e11565b9050919050565b7f4d696e74696e67206973206e6f7420696e2074686520616c6c6f7765642070655f8201527f72696f642e000000000000000000000000000000000000000000000000000000602082015250565b5f613eab602583612e75565b9150613eb682613e51565b604082019050919050565b5f6020820190508181035f830152613ed881613e9f565b9050919050565b7f416c7265616479206d696e74656420746865206d6178696d756d20616c6c6f775f8201527f6564207065722077616c6c65742e000000000000000000000000000000000000602082015250565b5f613f39602e83612e75565b9150613f4482613edf565b604082019050919050565b5f6020820190508181035f830152613f6681613f2d565b9050919050565b7f45786365656473206d6178696d756d20737570706c79000000000000000000005f82015250565b5f613fa1601683612e75565b9150613fac82613f6d565b602082019050919050565b5f6020820190508181035f830152613fce81613f95565b9050919050565b7f41646472657373206973206e6f742077686974656c69737465642e00000000005f82015250565b5f614009601b83612e75565b915061401482613fd5565b602082019050919050565b5f6020820190508181035f83015261403681613ffd565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61407482612efb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036140a6576140a561403d565b5b600182019050919050565b5f6140bb82612efb565b91506140c683612efb565b92508282019050808211156140de576140dd61403d565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f61413e602f83612e75565b9150614149826140e4565b604082019050919050565b5f6020820190508181035f83015261416b81614132565b9050919050565b5f81905092915050565b5f61418682612e6b565b6141908185614172565b93506141a0818560208601612e85565b80840191505092915050565b5f81546141b8816135e9565b6141c28186614172565b9450600182165f81146141dc57600181146141f157614223565b60ff1983168652811515820286019350614223565b6141fa8561399a565b5f5b8381101561421b578154818901526001820191506020810190506141fc565b838801955050505b50505092915050565b5f614237828661417c565b9150614243828561417c565b915061424f82846141ac565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6142b6602683612e75565b91506142c18261425c565b604082019050919050565b5f6020820190508181035f8301526142e3816142aa565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e65785f8201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b5f614344602c83612e75565b915061434f826142ea565b604082019050919050565b5f6020820190508181035f83015261437181614338565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e207468617420695f8201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b5f6143d2602983612e75565b91506143dd82614378565b604082019050919050565b5f6020820190508181035f8301526143ff816143c6565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614460602483612e75565b915061446b82614406565b604082019050919050565b5f6020820190508181035f83015261448d81614454565b9050919050565b5f61449e82612efb565b91506144a983612efb565b92508282039050818111156144c1576144c061403d565b5b92915050565b7f4552433732313a207472616e7366657220746f206e6f6e2045524337323152655f8201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b5f614521603283612e75565b915061452c826144c7565b604082019050919050565b5f6020820190508181035f83015261454e81614515565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61458c82612efb565b915061459783612efb565b9250826145a7576145a6614555565b5b828204905092915050565b5f6145bc82612efb565b91506145c783612efb565b9250826145d7576145d6614555565b5b828206905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f614606826145e2565b61461081856145ec565b9350614620818560208601612e85565b61462981612e93565b840191505092915050565b5f6080820190506146475f830187612f89565b6146546020830186612f89565b6146616040830185613019565b818103606083015261467381846145fc565b905095945050505050565b5f8151905061468c81612d8e565b92915050565b5f602082840312156146a7576146a6612d5b565b5b5f6146b48482850161467e565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b7f4552433732313a206d696e7420746f20746865207a65726f20616464726573735f82015250565b5f61471e602083612e75565b9150614729826146ea565b602082019050919050565b5f6020820190508181035f83015261474b81614712565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e746564000000005f82015250565b5f614786601c83612e75565b915061479182614752565b602082019050919050565b5f6020820190508181035f8301526147b38161477a565b905091905056fea2646970667358221220ce7bba79f83aed1efc004ad4c4004ea27000a34e7a7acca2007aa6da502bd01d64736f6c634300081a0033697066733a2f2f697066732f516d63444a556f336276686f6b326777766d783536447a6b5a4e4c357663564c7061374e546d7a31735051374c5a2f1c7cd0df1e510e25682a3a730bb75001d3ad02c9896b1248b6398369e3488450
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061023b575f3560e01c806370a0823111610139578063bc951b91116100b6578063e051b4161161007a578063e051b4161461068b578063e985e9c5146106bb578063f19e75d4146106eb578063f2c4ce1e14610707578063f2fde38b146107235761023b565b8063bc951b91146105e5578063c668286214610603578063c87b56dd14610621578063d5abeb0114610651578063da3ef23f1461066f5761023b565b806395d89b41116100fd57806395d89b4114610569578063a22cb46514610587578063a475b5dd146105a3578063b77a147b146105ad578063b88d4fde146105c95761023b565b806370a08231146104d7578063715018a6146105075780638ab517d1146105115780638da5cb5b1461052d57806395b1b6801461054b5761023b565b806342842e0e116101c757806355f804b31161018b57806355f804b3146104215780635a23dd991461043d5780635c975abb1461046d5780636352211e1461048b578063700738f8146104bb5761023b565b806342842e0e1461037d5780634783f0ef1461039957806349b5fe1f146103b55780634f6ccce7146103d357806351830227146104035761023b565b8063095ea7b31161020e578063095ea7b3146102d957806318160ddd146102f557806323b872dd146103135780632eb4a7ab1461032f5780632f745c591461034d5761023b565b806301ffc9a71461023f57806302329a291461026f57806306fdde031461028b578063081812fc146102a9575b5f80fd5b61025960048036038101906102549190612db8565b61073f565b6040516102669190612dfd565b60405180910390f35b61028960048036038101906102849190612e40565b6107b8565b005b610293610850565b6040516102a09190612edb565b60405180910390f35b6102c360048036038101906102be9190612f2e565b6108df565b6040516102d09190612f98565b60405180910390f35b6102f360048036038101906102ee9190612fdb565b610960565b005b6102fd610a76565b60405161030a9190613028565b60405180910390f35b61032d60048036038101906103289190613041565b610a82565b005b610337610ae2565b60405161034491906130a9565b60405180910390f35b61036760048036038101906103629190612fdb565b610ae8565b6040516103749190613028565b60405180910390f35b61039760048036038101906103929190613041565b610b88565b005b6103b360048036038101906103ae91906130ec565b610ba7565b005b6103bd610c2d565b6040516103ca9190613028565b60405180910390f35b6103ed60048036038101906103e89190612f2e565b610c33565b6040516103fa9190613028565b60405180910390f35b61040b610ca1565b6040516104189190612dfd565b60405180910390f35b61043b60048036038101906104369190613243565b610cb4565b005b610457600480360381019061045291906132e7565b610d43565b6040516104649190612dfd565b60405180910390f35b610475610dc5565b6040516104829190612dfd565b60405180910390f35b6104a560048036038101906104a09190612f2e565b610dd7565b6040516104b29190612f98565b60405180910390f35b6104d560048036038101906104d09190612f2e565b610e83565b005b6104f160048036038101906104ec9190613344565b610f09565b6040516104fe9190613028565b60405180910390f35b61050f610fbd565b005b61052b60048036038101906105269190612f2e565b611044565b005b6105356110ca565b6040516105429190612f98565b60405180910390f35b6105536110f2565b6040516105609190613028565b60405180910390f35b6105716110f8565b60405161057e9190612edb565b60405180910390f35b6105a1600480360381019061059c919061336f565b611188565b005b6105ab611303565b005b6105c760048036038101906105c291906133ad565b61139c565b005b6105e360048036038101906105de9190613496565b611634565b005b6105ed611696565b6040516105fa9190613028565b60405180910390f35b61060b61169c565b6040516106189190612edb565b60405180910390f35b61063b60048036038101906106369190612f2e565b611728565b6040516106489190612edb565b60405180910390f35b610659611874565b6040516106669190613028565b60405180910390f35b61068960048036038101906106849190613243565b61187a565b005b6106a560048036038101906106a09190613344565b611909565b6040516106b29190613028565b60405180910390f35b6106d560048036038101906106d09190613516565b61191e565b6040516106e29190612dfd565b60405180910390f35b61070560048036038101906107009190612f2e565b6119ac565b005b610721600480360381019061071c9190613243565b611ab7565b005b61073d60048036038101906107389190613344565b611b46565b005b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b157506107b082611c3c565b5b9050919050565b6107c0611d1d565b73ffffffffffffffffffffffffffffffffffffffff166107de6110ca565b73ffffffffffffffffffffffffffffffffffffffff1614610834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082b9061359e565b60405180910390fd5b8060125f6101000a81548160ff02191690831515021790555050565b60605f805461085e906135e9565b80601f016020809104026020016040519081016040528092919081815260200182805461088a906135e9565b80156108d55780601f106108ac576101008083540402835291602001916108d5565b820191905f5260205f20905b8154815290600101906020018083116108b857829003601f168201915b5050505050905090565b5f6108e982611d24565b610928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091f90613689565b60405180910390fd5b60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61096a82610dd7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190613717565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f9611d1d565b73ffffffffffffffffffffffffffffffffffffffff161480610a285750610a2781610a22611d1d565b61191e565b5b610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e906137a5565b60405180910390fd5b610a718383611d8c565b505050565b5f600880549050905090565b610a93610a8d611d1d565b82611e42565b610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac990613833565b60405180910390fd5b610add838383611f1e565b505050565b60135481565b5f610af283610f09565b8210610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a906138c1565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b610ba283838360405180602001604052805f815250611634565b505050565b610baf611d1d565b73ffffffffffffffffffffffffffffffffffffffff16610bcd6110ca565b73ffffffffffffffffffffffffffffffffffffffff1614610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a9061359e565b60405180910390fd5b8060138190555050565b600f5481565b5f610c3c610a76565b8210610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c749061394f565b60405180910390fd5b60088281548110610c9157610c9061396d565b5b905f5260205f2001549050919050565b601260019054906101000a900460ff1681565b610cbc611d1d565b73ffffffffffffffffffffffffffffffffffffffff16610cda6110ca565b73ffffffffffffffffffffffffffffffffffffffff1614610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d279061359e565b60405180910390fd5b80600b9081610d3f9190613b37565b5050565b5f8084604051602001610d569190613c4b565b604051602081830303815290604052805190602001209050610dbb8484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f820116905080830192505050505050506013548361216e565b9150509392505050565b60125f9054906101000a900460ff1681565b5f8060025f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190613cd5565b60405180910390fd5b80915050919050565b610e8b611d1d565b73ffffffffffffffffffffffffffffffffffffffff16610ea96110ca565b73ffffffffffffffffffffffffffffffffffffffff1614610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef69061359e565b60405180910390fd5b8060108190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90613d63565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610fc5611d1d565b73ffffffffffffffffffffffffffffffffffffffff16610fe36110ca565b73ffffffffffffffffffffffffffffffffffffffff1614611039576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110309061359e565b60405180910390fd5b6110425f612184565b565b61104c611d1d565b73ffffffffffffffffffffffffffffffffffffffff1661106a6110ca565b73ffffffffffffffffffffffffffffffffffffffff16146110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b79061359e565b60405180910390fd5b80600f8190555050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b606060018054611107906135e9565b80601f0160208091040260200160405190810160405280929190818152602001828054611133906135e9565b801561117e5780601f106111555761010080835404028352916020019161117e565b820191905f5260205f20905b81548152906001019060200180831161116157829003601f168201915b5050505050905090565b611190611d1d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490613dcb565b60405180910390fd5b8060055f611209611d1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112b2611d1d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112f79190612dfd565b60405180910390a35050565b61130b611d1d565b73ffffffffffffffffffffffffffffffffffffffff166113296110ca565b73ffffffffffffffffffffffffffffffffffffffff161461137f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113769061359e565b60405180910390fd5b6001601260016101000a81548160ff021916908315150217905550565b60125f9054906101000a900460ff16156113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290613e33565b60405180910390fd5b600f5442101580156113ff57506010544211155b61143e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143590613ec1565b60405180910390fd5b60115460145f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054106114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690613f4f565b60405180910390fd5b600e546114ca610a76565b1061150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190613fb7565b60405180910390fd5b5f3360405160200161151c9190613c4b565b6040516020818303038152906040528051906020012090506115818383808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f820116905080830192505050505050506013548361216e565b6115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b79061401f565b60405180910390fd5b60145f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81548092919061160d9061406a565b919050555061162f336001611620610a76565b61162a91906140b1565b612247565b505050565b61164561163f611d1d565b83611e42565b611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90613833565b60405180910390fd5b61169084848484612264565b50505050565b60115481565b600d80546116a9906135e9565b80601f01602080910402602001604051908101604052809291908181526020018280546116d5906135e9565b80156117205780601f106116f757610100808354040283529160200191611720565b820191905f5260205f20905b81548152906001019060200180831161170357829003601f168201915b505050505081565b606061173382611d24565b611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990614154565b60405180910390fd5b601260019054906101000a900460ff1661181657600c8054611793906135e9565b80601f01602080910402602001604051908101604052809291908181526020018280546117bf906135e9565b801561180a5780601f106117e15761010080835404028352916020019161180a565b820191905f5260205f20905b8154815290600101906020018083116117ed57829003601f168201915b5050505050905061186f565b5f61181f6122c0565b90505f81511161183d5760405180602001604052805f81525061186b565b806118478461236c565b600d60405160200161185b9392919061422c565b6040516020818303038152906040525b9150505b919050565b600e5481565b611882611d1d565b73ffffffffffffffffffffffffffffffffffffffff166118a06110ca565b73ffffffffffffffffffffffffffffffffffffffff16146118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed9061359e565b60405180910390fd5b80600d90816119059190613b37565b5050565b6014602052805f5260405f205f915090505481565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6119b4611d1d565b73ffffffffffffffffffffffffffffffffffffffff166119d26110ca565b73ffffffffffffffffffffffffffffffffffffffff1614611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f9061359e565b60405180910390fd5b600e5481611a34610a76565b611a3e91906140b1565b1115611a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7690613fb7565b60405180910390fd5b5f5b81811015611ab357611aa6336001611a97610a76565b611aa191906140b1565b612247565b8080600101915050611a81565b5050565b611abf611d1d565b73ffffffffffffffffffffffffffffffffffffffff16611add6110ca565b73ffffffffffffffffffffffffffffffffffffffff1614611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a9061359e565b60405180910390fd5b80600c9081611b429190613b37565b5050565b611b4e611d1d565b73ffffffffffffffffffffffffffffffffffffffff16611b6c6110ca565b73ffffffffffffffffffffffffffffffffffffffff1614611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb99061359e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c27906142cc565b60405180910390fd5b611c3981612184565b50565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d0657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d165750611d15826124c5565b5b9050919050565b5f33905090565b5f8073ffffffffffffffffffffffffffffffffffffffff1660025f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b8160045f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611dfc83610dd7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f611e4c82611d24565b611e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e829061435a565b60405180910390fd5b5f611e9583610dd7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f0457508373ffffffffffffffffffffffffffffffffffffffff16611eec846108df565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f155750611f14818561191e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f3e82610dd7565b73ffffffffffffffffffffffffffffffffffffffff1614611f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8b906143e8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990614476565b60405180910390fd5b61200d83838361252e565b6120175f82611d8c565b600160035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546120649190614494565b92505081905550600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546120b891906140b1565b925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b5f8261217a858461263e565b1490509392505050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612260828260405180602001604052805f81525061268c565b5050565b61226f848484611f1e565b61227b848484846126e6565b6122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b190614537565b60405180910390fd5b50505050565b6060601260019054906101000a900460ff166122dd57600c6122e0565b600b5b80546122eb906135e9565b80601f0160208091040260200160405190810160405280929190818152602001828054612317906135e9565b80156123625780601f1061233957610100808354040283529160200191612362565b820191905f5260205f20905b81548152906001019060200180831161234557829003601f168201915b5050505050905090565b60605f82036123b2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124c0565b5f8290505f5b5f82146123e15780806123ca9061406a565b915050600a826123da9190614582565b91506123b8565b5f8167ffffffffffffffff8111156123fc576123fb61311f565b5b6040519080825280601f01601f19166020018201604052801561242e5781602001600182028036833780820191505090505b5090505b5f85146124b9576001826124469190614494565b9150600a8561245591906145b2565b603061246191906140b1565b60f81b8183815181106124775761247661396d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a856124b29190614582565b9450612432565b8093505050505b919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612539838383612868565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361257a576125758161286d565b6125b9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125b8576125b783826128b1565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125fa576125f581612a07565b612639565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612638576126378282612ac7565b5b5b505050565b5f808290505f5b845181101561268157612672828683815181106126655761266461396d565b5b6020026020010151612b3f565b91508080600101915050612645565b508091505092915050565b6126968383612b69565b6126a25f8484846126e6565b6126e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d890614537565b60405180910390fd5b505050565b5f6127068473ffffffffffffffffffffffffffffffffffffffff16612d2d565b1561285b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261272f611d1d565b8786866040518563ffffffff1660e01b81526004016127519493929190614634565b6020604051808303815f875af192505050801561278c57506040513d601f19601f820116820180604052508101906127899190614692565b60015b61280b573d805f81146127ba576040519150601f19603f3d011682016040523d82523d5f602084013e6127bf565b606091505b505f815103612803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fa90614537565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612860565b600190505b949350505050565b505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f60016128bd84610f09565b6128c79190614494565b90505f60075f8481526020019081526020015f2054905081811461299e575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f6001600880549050612a1a9190614494565b90505f60095f8481526020019081526020015f205490505f60088381548110612a4657612a4561396d565b5b905f5260205f20015490508060088381548110612a6657612a6561396d565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f90556008805480612aae57612aad6146bd565b5b600190038181905f5260205f20015f9055905550505050565b5f612ad183610f09565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b5f818310612b5657612b518284612d3e565b612b61565b612b608383612d3e565b5b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bce90614734565b60405180910390fd5b612be081611d24565b15612c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c179061479c565b60405180910390fd5b612c2b5f838361252e565b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254612c7891906140b1565b925050819055508160025f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f80823b90505f8111915050919050565b5f825f528160205260405f20905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d9781612d63565b8114612da1575f80fd5b50565b5f81359050612db281612d8e565b92915050565b5f60208284031215612dcd57612dcc612d5b565b5b5f612dda84828501612da4565b91505092915050565b5f8115159050919050565b612df781612de3565b82525050565b5f602082019050612e105f830184612dee565b92915050565b612e1f81612de3565b8114612e29575f80fd5b50565b5f81359050612e3a81612e16565b92915050565b5f60208284031215612e5557612e54612d5b565b5b5f612e6284828501612e2c565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612ead82612e6b565b612eb78185612e75565b9350612ec7818560208601612e85565b612ed081612e93565b840191505092915050565b5f6020820190508181035f830152612ef38184612ea3565b905092915050565b5f819050919050565b612f0d81612efb565b8114612f17575f80fd5b50565b5f81359050612f2881612f04565b92915050565b5f60208284031215612f4357612f42612d5b565b5b5f612f5084828501612f1a565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612f8282612f59565b9050919050565b612f9281612f78565b82525050565b5f602082019050612fab5f830184612f89565b92915050565b612fba81612f78565b8114612fc4575f80fd5b50565b5f81359050612fd581612fb1565b92915050565b5f8060408385031215612ff157612ff0612d5b565b5b5f612ffe85828601612fc7565b925050602061300f85828601612f1a565b9150509250929050565b61302281612efb565b82525050565b5f60208201905061303b5f830184613019565b92915050565b5f805f6060848603121561305857613057612d5b565b5b5f61306586828701612fc7565b935050602061307686828701612fc7565b925050604061308786828701612f1a565b9150509250925092565b5f819050919050565b6130a381613091565b82525050565b5f6020820190506130bc5f83018461309a565b92915050565b6130cb81613091565b81146130d5575f80fd5b50565b5f813590506130e6816130c2565b92915050565b5f6020828403121561310157613100612d5b565b5b5f61310e848285016130d8565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61315582612e93565b810181811067ffffffffffffffff821117156131745761317361311f565b5b80604052505050565b5f613186612d52565b9050613192828261314c565b919050565b5f67ffffffffffffffff8211156131b1576131b061311f565b5b6131ba82612e93565b9050602081019050919050565b828183375f83830152505050565b5f6131e76131e284613197565b61317d565b9050828152602081018484840111156132035761320261311b565b5b61320e8482856131c7565b509392505050565b5f82601f83011261322a57613229613117565b5b813561323a8482602086016131d5565b91505092915050565b5f6020828403121561325857613257612d5b565b5b5f82013567ffffffffffffffff81111561327557613274612d5f565b5b61328184828501613216565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126132a7576132a6613117565b5b8235905067ffffffffffffffff8111156132c4576132c361328a565b5b6020830191508360208202830111156132e0576132df61328e565b5b9250929050565b5f805f604084860312156132fe576132fd612d5b565b5b5f61330b86828701612fc7565b935050602084013567ffffffffffffffff81111561332c5761332b612d5f565b5b61333886828701613292565b92509250509250925092565b5f6020828403121561335957613358612d5b565b5b5f61336684828501612fc7565b91505092915050565b5f806040838503121561338557613384612d5b565b5b5f61339285828601612fc7565b92505060206133a385828601612e2c565b9150509250929050565b5f80602083850312156133c3576133c2612d5b565b5b5f83013567ffffffffffffffff8111156133e0576133df612d5f565b5b6133ec85828601613292565b92509250509250929050565b5f67ffffffffffffffff8211156134125761341161311f565b5b61341b82612e93565b9050602081019050919050565b5f61343a613435846133f8565b61317d565b9050828152602081018484840111156134565761345561311b565b5b6134618482856131c7565b509392505050565b5f82601f83011261347d5761347c613117565b5b813561348d848260208601613428565b91505092915050565b5f805f80608085870312156134ae576134ad612d5b565b5b5f6134bb87828801612fc7565b94505060206134cc87828801612fc7565b93505060406134dd87828801612f1a565b925050606085013567ffffffffffffffff8111156134fe576134fd612d5f565b5b61350a87828801613469565b91505092959194509250565b5f806040838503121561352c5761352b612d5b565b5b5f61353985828601612fc7565b925050602061354a85828601612fc7565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613588602083612e75565b915061359382613554565b602082019050919050565b5f6020820190508181035f8301526135b58161357c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061360057607f821691505b602082108103613613576136126135bc565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e65785f8201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b5f613673602c83612e75565b915061367e82613619565b604082019050919050565b5f6020820190508181035f8301526136a081613667565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e655f8201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b5f613701602183612e75565b915061370c826136a7565b604082019050919050565b5f6020820190508181035f83015261372e816136f5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f775f8201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b5f61378f603883612e75565b915061379a82613735565b604082019050919050565b5f6020820190508181035f8301526137bc81613783565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f5f8201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b5f61381d603183612e75565b9150613828826137c3565b604082019050919050565b5f6020820190508181035f83015261384a81613811565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f755f8201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b5f6138ab602b83612e75565b91506138b682613851565b604082019050919050565b5f6020820190508181035f8301526138d88161389f565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f5f8201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b5f613939602c83612e75565b9150613944826138df565b604082019050919050565b5f6020820190508181035f8301526139668161392d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026139f67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826139bb565b613a0086836139bb565b95508019841693508086168417925050509392505050565b5f819050919050565b5f613a3b613a36613a3184612efb565b613a18565b612efb565b9050919050565b5f819050919050565b613a5483613a21565b613a68613a6082613a42565b8484546139c7565b825550505050565b5f90565b613a7c613a70565b613a87818484613a4b565b505050565b5b81811015613aaa57613a9f5f82613a74565b600181019050613a8d565b5050565b601f821115613aef57613ac08161399a565b613ac9846139ac565b81016020851015613ad8578190505b613aec613ae4856139ac565b830182613a8c565b50505b505050565b5f82821c905092915050565b5f613b0f5f1984600802613af4565b1980831691505092915050565b5f613b278383613b00565b9150826002028217905092915050565b613b4082612e6b565b67ffffffffffffffff811115613b5957613b5861311f565b5b613b6382546135e9565b613b6e828285613aae565b5f60209050601f831160018114613b9f575f8415613b8d578287015190505b613b978582613b1c565b865550613bfe565b601f198416613bad8661399a565b5f5b82811015613bd457848901518255600182019150602085019450602081019050613baf565b86831015613bf15784890151613bed601f891682613b00565b8355505b6001600288020188555050505b505050505050565b5f8160601b9050919050565b5f613c1c82613c06565b9050919050565b5f613c2d82613c12565b9050919050565b613c45613c4082612f78565b613c23565b82525050565b5f613c568284613c34565b60148201915081905092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e65786973745f8201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b5f613cbf602983612e75565b9150613cca82613c65565b604082019050919050565b5f6020820190508181035f830152613cec81613cb3565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a655f8201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b5f613d4d602a83612e75565b9150613d5882613cf3565b604082019050919050565b5f6020820190508181035f830152613d7a81613d41565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c6572000000000000005f82015250565b5f613db5601983612e75565b9150613dc082613d81565b602082019050919050565b5f6020820190508181035f830152613de281613da9565b9050919050565b7f4d696e74696e672069732063757272656e746c79207061757365642e000000005f82015250565b5f613e1d601c83612e75565b9150613e2882613de9565b602082019050919050565b5f6020820190508181035f830152613e4a81613e11565b9050919050565b7f4d696e74696e67206973206e6f7420696e2074686520616c6c6f7765642070655f8201527f72696f642e000000000000000000000000000000000000000000000000000000602082015250565b5f613eab602583612e75565b9150613eb682613e51565b604082019050919050565b5f6020820190508181035f830152613ed881613e9f565b9050919050565b7f416c7265616479206d696e74656420746865206d6178696d756d20616c6c6f775f8201527f6564207065722077616c6c65742e000000000000000000000000000000000000602082015250565b5f613f39602e83612e75565b9150613f4482613edf565b604082019050919050565b5f6020820190508181035f830152613f6681613f2d565b9050919050565b7f45786365656473206d6178696d756d20737570706c79000000000000000000005f82015250565b5f613fa1601683612e75565b9150613fac82613f6d565b602082019050919050565b5f6020820190508181035f830152613fce81613f95565b9050919050565b7f41646472657373206973206e6f742077686974656c69737465642e00000000005f82015250565b5f614009601b83612e75565b915061401482613fd5565b602082019050919050565b5f6020820190508181035f83015261403681613ffd565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61407482612efb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036140a6576140a561403d565b5b600182019050919050565b5f6140bb82612efb565b91506140c683612efb565b92508282019050808211156140de576140dd61403d565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f61413e602f83612e75565b9150614149826140e4565b604082019050919050565b5f6020820190508181035f83015261416b81614132565b9050919050565b5f81905092915050565b5f61418682612e6b565b6141908185614172565b93506141a0818560208601612e85565b80840191505092915050565b5f81546141b8816135e9565b6141c28186614172565b9450600182165f81146141dc57600181146141f157614223565b60ff1983168652811515820286019350614223565b6141fa8561399a565b5f5b8381101561421b578154818901526001820191506020810190506141fc565b838801955050505b50505092915050565b5f614237828661417c565b9150614243828561417c565b915061424f82846141ac565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6142b6602683612e75565b91506142c18261425c565b604082019050919050565b5f6020820190508181035f8301526142e3816142aa565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e65785f8201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b5f614344602c83612e75565b915061434f826142ea565b604082019050919050565b5f6020820190508181035f83015261437181614338565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e207468617420695f8201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b5f6143d2602983612e75565b91506143dd82614378565b604082019050919050565b5f6020820190508181035f8301526143ff816143c6565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614460602483612e75565b915061446b82614406565b604082019050919050565b5f6020820190508181035f83015261448d81614454565b9050919050565b5f61449e82612efb565b91506144a983612efb565b92508282039050818111156144c1576144c061403d565b5b92915050565b7f4552433732313a207472616e7366657220746f206e6f6e2045524337323152655f8201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b5f614521603283612e75565b915061452c826144c7565b604082019050919050565b5f6020820190508181035f83015261454e81614515565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61458c82612efb565b915061459783612efb565b9250826145a7576145a6614555565b5b828204905092915050565b5f6145bc82612efb565b91506145c783612efb565b9250826145d7576145d6614555565b5b828206905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f614606826145e2565b61461081856145ec565b9350614620818560208601612e85565b61462981612e93565b840191505092915050565b5f6080820190506146475f830187612f89565b6146546020830186612f89565b6146616040830185613019565b818103606083015261467381846145fc565b905095945050505050565b5f8151905061468c81612d8e565b92915050565b5f602082840312156146a7576146a6612d5b565b5b5f6146b48482850161467e565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b7f4552433732313a206d696e7420746f20746865207a65726f20616464726573735f82015250565b5f61471e602083612e75565b9150614729826146ea565b602082019050919050565b5f6020820190508181035f83015261474b81614712565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e746564000000005f82015250565b5f614786601c83612e75565b915061479182614752565b602082019050919050565b5f6020820190508181035f8301526147b38161477a565b905091905056fea2646970667358221220ce7bba79f83aed1efc004ad4c4004ea27000a34e7a7acca2007aa6da502bd01d64736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
1c7cd0df1e510e25682a3a730bb75001d3ad02c9896b1248b6398369e3488450
-----Decoded View---------------
Arg [0] : _merkleRoot (bytes32): 0x1c7cd0df1e510e25682a3a730bb75001d3ad02c9896b1248b6398369e3488450
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 1c7cd0df1e510e25682a3a730bb75001d3ad02c9896b1248b6398369e3488450
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.