Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,000 GHOST
Holders
757
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GHOSTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GoGhost
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-05 */ // SPDX-License-Identifier: MIT /* Website: https://goghost.world/ Twitter: https://twitter.com/Gogh0st/ Discord: https://discord.gg/goghost/ @@@@@@@@@@@@@@@@@@@@@@ @@@@@. %@@@@ @@@@ @@@@ @@@& @@@@ @@@@ @@@. @@@ @@@ @@@ @@@@@@ @@@ @@@ @@@@@@ @@@( ,@@. .@@ @@@/ @@@ @@@ @@&,,,, @@ @@( ,@/@ @@@@@@@@@@%@@@@@ &@@ @@@ @@@ @@@@@@@@@@@@@@ @@ @@@ / @@@@ @@@@@@@/@@. @@@ @@ @@@@@@ @@( @@@ @@@@@@@@@@@ @@@@ @@@ @@, @@@@@@ @@@ /@@ @@@@ @@@ @@@ @@@ @@@ @@@ *@@ @@@ @@@ @@. @@@ @@@ @@ @@@ @@@ @@ @@@@@@@@@@@@@@@@ @@@@@@@@@ @@@ @@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ /@@@@ @@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ .@@@@@@@@@@ @@@@@@@ @@@@@@@@@@@@@@* @@@@@@@@@@@@@@@ .@@@@@( @@@@@@@@/ @@@ @@@@@@@@@@@ */ // Sources flattened with hardhat v2.9.3 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File erc721a/contracts/[email protected] // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File contracts/GoGhost.sol pragma solidity ^0.8.4; contract GoGhost is ERC721A, Ownable { enum MintType { Standard, Whitelist, Free } string coverCid; bytes32 revealedCidHash; string revealedCid; uint256 maxSupply; bool revealed; address signer; mapping(address => uint256) mintedCount; uint256 whitelistMintedCount; uint256 freeMintMintedCount; constructor( address _signer, string memory collectionName, string memory collectionSymbol, string memory _coverCid, bytes32 _revealedCidHash, uint256 _totalSupply ) ERC721A(collectionName, collectionSymbol) { signer = _signer; coverCid = _coverCid; revealedCidHash = _revealedCidHash; maxSupply = _totalSupply; } function hashPolicy( address client, MintType mintType, uint256 unitPrice, uint256 perWalletLimit, uint256 _maxSupply, uint256 startTime, uint256 endTime, uint256 deadline ) public view returns (bytes32) { return keccak256( abi.encode( "GoGhost", address(this), client, mintType, unitPrice, perWalletLimit, _maxSupply, startTime, endTime, deadline ) ); } function verifyPolicySignature( address client, MintType mintType, uint256 unitPrice, uint256 perWalletLimit, uint256 _maxSupply, uint256 startTime, uint256 endTime, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public view returns (address) { bytes32 objectHash = hashPolicy( client, mintType, unitPrice, perWalletLimit, _maxSupply, startTime, endTime, deadline ); bytes32 messageHash = keccak256( abi.encodePacked("\x19Ethereum Signed Message:\n32", objectHash) ); return ecrecover(messageHash, v, r, s); } function mint( uint256 amount, uint256 unitPrice, uint256 perWalletLimit, uint256 startTime, uint256 endTime, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public payable { require( totalSupply() + amount <= maxSupply, "GoGhost: not enough token to mint" ); require(msg.value == amount * unitPrice, "GoGhost: insufficient value"); require( mintedCount[msg.sender] + amount <= perWalletLimit, "GoGhost: reached the per wallet limit" ); require( block.timestamp >= startTime, "GoGhost: minting feature is disabled" ); require( block.timestamp <= endTime, "GoGhost: minting feature is disabled" ); require(block.timestamp <= deadline, "GoGhost: signature is expired"); require( verifyPolicySignature( msg.sender, MintType.Standard, unitPrice, perWalletLimit, 0, startTime, endTime, deadline, v, r, s ) == signer, "GoGhost: invalid signature" ); mintedCount[msg.sender] += amount; _safeMint(msg.sender, amount); } function whitelistMint( uint256 amount, uint256 unitPrice, uint256 perWalletLimit, uint256 whitelistMaxSupply, uint256 startTime, uint256 endTime, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public payable { require( totalSupply() + amount <= maxSupply, "GoGhost: not enough token to mint" ); require(msg.value == amount * unitPrice, "GoGhost: insufficient value"); require( mintedCount[msg.sender] + amount <= perWalletLimit, "GoGhost: reached the per wallet limit" ); require( block.timestamp >= startTime, "GoGhost: minting feature is disabled" ); require( block.timestamp <= endTime, "GoGhost: minting feature is disabled" ); require(block.timestamp <= deadline, "GoGhost: signature is expired"); require( whitelistMintedCount + amount <= whitelistMaxSupply, "GoGhost: reached the whitelist limit" ); require( verifyPolicySignature( msg.sender, MintType.Whitelist, unitPrice, perWalletLimit, whitelistMaxSupply, startTime, endTime, deadline, v, r, s ) == signer, "GoGhost: invalid signature" ); mintedCount[msg.sender] += amount; whitelistMintedCount += amount; _safeMint(msg.sender, amount); } function freeMint( uint256 amount, uint256 perWalletLimit, uint256 freeMintMaxSupply, uint256 startTime, uint256 endTime, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public { require( totalSupply() + amount <= maxSupply, "GoGhost: not enough token to mint" ); require( mintedCount[msg.sender] + amount <= perWalletLimit, "GoGhost: reached the per wallet limit" ); require( block.timestamp >= startTime, "GoGhost: minting feature is disabled" ); require( block.timestamp <= endTime, "GoGhost: minting feature is disabled" ); require(block.timestamp <= deadline, "GoGhost: signature is expired"); require( whitelistMintedCount + amount <= freeMintMaxSupply, "GoGhost: reached the free mint limit" ); require( verifyPolicySignature( msg.sender, MintType.Free, 0, perWalletLimit, freeMintMaxSupply, startTime, endTime, deadline, v, r, s ) == signer, "GoGhost: invalid signature" ); mintedCount[msg.sender] += amount; freeMintMintedCount += amount; _safeMint(msg.sender, amount); } function reveal(string memory _revealedCid) public onlyOwner { require(!revealed, "GoGhost: already revealed"); require( keccak256(bytes(_revealedCid)) == revealedCidHash, "GoGhost: Revealed CID not matched" ); revealed = true; revealedCid = _revealedCid; } function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) { if (revealed) { return string( abi.encodePacked( "https://", revealedCid, ".ipfs.nftstorage.link/metadata/", Strings.toString(tokenId + 1), ".json" ) ); } else { return string(abi.encodePacked("https://", coverCid, ".ipfs.nftstorage.link/cover.json")); } } function collectFee() onlyOwner public { payable(address(owner())).transfer(address(this).balance); } } // File contracts/Storage.sol
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_signer","type":"address"},{"internalType":"string","name":"collectionName","type":"string"},{"internalType":"string","name":"collectionSymbol","type":"string"},{"internalType":"string","name":"_coverCid","type":"string"},{"internalType":"bytes32","name":"_revealedCidHash","type":"bytes32"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"collectFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"perWalletLimit","type":"uint256"},{"internalType":"uint256","name":"freeMintMaxSupply","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"client","type":"address"},{"internalType":"enum GoGhost.MintType","name":"mintType","type":"uint8"},{"internalType":"uint256","name":"unitPrice","type":"uint256"},{"internalType":"uint256","name":"perWalletLimit","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"hashPolicy","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"unitPrice","type":"uint256"},{"internalType":"uint256","name":"perWalletLimit","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_revealedCid","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"address","name":"client","type":"address"},{"internalType":"enum GoGhost.MintType","name":"mintType","type":"uint8"},{"internalType":"uint256","name":"unitPrice","type":"uint256"},{"internalType":"uint256","name":"perWalletLimit","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"verifyPolicySignature","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"unitPrice","type":"uint256"},{"internalType":"uint256","name":"perWalletLimit","type":"uint256"},{"internalType":"uint256","name":"whitelistMaxSupply","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620027083803806200270883398101604081905262000034916200026e565b8451859085906200004d90600290602085019062000111565b5080516200006390600390602084019062000111565b505060008055506200007533620000bf565b600d8054610100600160a81b0319166101006001600160a01b038916021790558251620000aa90600990602086019062000111565b50600a91909155600c55506200038592505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011f9062000332565b90600052602060002090601f0160209004810192826200014357600085556200018e565b82601f106200015e57805160ff19168380011785556200018e565b828001600101855582156200018e579182015b828111156200018e57825182559160200191906001019062000171565b506200019c929150620001a0565b5090565b5b808211156200019c5760008155600101620001a1565b600082601f830112620001c957600080fd5b81516001600160401b0380821115620001e657620001e66200036f565b604051601f8301601f19908116603f011681019082821181831017156200021157620002116200036f565b816040528381526020925086838588010111156200022e57600080fd5b600091505b8382101562000252578582018301518183018401529082019062000233565b83821115620002645760008385830101525b9695505050505050565b60008060008060008060c087890312156200028857600080fd5b86516001600160a01b0381168114620002a057600080fd5b60208801519096506001600160401b0380821115620002be57600080fd5b620002cc8a838b01620001b7565b96506040890151915080821115620002e357600080fd5b620002f18a838b01620001b7565b955060608901519150808211156200030857600080fd5b506200031789828a01620001b7565b9350506080870151915060a087015190509295509295509295565b600181811c908216806200034757607f821691505b602082108114156200036957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61237380620003956000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063a22cb4651161006f578063a22cb46514610392578063b88d4fde146103b2578063c87b56dd146103d2578063d4d5d32a146103f2578063e985e9c514610407578063f2fde38b1461045057600080fd5b806370a08231146102f757806370caaa3214610317578063715018a61461032a5780638da5cb5b1461033f57806395d89b411461035d57806399b9f6551461037257600080fd5b806323b872dd1161010857806323b872dd146102445780632c3180fd1461026457806342842e0e146102775780634c261247146102975780636352211e146102b757806368e9d0b6146102d757600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df57806318160ddd146102015780631efd05f614610224575b600080fd5b34801561015c57600080fd5b5061017061016b366004611c83565b610470565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a6104c2565b60405161017c9190611fc8565b3480156101b357600080fd5b506101c76101c2366004611d06565b610554565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa366004611c59565b610598565b005b34801561020d57600080fd5b50600154600054035b60405190815260200161017c565b34801561023057600080fd5b506101ff61023f366004611d9a565b610626565b34801561025057600080fd5b506101ff61025f366004611a6a565b61080b565b6101ff610272366004611d1f565b610816565b34801561028357600080fd5b506101ff610292366004611a6a565b610a4a565b3480156102a357600080fd5b506101ff6102b2366004611cbd565b610a65565b3480156102c357600080fd5b506101c76102d2366004611d06565b610b67565b3480156102e357600080fd5b506102166102f2366004611b5e565b610b79565b34801561030357600080fd5b50610216610312366004611a15565b610bc0565b6101ff610325366004611d9a565b610c0f565b34801561033657600080fd5b506101ff610da5565b34801561034b57600080fd5b506008546001600160a01b03166101c7565b34801561036957600080fd5b5061019a610ddb565b34801561037e57600080fd5b506101c761038d366004611bc5565b610dea565b34801561039e57600080fd5b506101ff6103ad366004611b22565b610ebb565b3480156103be57600080fd5b506101ff6103cd366004611aa6565b610f51565b3480156103de57600080fd5b5061019a6103ed366004611d06565b610fa2565b3480156103fe57600080fd5b506101ff611003565b34801561041357600080fd5b50610170610422366004611a37565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561045c57600080fd5b506101ff61046b366004611a15565b611069565b60006001600160e01b031982166380ac58cd60e01b14806104a157506001600160e01b03198216635b5e139f60e01b145b806104bc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104d190612265565b80601f01602080910402602001604051908101604052809291908181526020018280546104fd90612265565b801561054a5780601f1061051f5761010080835404028352916020019161054a565b820191906000526020600020905b81548152906001019060200180831161052d57829003601f168201915b5050505050905090565b600061055f82611101565b61057c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105a382610b67565b9050806001600160a01b0316836001600160a01b031614156105d85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105f857506105f68133610422565b155b15610616576040516367d9dca160e11b815260040160405180910390fd5b61062183838361112c565b505050565b600c54896106376001546000540390565b61064191906121d7565b11156106685760405162461bcd60e51b815260040161065f9061211d565b60405180910390fd5b336000908152600e60205260409020548890610685908b906121d7565b11156106a35760405162461bcd60e51b815260040161065f90612012565b854210156106c35760405162461bcd60e51b815260040161065f90612193565b844211156106e35760405162461bcd60e51b815260040161065f90612193565b834211156107035760405162461bcd60e51b815260040161065f90612057565b8689600f5461071291906121d7565b111561076c5760405162461bcd60e51b8152602060048201526024808201527f476f47686f73743a2072656163686564207468652066726565206d696e74206c6044820152631a5b5a5d60e21b606482015260840161065f565b600d5461010090046001600160a01b031661079233600260008c8c8c8c8c8c8c8c610dea565b6001600160a01b0316146107b85760405162461bcd60e51b815260040161065f90611fdb565b336000908152600e6020526040812080548b92906107d79084906121d7565b9250508190555088601060008282546107f091906121d7565b909155506108009050338a611188565b505050505050505050565b6106218383836111a2565b600c548a6108276001546000540390565b61083191906121d7565b111561084f5760405162461bcd60e51b815260040161065f9061211d565b610859898b612203565b34146108a75760405162461bcd60e51b815260206004820152601b60248201527f476f47686f73743a20696e73756666696369656e742076616c75650000000000604482015260640161065f565b336000908152600e602052604090205488906108c4908c906121d7565b11156108e25760405162461bcd60e51b815260040161065f90612012565b854210156109025760405162461bcd60e51b815260040161065f90612193565b844211156109225760405162461bcd60e51b815260040161065f90612193565b834211156109425760405162461bcd60e51b815260040161065f90612057565b868a600f5461095191906121d7565b11156109ab5760405162461bcd60e51b8152602060048201526024808201527f476f47686f73743a2072656163686564207468652077686974656c697374206c6044820152631a5b5a5d60e21b606482015260840161065f565b600d5461010090046001600160a01b03166109d03360018c8c8c8c8c8c8c8c8c610dea565b6001600160a01b0316146109f65760405162461bcd60e51b815260040161065f90611fdb565b336000908152600e6020526040812080548c9290610a159084906121d7565b9250508190555089600f6000828254610a2e91906121d7565b90915550610a3e9050338b611188565b50505050505050505050565b61062183838360405180602001604052806000815250610f51565b6008546001600160a01b03163314610a8f5760405162461bcd60e51b815260040161065f9061215e565b600d5460ff1615610ae25760405162461bcd60e51b815260206004820152601960248201527f476f47686f73743a20616c72656164792072657665616c656400000000000000604482015260640161065f565b600a548151602083012014610b435760405162461bcd60e51b815260206004820152602160248201527f476f47686f73743a2052657665616c656420434944206e6f74206d61746368656044820152601960fa1b606482015260840161065f565b600d805460ff191660011790558051610b6390600b9060208401906118cf565b5050565b6000610b7282611392565b5192915050565b6000308989898989898989604051602001610b9c9998979695949392919061208e565b60405160208183030381529060405280519060200120905098975050505050505050565b60006001600160a01b038216610be9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b600c5489610c206001546000540390565b610c2a91906121d7565b1115610c485760405162461bcd60e51b815260040161065f9061211d565b610c52888a612203565b3414610ca05760405162461bcd60e51b815260206004820152601b60248201527f476f47686f73743a20696e73756666696369656e742076616c75650000000000604482015260640161065f565b336000908152600e60205260409020548790610cbd908b906121d7565b1115610cdb5760405162461bcd60e51b815260040161065f90612012565b85421015610cfb5760405162461bcd60e51b815260040161065f90612193565b84421115610d1b5760405162461bcd60e51b815260040161065f90612193565b83421115610d3b5760405162461bcd60e51b815260040161065f90612057565b600d5461010090046001600160a01b0316610d603360008b8b828c8c8c8c8c8c610dea565b6001600160a01b031614610d865760405162461bcd60e51b815260040161065f90611fdb565b336000908152600e6020526040812080548b92906107f09084906121d7565b6008546001600160a01b03163314610dcf5760405162461bcd60e51b815260040161065f9061215e565b610dd960006114ae565b565b6060600380546104d190612265565b600080610dfd8d8d8d8d8d8d8d8d610b79565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052909150600090605c0160408051601f1981840301815282825280516020918201206000845290830180835281905260ff8916918301919091526060820187905260808201869052915060019060a0016020604051602081039080840390855afa158015610e9e573d6000803e3d6000fd5b5050604051601f1901519f9e505050505050505050505050505050565b6001600160a01b038216331415610ee55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f5c8484846111a2565b6001600160a01b0383163b15158015610f7e5750610f7c84848484611500565b155b15610f9c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600d5460609060ff1615610fec57600b610fc5610fc08460016121d7565b6115f8565b604051602001610fd6929190611ed0565b6040516020818303038152906040529050919050565b6009604051602001610fd69190611f41565b919050565b6008546001600160a01b0316331461102d5760405162461bcd60e51b815260040161065f9061215e565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611066573d6000803e3d6000fd5b50565b6008546001600160a01b031633146110935760405162461bcd60e51b815260040161065f9061215e565b6001600160a01b0381166110f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065f565b611066816114ae565b60008054821080156104bc575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b638282604051806020016040528060008152506116f6565b60006111ad82611392565b9050836001600160a01b031681600001516001600160a01b0316146111e45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061120257506112028533610422565b8061121d57503361121284610554565b6001600160a01b0316145b90508061123d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661126457604051633a954ecd60e21b815260040160405180910390fd5b6112706000848761112c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611346576000548214611346578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561149557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114935780516001600160a01b031615611429579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561148e579392505050565b611429565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611535903390899088908890600401611f8b565b602060405180830381600087803b15801561154f57600080fd5b505af192505050801561157f575060408051601f3d908101601f1916820190925261157c91810190611ca0565b60015b6115da573d8080156115ad576040519150601f19603f3d011682016040523d82523d6000602084013e6115b2565b606091505b5080516115d2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161161c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116465780611630816122a0565b915061163f9050600a836121ef565b9150611620565b60008167ffffffffffffffff81111561166157611661612311565b6040519080825280601f01601f19166020018201604052801561168b576020820181803683370190505b5090505b84156115f0576116a0600183612222565b91506116ad600a866122bb565b6116b89060306121d7565b60f81b8183815181106116cd576116cd6122fb565b60200101906001600160f81b031916908160001a9053506116ef600a866121ef565b945061168f565b61062183838360016000546001600160a01b03851661172757604051622e076360e81b815260040160405180910390fd5b836117455760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156117f757506001600160a01b0387163b15155b15611880575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118486000888480600101955088611500565b611865576040516368d2bf6b60e11b815260040160405180910390fd5b808214156117fd57826000541461187b57600080fd5b6118c6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611881575b5060005561138b565b8280546118db90612265565b90600052602060002090601f0160209004810192826118fd5760008555611943565b82601f1061191657805160ff1916838001178555611943565b82800160010185558215611943579182015b82811115611943578251825591602001919060010190611928565b5061194f929150611953565b5090565b5b8082111561194f5760008155600101611954565b600067ffffffffffffffff8084111561198357611983612311565b604051601f8501601f19908116603f011681019082821181831017156119ab576119ab612311565b816040528093508581528686860111156119c457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610ffe57600080fd5b803560038110610ffe57600080fd5b803560ff81168114610ffe57600080fd5b600060208284031215611a2757600080fd5b611a30826119de565b9392505050565b60008060408385031215611a4a57600080fd5b611a53836119de565b9150611a61602084016119de565b90509250929050565b600080600060608486031215611a7f57600080fd5b611a88846119de565b9250611a96602085016119de565b9150604084013590509250925092565b60008060008060808587031215611abc57600080fd5b611ac5856119de565b9350611ad3602086016119de565b925060408501359150606085013567ffffffffffffffff811115611af657600080fd5b8501601f81018713611b0757600080fd5b611b1687823560208401611968565b91505092959194509250565b60008060408385031215611b3557600080fd5b611b3e836119de565b915060208301358015158114611b5357600080fd5b809150509250929050565b600080600080600080600080610100898b031215611b7b57600080fd5b611b84896119de565b9750611b9260208a016119f5565b979a9799505050506040860135956060810135956080820135955060a0820135945060c0820135935060e0909101359150565b60008060008060008060008060008060006101608c8e031215611be757600080fd5b611bf08c6119de565b9a50611bfe60208d016119f5565b995060408c0135985060608c0135975060808c0135965060a08c0135955060c08c0135945060e08c01359350611c376101008d01611a04565b92506101208c013591506101408c013590509295989b509295989b9093969950565b60008060408385031215611c6c57600080fd5b611c75836119de565b946020939093013593505050565b600060208284031215611c9557600080fd5b8135611a3081612327565b600060208284031215611cb257600080fd5b8151611a3081612327565b600060208284031215611ccf57600080fd5b813567ffffffffffffffff811115611ce657600080fd5b8201601f81018413611cf757600080fd5b6115f084823560208401611968565b600060208284031215611d1857600080fd5b5035919050565b6000806000806000806000806000806101408b8d031215611d3f57600080fd5b8a35995060208b0135985060408b0135975060608b0135965060808b0135955060a08b0135945060c08b01359350611d7960e08c01611a04565b92506101008b013591506101208b013590509295989b9194979a5092959850565b60008060008060008060008060006101208a8c031215611db957600080fd5b8935985060208a0135975060408a0135965060608a0135955060808a0135945060a08a01359350611dec60c08b01611a04565b925060e08a013591506101008a013590509295985092959850929598565b60008151808452611e22816020860160208601612239565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611e5057607f831692505b6020808410821415611e7257634e487b7160e01b600052602260045260246000fd5b818015611e865760018114611e9757611ec4565b60ff19861689528489019650611ec4565b60008881526020902060005b86811015611ebc5781548b820152908501908301611ea3565b505084890196505b50505050505092915050565b6768747470733a2f2f60c01b81526000611eed6008830185611e36565b7f2e697066732e6e667473746f726167652e6c696e6b2f6d657461646174612f0081528351611f2381601f840160208801612239565b64173539b7b760d91b601f9290910191820152602401949350505050565b6768747470733a2f2f60c01b81526000611f5e6008830184611e36565b7f2e697066732e6e667473746f726167652e6c696e6b2f636f7665722e6a736f6e81526020019392505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fbe90830184611e0a565b9695505050505050565b602081526000611a306020830184611e0a565b6020808252601a908201527f476f47686f73743a20696e76616c6964207369676e6174757265000000000000604082015260600190565b60208082526025908201527f476f47686f73743a207265616368656420746865207065722077616c6c6574206040820152641b1a5b5a5d60da1b606082015260800190565b6020808252601d908201527f476f47686f73743a207369676e61747572652069732065787069726564000000604082015260600190565b6101408082526007908201526611dbd1da1bdcdd60ca1b6101608201526001600160a01b038a81166020830152891660408201526101808101600389106120e557634e487b7160e01b600052602160045260246000fd5b6060820198909852608081019690965260a086019490945260c085019290925260e08401526101008301526101209091015292915050565b60208082526021908201527f476f47686f73743a206e6f7420656e6f75676820746f6b656e20746f206d696e6040820152601d60fa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f476f47686f73743a206d696e74696e6720666561747572652069732064697361604082015263189b195960e21b606082015260800190565b600082198211156121ea576121ea6122cf565b500190565b6000826121fe576121fe6122e5565b500490565b600081600019048311821515161561221d5761221d6122cf565b500290565b600082821015612234576122346122cf565b500390565b60005b8381101561225457818101518382015260200161223c565b83811115610f9c5750506000910152565b600181811c9082168061227957607f821691505b6020821081141561229a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122b4576122b46122cf565b5060010190565b6000826122ca576122ca6122e5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461106657600080fdfea26469706673582212208fb2b355f3f69905118a30abd938c13af17a2881533b4f77bb7ab105e470adec64736f6c63430008070033000000000000000000000000570d13c973979a60c430a39d384e37d0cc69b97100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014046f02c933a8ad87f5d49430251a45699a34e18ebb9710fc779fce5b70d381dae00000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000007476f47686f737400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000547484f5354000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003b626166796265696461346d63336b6a6c626561356d6e706169656a7437746a71686e707170717171766a7062366b78347376376a707675626465340000000000
Deployed Bytecode
0x60806040526004361061014b5760003560e01c806370a08231116100b6578063a22cb4651161006f578063a22cb46514610392578063b88d4fde146103b2578063c87b56dd146103d2578063d4d5d32a146103f2578063e985e9c514610407578063f2fde38b1461045057600080fd5b806370a08231146102f757806370caaa3214610317578063715018a61461032a5780638da5cb5b1461033f57806395d89b411461035d57806399b9f6551461037257600080fd5b806323b872dd1161010857806323b872dd146102445780632c3180fd1461026457806342842e0e146102775780634c261247146102975780636352211e146102b757806368e9d0b6146102d757600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df57806318160ddd146102015780631efd05f614610224575b600080fd5b34801561015c57600080fd5b5061017061016b366004611c83565b610470565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a6104c2565b60405161017c9190611fc8565b3480156101b357600080fd5b506101c76101c2366004611d06565b610554565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa366004611c59565b610598565b005b34801561020d57600080fd5b50600154600054035b60405190815260200161017c565b34801561023057600080fd5b506101ff61023f366004611d9a565b610626565b34801561025057600080fd5b506101ff61025f366004611a6a565b61080b565b6101ff610272366004611d1f565b610816565b34801561028357600080fd5b506101ff610292366004611a6a565b610a4a565b3480156102a357600080fd5b506101ff6102b2366004611cbd565b610a65565b3480156102c357600080fd5b506101c76102d2366004611d06565b610b67565b3480156102e357600080fd5b506102166102f2366004611b5e565b610b79565b34801561030357600080fd5b50610216610312366004611a15565b610bc0565b6101ff610325366004611d9a565b610c0f565b34801561033657600080fd5b506101ff610da5565b34801561034b57600080fd5b506008546001600160a01b03166101c7565b34801561036957600080fd5b5061019a610ddb565b34801561037e57600080fd5b506101c761038d366004611bc5565b610dea565b34801561039e57600080fd5b506101ff6103ad366004611b22565b610ebb565b3480156103be57600080fd5b506101ff6103cd366004611aa6565b610f51565b3480156103de57600080fd5b5061019a6103ed366004611d06565b610fa2565b3480156103fe57600080fd5b506101ff611003565b34801561041357600080fd5b50610170610422366004611a37565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561045c57600080fd5b506101ff61046b366004611a15565b611069565b60006001600160e01b031982166380ac58cd60e01b14806104a157506001600160e01b03198216635b5e139f60e01b145b806104bc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104d190612265565b80601f01602080910402602001604051908101604052809291908181526020018280546104fd90612265565b801561054a5780601f1061051f5761010080835404028352916020019161054a565b820191906000526020600020905b81548152906001019060200180831161052d57829003601f168201915b5050505050905090565b600061055f82611101565b61057c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105a382610b67565b9050806001600160a01b0316836001600160a01b031614156105d85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105f857506105f68133610422565b155b15610616576040516367d9dca160e11b815260040160405180910390fd5b61062183838361112c565b505050565b600c54896106376001546000540390565b61064191906121d7565b11156106685760405162461bcd60e51b815260040161065f9061211d565b60405180910390fd5b336000908152600e60205260409020548890610685908b906121d7565b11156106a35760405162461bcd60e51b815260040161065f90612012565b854210156106c35760405162461bcd60e51b815260040161065f90612193565b844211156106e35760405162461bcd60e51b815260040161065f90612193565b834211156107035760405162461bcd60e51b815260040161065f90612057565b8689600f5461071291906121d7565b111561076c5760405162461bcd60e51b8152602060048201526024808201527f476f47686f73743a2072656163686564207468652066726565206d696e74206c6044820152631a5b5a5d60e21b606482015260840161065f565b600d5461010090046001600160a01b031661079233600260008c8c8c8c8c8c8c8c610dea565b6001600160a01b0316146107b85760405162461bcd60e51b815260040161065f90611fdb565b336000908152600e6020526040812080548b92906107d79084906121d7565b9250508190555088601060008282546107f091906121d7565b909155506108009050338a611188565b505050505050505050565b6106218383836111a2565b600c548a6108276001546000540390565b61083191906121d7565b111561084f5760405162461bcd60e51b815260040161065f9061211d565b610859898b612203565b34146108a75760405162461bcd60e51b815260206004820152601b60248201527f476f47686f73743a20696e73756666696369656e742076616c75650000000000604482015260640161065f565b336000908152600e602052604090205488906108c4908c906121d7565b11156108e25760405162461bcd60e51b815260040161065f90612012565b854210156109025760405162461bcd60e51b815260040161065f90612193565b844211156109225760405162461bcd60e51b815260040161065f90612193565b834211156109425760405162461bcd60e51b815260040161065f90612057565b868a600f5461095191906121d7565b11156109ab5760405162461bcd60e51b8152602060048201526024808201527f476f47686f73743a2072656163686564207468652077686974656c697374206c6044820152631a5b5a5d60e21b606482015260840161065f565b600d5461010090046001600160a01b03166109d03360018c8c8c8c8c8c8c8c8c610dea565b6001600160a01b0316146109f65760405162461bcd60e51b815260040161065f90611fdb565b336000908152600e6020526040812080548c9290610a159084906121d7565b9250508190555089600f6000828254610a2e91906121d7565b90915550610a3e9050338b611188565b50505050505050505050565b61062183838360405180602001604052806000815250610f51565b6008546001600160a01b03163314610a8f5760405162461bcd60e51b815260040161065f9061215e565b600d5460ff1615610ae25760405162461bcd60e51b815260206004820152601960248201527f476f47686f73743a20616c72656164792072657665616c656400000000000000604482015260640161065f565b600a548151602083012014610b435760405162461bcd60e51b815260206004820152602160248201527f476f47686f73743a2052657665616c656420434944206e6f74206d61746368656044820152601960fa1b606482015260840161065f565b600d805460ff191660011790558051610b6390600b9060208401906118cf565b5050565b6000610b7282611392565b5192915050565b6000308989898989898989604051602001610b9c9998979695949392919061208e565b60405160208183030381529060405280519060200120905098975050505050505050565b60006001600160a01b038216610be9576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b600c5489610c206001546000540390565b610c2a91906121d7565b1115610c485760405162461bcd60e51b815260040161065f9061211d565b610c52888a612203565b3414610ca05760405162461bcd60e51b815260206004820152601b60248201527f476f47686f73743a20696e73756666696369656e742076616c75650000000000604482015260640161065f565b336000908152600e60205260409020548790610cbd908b906121d7565b1115610cdb5760405162461bcd60e51b815260040161065f90612012565b85421015610cfb5760405162461bcd60e51b815260040161065f90612193565b84421115610d1b5760405162461bcd60e51b815260040161065f90612193565b83421115610d3b5760405162461bcd60e51b815260040161065f90612057565b600d5461010090046001600160a01b0316610d603360008b8b828c8c8c8c8c8c610dea565b6001600160a01b031614610d865760405162461bcd60e51b815260040161065f90611fdb565b336000908152600e6020526040812080548b92906107f09084906121d7565b6008546001600160a01b03163314610dcf5760405162461bcd60e51b815260040161065f9061215e565b610dd960006114ae565b565b6060600380546104d190612265565b600080610dfd8d8d8d8d8d8d8d8d610b79565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052909150600090605c0160408051601f1981840301815282825280516020918201206000845290830180835281905260ff8916918301919091526060820187905260808201869052915060019060a0016020604051602081039080840390855afa158015610e9e573d6000803e3d6000fd5b5050604051601f1901519f9e505050505050505050505050505050565b6001600160a01b038216331415610ee55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f5c8484846111a2565b6001600160a01b0383163b15158015610f7e5750610f7c84848484611500565b155b15610f9c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600d5460609060ff1615610fec57600b610fc5610fc08460016121d7565b6115f8565b604051602001610fd6929190611ed0565b6040516020818303038152906040529050919050565b6009604051602001610fd69190611f41565b919050565b6008546001600160a01b0316331461102d5760405162461bcd60e51b815260040161065f9061215e565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611066573d6000803e3d6000fd5b50565b6008546001600160a01b031633146110935760405162461bcd60e51b815260040161065f9061215e565b6001600160a01b0381166110f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065f565b611066816114ae565b60008054821080156104bc575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b638282604051806020016040528060008152506116f6565b60006111ad82611392565b9050836001600160a01b031681600001516001600160a01b0316146111e45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061120257506112028533610422565b8061121d57503361121284610554565b6001600160a01b0316145b90508061123d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661126457604051633a954ecd60e21b815260040160405180910390fd5b6112706000848761112c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611346576000548214611346578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561149557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114935780516001600160a01b031615611429579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561148e579392505050565b611429565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611535903390899088908890600401611f8b565b602060405180830381600087803b15801561154f57600080fd5b505af192505050801561157f575060408051601f3d908101601f1916820190925261157c91810190611ca0565b60015b6115da573d8080156115ad576040519150601f19603f3d011682016040523d82523d6000602084013e6115b2565b606091505b5080516115d2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161161c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116465780611630816122a0565b915061163f9050600a836121ef565b9150611620565b60008167ffffffffffffffff81111561166157611661612311565b6040519080825280601f01601f19166020018201604052801561168b576020820181803683370190505b5090505b84156115f0576116a0600183612222565b91506116ad600a866122bb565b6116b89060306121d7565b60f81b8183815181106116cd576116cd6122fb565b60200101906001600160f81b031916908160001a9053506116ef600a866121ef565b945061168f565b61062183838360016000546001600160a01b03851661172757604051622e076360e81b815260040160405180910390fd5b836117455760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156117f757506001600160a01b0387163b15155b15611880575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118486000888480600101955088611500565b611865576040516368d2bf6b60e11b815260040160405180910390fd5b808214156117fd57826000541461187b57600080fd5b6118c6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611881575b5060005561138b565b8280546118db90612265565b90600052602060002090601f0160209004810192826118fd5760008555611943565b82601f1061191657805160ff1916838001178555611943565b82800160010185558215611943579182015b82811115611943578251825591602001919060010190611928565b5061194f929150611953565b5090565b5b8082111561194f5760008155600101611954565b600067ffffffffffffffff8084111561198357611983612311565b604051601f8501601f19908116603f011681019082821181831017156119ab576119ab612311565b816040528093508581528686860111156119c457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610ffe57600080fd5b803560038110610ffe57600080fd5b803560ff81168114610ffe57600080fd5b600060208284031215611a2757600080fd5b611a30826119de565b9392505050565b60008060408385031215611a4a57600080fd5b611a53836119de565b9150611a61602084016119de565b90509250929050565b600080600060608486031215611a7f57600080fd5b611a88846119de565b9250611a96602085016119de565b9150604084013590509250925092565b60008060008060808587031215611abc57600080fd5b611ac5856119de565b9350611ad3602086016119de565b925060408501359150606085013567ffffffffffffffff811115611af657600080fd5b8501601f81018713611b0757600080fd5b611b1687823560208401611968565b91505092959194509250565b60008060408385031215611b3557600080fd5b611b3e836119de565b915060208301358015158114611b5357600080fd5b809150509250929050565b600080600080600080600080610100898b031215611b7b57600080fd5b611b84896119de565b9750611b9260208a016119f5565b979a9799505050506040860135956060810135956080820135955060a0820135945060c0820135935060e0909101359150565b60008060008060008060008060008060006101608c8e031215611be757600080fd5b611bf08c6119de565b9a50611bfe60208d016119f5565b995060408c0135985060608c0135975060808c0135965060a08c0135955060c08c0135945060e08c01359350611c376101008d01611a04565b92506101208c013591506101408c013590509295989b509295989b9093969950565b60008060408385031215611c6c57600080fd5b611c75836119de565b946020939093013593505050565b600060208284031215611c9557600080fd5b8135611a3081612327565b600060208284031215611cb257600080fd5b8151611a3081612327565b600060208284031215611ccf57600080fd5b813567ffffffffffffffff811115611ce657600080fd5b8201601f81018413611cf757600080fd5b6115f084823560208401611968565b600060208284031215611d1857600080fd5b5035919050565b6000806000806000806000806000806101408b8d031215611d3f57600080fd5b8a35995060208b0135985060408b0135975060608b0135965060808b0135955060a08b0135945060c08b01359350611d7960e08c01611a04565b92506101008b013591506101208b013590509295989b9194979a5092959850565b60008060008060008060008060006101208a8c031215611db957600080fd5b8935985060208a0135975060408a0135965060608a0135955060808a0135945060a08a01359350611dec60c08b01611a04565b925060e08a013591506101008a013590509295985092959850929598565b60008151808452611e22816020860160208601612239565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611e5057607f831692505b6020808410821415611e7257634e487b7160e01b600052602260045260246000fd5b818015611e865760018114611e9757611ec4565b60ff19861689528489019650611ec4565b60008881526020902060005b86811015611ebc5781548b820152908501908301611ea3565b505084890196505b50505050505092915050565b6768747470733a2f2f60c01b81526000611eed6008830185611e36565b7f2e697066732e6e667473746f726167652e6c696e6b2f6d657461646174612f0081528351611f2381601f840160208801612239565b64173539b7b760d91b601f9290910191820152602401949350505050565b6768747470733a2f2f60c01b81526000611f5e6008830184611e36565b7f2e697066732e6e667473746f726167652e6c696e6b2f636f7665722e6a736f6e81526020019392505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fbe90830184611e0a565b9695505050505050565b602081526000611a306020830184611e0a565b6020808252601a908201527f476f47686f73743a20696e76616c6964207369676e6174757265000000000000604082015260600190565b60208082526025908201527f476f47686f73743a207265616368656420746865207065722077616c6c6574206040820152641b1a5b5a5d60da1b606082015260800190565b6020808252601d908201527f476f47686f73743a207369676e61747572652069732065787069726564000000604082015260600190565b6101408082526007908201526611dbd1da1bdcdd60ca1b6101608201526001600160a01b038a81166020830152891660408201526101808101600389106120e557634e487b7160e01b600052602160045260246000fd5b6060820198909852608081019690965260a086019490945260c085019290925260e08401526101008301526101209091015292915050565b60208082526021908201527f476f47686f73743a206e6f7420656e6f75676820746f6b656e20746f206d696e6040820152601d60fa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f476f47686f73743a206d696e74696e6720666561747572652069732064697361604082015263189b195960e21b606082015260800190565b600082198211156121ea576121ea6122cf565b500190565b6000826121fe576121fe6122e5565b500490565b600081600019048311821515161561221d5761221d6122cf565b500290565b600082821015612234576122346122cf565b500390565b60005b8381101561225457818101518382015260200161223c565b83811115610f9c5750506000910152565b600181811c9082168061227957607f821691505b6020821081141561229a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122b4576122b46122cf565b5060010190565b6000826122ca576122ca6122e5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461106657600080fdfea26469706673582212208fb2b355f3f69905118a30abd938c13af17a2881533b4f77bb7ab105e470adec64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000570d13c973979a60c430a39d384e37d0cc69b97100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014046f02c933a8ad87f5d49430251a45699a34e18ebb9710fc779fce5b70d381dae00000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000007476f47686f737400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000547484f5354000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003b626166796265696461346d63336b6a6c626561356d6e706169656a7437746a71686e707170717171766a7062366b78347376376a707675626465340000000000
-----Decoded View---------------
Arg [0] : _signer (address): 0x570d13C973979a60C430A39D384E37D0CC69b971
Arg [1] : collectionName (string): GoGhost
Arg [2] : collectionSymbol (string): GHOST
Arg [3] : _coverCid (string): bafybeida4mc3kjlbea5mnpaiejt7tjqhnpqpqqqvjpb6kx4sv7jpvubde4
Arg [4] : _revealedCidHash (bytes32): 0x46f02c933a8ad87f5d49430251a45699a34e18ebb9710fc779fce5b70d381dae
Arg [5] : _totalSupply (uint256): 1000
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 000000000000000000000000570d13c973979a60c430a39d384e37d0cc69b971
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 46f02c933a8ad87f5d49430251a45699a34e18ebb9710fc779fce5b70d381dae
Arg [5] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 476f47686f737400000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 47484f5354000000000000000000000000000000000000000000000000000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000003b
Arg [11] : 626166796265696461346d63336b6a6c626561356d6e706169656a7437746a71
Arg [12] : 686e707170717171766a7062366b78347376376a707675626465340000000000
Deployed Bytecode Sourcemap
48566:6849:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30740:305;;;;;;;;;;-1:-1:-1;30740:305:0;;;;;:::i;:::-;;:::i;:::-;;;11380:14:1;;11373:22;11355:41;;11343:2;11328:18;30740:305:0;;;;;;;;33853:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35356:204::-;;;;;;;;;;-1:-1:-1;35356:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10678:32:1;;;10660:51;;10648:2;10633:18;35356:204:0;10514:203:1;34919:371:0;;;;;;;;;;-1:-1:-1;34919:371:0;;;;;:::i;:::-;;:::i;:::-;;29989:303;;;;;;;;;;-1:-1:-1;30243:12:0;;30033:7;30227:13;:28;29989:303;;;11553:25:1;;;11541:2;11526:18;29989:303:0;11407:177:1;53172:1305:0;;;;;;;;;;-1:-1:-1;53172:1305:0;;;;;:::i;:::-;;:::i;36221:170::-;;;;;;;;;;-1:-1:-1;36221:170:0;;;;;:::i;:::-;;:::i;51729:1437::-;;;;;;:::i;:::-;;:::i;36462:185::-;;;;;;;;;;-1:-1:-1;36462:185:0;;;;;:::i;:::-;;:::i;54483:301::-;;;;;;;;;;-1:-1:-1;54483:301:0;;;;;:::i;:::-;;:::i;33661:125::-;;;;;;;;;;-1:-1:-1;33661:125:0;;;;;:::i;:::-;;:::i;49291:547::-;;;;;;;;;;-1:-1:-1;49291:547:0;;;;;:::i;:::-;;:::i;31109:206::-;;;;;;;;;;-1:-1:-1;31109:206:0;;;;;:::i;:::-;;:::i;50511:1212::-;;;;;;:::i;:::-;;:::i;8450:103::-;;;;;;;;;;;;;:::i;7799:87::-;;;;;;;;;;-1:-1:-1;7872:6:0;;-1:-1:-1;;;;;7872:6:0;7799:87;;34022:104;;;;;;;;;;;;;:::i;49844:661::-;;;;;;;;;;-1:-1:-1;49844:661:0;;;;;:::i;:::-;;:::i;35632:287::-;;;;;;;;;;-1:-1:-1;35632:287:0;;;;;:::i;:::-;;:::i;36718:369::-;;;;;;;;;;-1:-1:-1;36718:369:0;;;;;:::i;:::-;;:::i;54790:507::-;;;;;;;;;;-1:-1:-1;54790:507:0;;;;;:::i;:::-;;:::i;55303:109::-;;;;;;;;;;;;;:::i;35990:164::-;;;;;;;;;;-1:-1:-1;35990:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36111:25:0;;;36087:4;36111:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35990:164;8708:201;;;;;;;;;;-1:-1:-1;8708:201:0;;;;;:::i;:::-;;:::i;30740:305::-;30842:4;-1:-1:-1;;;;;;30879:40:0;;-1:-1:-1;;;30879:40:0;;:105;;-1:-1:-1;;;;;;;30936:48:0;;-1:-1:-1;;;30936:48:0;30879:105;:158;;;-1:-1:-1;;;;;;;;;;26409:40:0;;;31001:36;30859:178;30740:305;-1:-1:-1;;30740:305:0:o;33853:100::-;33907:13;33940:5;33933:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33853:100;:::o;35356:204::-;35424:7;35449:16;35457:7;35449;:16::i;:::-;35444:64;;35474:34;;-1:-1:-1;;;35474:34:0;;;;;;;;;;;35444:64;-1:-1:-1;35528:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35528:24:0;;35356:204::o;34919:371::-;34992:13;35008:24;35024:7;35008:15;:24::i;:::-;34992:40;;35053:5;-1:-1:-1;;;;;35047:11:0;:2;-1:-1:-1;;;;;35047:11:0;;35043:48;;;35067:24;;-1:-1:-1;;;35067:24:0;;;;;;;;;;;35043:48;6597:10;-1:-1:-1;;;;;35108:21:0;;;;;;:63;;-1:-1:-1;35134:37:0;35151:5;6597:10;35990:164;:::i;35134:37::-;35133:38;35108:63;35104:138;;;35195:35;;-1:-1:-1;;;35195:35:0;;;;;;;;;;;35104:138;35254:28;35263:2;35267:7;35276:5;35254:8;:28::i;:::-;34981:309;34919:371;;:::o;53172:1305::-;53448:9;;53438:6;53422:13;30243:12;;30033:7;30227:13;:28;;29989:303;53422:13;:22;;;;:::i;:::-;:35;;53406:102;;;;-1:-1:-1;;;53406:102:0;;;;;;;:::i;:::-;;;;;;;;;53543:10;53531:23;;;;:11;:23;;;;;;53567:14;;53531:32;;53557:6;;53531:32;:::i;:::-;:50;;53515:121;;;;-1:-1:-1;;;53515:121:0;;;;;;;:::i;:::-;53678:9;53659:15;:28;;53643:98;;;;-1:-1:-1;;;53643:98:0;;;;;;;:::i;:::-;53783:7;53764:15;:26;;53748:96;;;;-1:-1:-1;;;53748:96:0;;;;;;;:::i;:::-;53878:8;53859:15;:27;;53851:69;;;;-1:-1:-1;;;53851:69:0;;;;;;;:::i;:::-;53976:17;53966:6;53943:20;;:29;;;;:::i;:::-;:50;;53927:120;;;;-1:-1:-1;;;53927:120:0;;17048:2:1;53927:120:0;;;17030:21:1;17087:2;17067:18;;;17060:30;17126:34;17106:18;;;17099:62;-1:-1:-1;;;17177:18:1;;;17170:34;17221:19;;53927:120:0;16846:400:1;53927:120:0;54307:6;;;;;-1:-1:-1;;;;;54307:6:0;54070:233;54102:10;54123:13;54147:1;54159:14;54184:17;54212:9;54232:7;54250:8;54269:1;54281;54293;54070:21;:233::i;:::-;-1:-1:-1;;;;;54070:243:0;;54054:303;;;;-1:-1:-1;;;54054:303:0;;;;;;;:::i;:::-;54378:10;54366:23;;;;:11;:23;;;;;:33;;54393:6;;54366:23;:33;;54393:6;;54366:33;:::i;:::-;;;;;;;;54429:6;54406:19;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;54442:29:0;;-1:-1:-1;54452:10:0;54464:6;54442:9;:29::i;:::-;53172:1305;;;;;;;;;:::o;36221:170::-;36355:28;36365:4;36371:2;36375:7;36355:9;:28::i;51729:1437::-;52043:9;;52033:6;52017:13;30243:12;;30033:7;30227:13;:28;;29989:303;52017:13;:22;;;;:::i;:::-;:35;;52001:102;;;;-1:-1:-1;;;52001:102:0;;;;;;;:::i;:::-;52131:18;52140:9;52131:6;:18;:::i;:::-;52118:9;:31;52110:71;;;;-1:-1:-1;;;52110:71:0;;15524:2:1;52110:71:0;;;15506:21:1;15563:2;15543:18;;;15536:30;15602:29;15582:18;;;15575:57;15649:18;;52110:71:0;15322:351:1;52110:71:0;52216:10;52204:23;;;;:11;:23;;;;;;52240:14;;52204:32;;52230:6;;52204:32;:::i;:::-;:50;;52188:121;;;;-1:-1:-1;;;52188:121:0;;;;;;;:::i;:::-;52351:9;52332:15;:28;;52316:98;;;;-1:-1:-1;;;52316:98:0;;;;;;;:::i;:::-;52456:7;52437:15;:26;;52421:96;;;;-1:-1:-1;;;52421:96:0;;;;;;;:::i;:::-;52551:8;52532:15;:27;;52524:69;;;;-1:-1:-1;;;52524:69:0;;;;;;;:::i;:::-;52649:18;52639:6;52616:20;;:29;;;;:::i;:::-;:51;;52600:121;;;;-1:-1:-1;;;52600:121:0;;16282:2:1;52600:121:0;;;16264:21:1;16321:2;16301:18;;;16294:30;16360:34;16340:18;;;16333:62;-1:-1:-1;;;16411:18:1;;;16404:34;16455:19;;52600:121:0;16080:400:1;52600:121:0;52995:6;;;;;-1:-1:-1;;;;;52995:6:0;52744:247;52776:10;52995:6;52826:9;52846:14;52871:18;52900:9;52920:7;52938:8;52957:1;52969;52981;52744:21;:247::i;:::-;-1:-1:-1;;;;;52744:257:0;;52728:317;;;;-1:-1:-1;;;52728:317:0;;;;;;;:::i;:::-;53066:10;53054:23;;;;:11;:23;;;;;:33;;53081:6;;53054:23;:33;;53081:6;;53054:33;:::i;:::-;;;;;;;;53118:6;53094:20;;:30;;;;;;;:::i;:::-;;;;-1:-1:-1;53131:29:0;;-1:-1:-1;53141:10:0;53153:6;53131:9;:29::i;:::-;51729:1437;;;;;;;;;;:::o;36462:185::-;36600:39;36617:4;36623:2;36627:7;36600:39;;;;;;;;;;;;:16;:39::i;54483:301::-;7872:6;;-1:-1:-1;;;;;7872:6:0;6597:10;8019:23;8011:68;;;;-1:-1:-1;;;8011:68:0;;;;;;;:::i;:::-;54560:8:::1;::::0;::::1;;54559:9;54551:47;;;::::0;-1:-1:-1;;;54551:47:0;;13944:2:1;54551:47:0::1;::::0;::::1;13926:21:1::0;13983:2;13963:18;;;13956:30;14022:27;14002:18;;;13995:55;14067:18;;54551:47:0::1;13742:349:1::0;54551:47:0::1;54655:15;::::0;54621:30;;::::1;::::0;::::1;::::0;:49:::1;54605:116;;;::::0;-1:-1:-1;;;54605:116:0;;17453:2:1;54605:116:0::1;::::0;::::1;17435:21:1::0;17492:2;17472:18;;;17465:30;17531:34;17511:18;;;17504:62;-1:-1:-1;;;17582:18:1;;;17575:31;17623:19;;54605:116:0::1;17251:397:1::0;54605:116:0::1;54730:8;:15:::0;;-1:-1:-1;;54730:15:0::1;54741:4;54730:15;::::0;;54752:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54483:301:::0;:::o;33661:125::-;33725:7;33752:21;33765:7;33752:12;:21::i;:::-;:26;;33661:125;-1:-1:-1;;33661:125:0:o;49291:547::-;49529:7;49632:4;49650:6;49669:8;49690:9;49712:14;49739:10;49762:9;49784:7;49804:8;49579:244;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49559:273;;;;;;49545:287;;49291:547;;;;;;;;;;:::o;31109:206::-;31173:7;-1:-1:-1;;;;;31197:19:0;;31193:60;;31225:28;;-1:-1:-1;;;31225:28:0;;;;;;;;;;;31193:60;-1:-1:-1;;;;;;31279:19:0;;;;;:12;:19;;;;;:27;;;;31109:206::o;50511:1212::-;50783:9;;50773:6;50757:13;30243:12;;30033:7;30227:13;:28;;29989:303;50757:13;:22;;;;:::i;:::-;:35;;50741:102;;;;-1:-1:-1;;;50741:102:0;;;;;;;:::i;:::-;50871:18;50880:9;50871:6;:18;:::i;:::-;50858:9;:31;50850:71;;;;-1:-1:-1;;;50850:71:0;;15524:2:1;50850:71:0;;;15506:21:1;15563:2;15543:18;;;15536:30;15602:29;15582:18;;;15575:57;15649:18;;50850:71:0;15322:351:1;50850:71:0;50956:10;50944:23;;;;:11;:23;;;;;;50980:14;;50944:32;;50970:6;;50944:32;:::i;:::-;:50;;50928:121;;;;-1:-1:-1;;;50928:121:0;;;;;;;:::i;:::-;51091:9;51072:15;:28;;51056:98;;;;-1:-1:-1;;;51056:98:0;;;;;;;:::i;:::-;51196:7;51177:15;:26;;51161:96;;;;-1:-1:-1;;;51161:96:0;;;;;;;:::i;:::-;51291:8;51272:15;:27;;51264:69;;;;-1:-1:-1;;;51264:69:0;;;;;;;:::i;:::-;51589:6;;;;;-1:-1:-1;;;;;51589:6:0;51356:229;51388:10;51409:17;51437:9;51457:14;51409:17;51494:9;51514:7;51532:8;51551:1;51563;51575;51356:21;:229::i;:::-;-1:-1:-1;;;;;51356:239:0;;51340:299;;;;-1:-1:-1;;;51340:299:0;;;;;;;:::i;:::-;51660:10;51648:23;;;;:11;:23;;;;;:33;;51675:6;;51648:23;:33;;51675:6;;51648:33;:::i;8450:103::-;7872:6;;-1:-1:-1;;;;;7872:6:0;6597:10;8019:23;8011:68;;;;-1:-1:-1;;;8011:68:0;;;;;;;:::i;:::-;8515:30:::1;8542:1;8515:18;:30::i;:::-;8450:103::o:0;34022:104::-;34078:13;34111:7;34104:14;;;;;:::i;49844:661::-;50139:7;50155:18;50176:160;50195:6;50210:8;50227:9;50245:14;50268:10;50287:9;50305:7;50321:8;50176:10;:160::i;:::-;50383:64;;8988:66:1;50383:64:0;;;8976:79:1;9071:12;;;9064:28;;;50155:181:0;;-1:-1:-1;50343:19:0;;9108:12:1;;50383:64:0;;;-1:-1:-1;;50383:64:0;;;;;;;;;50365:89;;50383:64;50365:89;;;;50468:31;;;;;;;;;11816:25:1;;;11889:4;11877:17;;11857:18;;;11850:45;;;;11911:18;;;11904:34;;;11954:18;;;11947:34;;;50365:89:0;-1:-1:-1;50468:31:0;;11788:19:1;;50468:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50468:31:0;;-1:-1:-1;;50468:31:0;;;49844:661;-1:-1:-1;;;;;;;;;;;;;;;49844:661:0:o;35632:287::-;-1:-1:-1;;;;;35731:24:0;;6597:10;35731:24;35727:54;;;35764:17;;-1:-1:-1;;;35764:17:0;;;;;;;;;;;35727:54;6597:10;35794:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35794:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35794:53:0;;;;;;;;;;35863:48;;11355:41:1;;;35794:42:0;;6597:10;35863:48;;11328:18:1;35863:48:0;;;;;;;35632:287;;:::o;36718:369::-;36885:28;36895:4;36901:2;36905:7;36885:9;:28::i;:::-;-1:-1:-1;;;;;36928:13:0;;18454:19;:23;;36928:76;;;;;36948:56;36979:4;36985:2;36989:7;36998:5;36948:30;:56::i;:::-;36947:57;36928:76;36924:156;;;37028:40;;-1:-1:-1;;;37028:40:0;;;;;;;;;;;36924:156;36718:369;;;;:::o;54790:507::-;54913:8;;54884:13;;54913:8;;54909:383;;;55023:11;55097:29;55114:11;:7;55124:1;55114:11;:::i;:::-;55097:16;:29::i;:::-;54967:194;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54932:240;;54790:507;;;:::o;54909:383::-;55238:8;55209:74;;;;;;;;:::i;54909:383::-;54790:507;;;:::o;55303:109::-;7872:6;;-1:-1:-1;;;;;7872:6:0;6597:10;8019:23;8011:68;;;;-1:-1:-1;;;8011:68:0;;;;;;;:::i;:::-;7872:6;;55349:57:::1;::::0;-1:-1:-1;;;;;7872:6:0;;;;55384:21:::1;55349:57:::0;::::1;;;::::0;::::1;::::0;;;55384:21;7872:6;55349:57;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;55303:109::o:0;8708:201::-;7872:6;;-1:-1:-1;;;;;7872:6:0;6597:10;8019:23;8011:68;;;;-1:-1:-1;;;8011:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8797:22:0;::::1;8789:73;;;::::0;-1:-1:-1;;;8789:73:0;;13179:2:1;8789:73:0::1;::::0;::::1;13161:21:1::0;13218:2;13198:18;;;13191:30;13257:34;13237:18;;;13230:62;-1:-1:-1;;;13308:18:1;;;13301:36;13354:19;;8789:73:0::1;12977:402:1::0;8789:73:0::1;8873:28;8892:8;8873:18;:28::i;37342:187::-:0;37399:4;37463:13;;37453:7;:23;37423:98;;;;-1:-1:-1;;37494:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37494:27:0;;;;37493:28;;37342:187::o;45512:196::-;45627:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45627:29:0;-1:-1:-1;;;;;45627:29:0;;;;;;;;;45672:28;;45627:24;;45672:28;;;;;;;45512:196;;;:::o;37537:104::-;37606:27;37616:2;37620:8;37606:27;;;;;;;;;;;;:9;:27::i;40455:2130::-;40570:35;40608:21;40621:7;40608:12;:21::i;:::-;40570:59;;40668:4;-1:-1:-1;;;;;40646:26:0;:13;:18;;;-1:-1:-1;;;;;40646:26:0;;40642:67;;40681:28;;-1:-1:-1;;;40681:28:0;;;;;;;;;;;40642:67;40722:22;6597:10;-1:-1:-1;;;;;40748:20:0;;;;:73;;-1:-1:-1;40785:36:0;40802:4;6597:10;35990:164;:::i;40785:36::-;40748:126;;;-1:-1:-1;6597:10:0;40838:20;40850:7;40838:11;:20::i;:::-;-1:-1:-1;;;;;40838:36:0;;40748:126;40722:153;;40893:17;40888:66;;40919:35;;-1:-1:-1;;;40919:35:0;;;;;;;;;;;40888:66;-1:-1:-1;;;;;40969:16:0;;40965:52;;40994:23;;-1:-1:-1;;;40994:23:0;;;;;;;;;;;40965:52;41138:35;41155:1;41159:7;41168:4;41138:8;:35::i;:::-;-1:-1:-1;;;;;41469:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41469:31:0;;;;;;;-1:-1:-1;;41469:31:0;;;;;;;41515:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41515:29:0;;;;;;;;;;;41595:20;;;:11;:20;;;;;;41630:18;;-1:-1:-1;;;;;;41663:49:0;;;;-1:-1:-1;;;41696:15:0;41663:49;;;;;;;;;;41986:11;;42046:24;;;;;42089:13;;41595:20;;42046:24;;42089:13;42085:384;;42299:13;;42284:11;:28;42280:174;;42337:20;;42406:28;;;;42380:54;;-1:-1:-1;;;42380:54:0;-1:-1:-1;;;;;;42380:54:0;;;-1:-1:-1;;;;;42337:20:0;;42380:54;;;;42280:174;41444:1036;;;42516:7;42512:2;-1:-1:-1;;;;;42497:27:0;42506:4;-1:-1:-1;;;;;42497:27:0;;;;;;;;;;;42535:42;40559:2026;;40455:2130;;;:::o;32490:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32601:7:0;32684:13;;32677:4;:20;32646:886;;;32718:31;32752:17;;;:11;:17;;;;;;;;;32718:51;;;;;;;;;-1:-1:-1;;;;;32718:51:0;;;;-1:-1:-1;;;32718:51:0;;;;;;;;;;;-1:-1:-1;;;32718:51:0;;;;;;;;;;;;;;32788:729;;32838:14;;-1:-1:-1;;;;;32838:28:0;;32834:101;;32902:9;32490:1109;-1:-1:-1;;;32490:1109:0:o;32834:101::-;-1:-1:-1;;;33277:6:0;33322:17;;;;:11;:17;;;;;;;;;33310:29;;;;;;;;;-1:-1:-1;;;;;33310:29:0;;;;;-1:-1:-1;;;33310:29:0;;;;;;;;;;;-1:-1:-1;;;33310:29:0;;;;;;;;;;;;;33370:28;33366:109;;33438:9;32490:1109;-1:-1:-1;;;32490:1109:0:o;33366:109::-;33237:261;;;32699:833;32646:886;33560:31;;-1:-1:-1;;;33560:31:0;;;;;;;;;;;9069:191;9162:6;;;-1:-1:-1;;;;;9179:17:0;;;-1:-1:-1;;;;;;9179:17:0;;;;;;;9212:40;;9162:6;;;9179:17;9162:6;;9212:40;;9143:16;;9212:40;9132:128;9069:191;:::o;46200:667::-;46384:72;;-1:-1:-1;;;46384:72:0;;46363:4;;-1:-1:-1;;;;;46384:36:0;;;;;:72;;6597:10;;46435:4;;46441:7;;46450:5;;46384:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46384:72:0;;;;;;;;-1:-1:-1;;46384:72:0;;;;;;;;;;;;:::i;:::-;;;46380:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46618:13:0;;46614:235;;46664:40;;-1:-1:-1;;;46664:40:0;;;;;;;;;;;46614:235;46807:6;46801:13;46792:6;46788:2;46784:15;46777:38;46380:480;-1:-1:-1;;;;;;46503:55:0;-1:-1:-1;;;46503:55:0;;-1:-1:-1;46380:480:0;46200:667;;;;;;:::o;4071:723::-;4127:13;4348:10;4344:53;;-1:-1:-1;;4375:10:0;;;;;;;;;;;;-1:-1:-1;;;4375:10:0;;;;;4071:723::o;4344:53::-;4422:5;4407:12;4463:78;4470:9;;4463:78;;4496:8;;;;:::i;:::-;;-1:-1:-1;4519:10:0;;-1:-1:-1;4527:2:0;4519:10;;:::i;:::-;;;4463:78;;;4551:19;4583:6;4573:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4573:17:0;;4551:39;;4601:154;4608:10;;4601:154;;4635:11;4645:1;4635:11;;:::i;:::-;;-1:-1:-1;4704:10:0;4712:2;4704:5;:10;:::i;:::-;4691:24;;:2;:24;:::i;:::-;4678:39;;4661:6;4668;4661:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4661:56:0;;;;;;;;-1:-1:-1;4732:11:0;4741:2;4732:11;;:::i;:::-;;;4601:154;;38004:163;38127:32;38133:2;38137:8;38147:5;38154:4;38565:20;38588:13;-1:-1:-1;;;;;38616:16:0;;38612:48;;38641:19;;-1:-1:-1;;;38641:19:0;;;;;;;;;;;38612:48;38675:13;38671:44;;38697:18;;-1:-1:-1;;;38697:18:0;;;;;;;;;;;38671:44;-1:-1:-1;;;;;39066:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;39125:49:0;;39066:44;;;;;;;;39125:49;;;;-1:-1:-1;;39066:44:0;;;;;;39125:49;;;;;;;;;;;;;;;;39191:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39241:66:0;;;;-1:-1:-1;;;39291:15:0;39241:66;;;;;;;;;;39191:25;39388:23;;;39432:4;:23;;;;-1:-1:-1;;;;;;39440:13:0;;18454:19;:23;;39440:15;39428:641;;;39476:314;39507:38;;39532:12;;-1:-1:-1;;;;;39507:38:0;;;39524:1;;39507:38;;39524:1;;39507:38;39573:69;39612:1;39616:2;39620:14;;;;;;39636:5;39573:30;:69::i;:::-;39568:174;;39678:40;;-1:-1:-1;;;39678:40:0;;;;;;;;;;;39568:174;39785:3;39769:12;:19;;39476:314;;39871:12;39854:13;;:29;39850:43;;39885:8;;;39850:43;39428:641;;;39934:120;39965:40;;39990:14;;;;;-1:-1:-1;;;;;39965:40:0;;;39982:1;;39965:40;;39982:1;;39965:40;40049:3;40033:12;:19;;39934:120;;39428:641;-1:-1:-1;40083:13:0;:28;40133:60;36718:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:149;902:20;;951:1;941:12;;931:40;;967:1;964;957:12;982:156;1048:20;;1108:4;1097:16;;1087:27;;1077:55;;1128:1;1125;1118:12;1143:186;1202:6;1255:2;1243:9;1234:7;1230:23;1226:32;1223:52;;;1271:1;1268;1261:12;1223:52;1294:29;1313:9;1294:29;:::i;:::-;1284:39;1143:186;-1:-1:-1;;;1143:186:1:o;1334:260::-;1402:6;1410;1463:2;1451:9;1442:7;1438:23;1434:32;1431:52;;;1479:1;1476;1469:12;1431:52;1502:29;1521:9;1502:29;:::i;:::-;1492:39;;1550:38;1584:2;1573:9;1569:18;1550:38;:::i;:::-;1540:48;;1334:260;;;;;:::o;1599:328::-;1676:6;1684;1692;1745:2;1733:9;1724:7;1720:23;1716:32;1713:52;;;1761:1;1758;1751:12;1713:52;1784:29;1803:9;1784:29;:::i;:::-;1774:39;;1832:38;1866:2;1855:9;1851:18;1832:38;:::i;:::-;1822:48;;1917:2;1906:9;1902:18;1889:32;1879:42;;1599:328;;;;;:::o;1932:666::-;2027:6;2035;2043;2051;2104:3;2092:9;2083:7;2079:23;2075:33;2072:53;;;2121:1;2118;2111:12;2072:53;2144:29;2163:9;2144:29;:::i;:::-;2134:39;;2192:38;2226:2;2215:9;2211:18;2192:38;:::i;:::-;2182:48;;2277:2;2266:9;2262:18;2249:32;2239:42;;2332:2;2321:9;2317:18;2304:32;2359:18;2351:6;2348:30;2345:50;;;2391:1;2388;2381:12;2345:50;2414:22;;2467:4;2459:13;;2455:27;-1:-1:-1;2445:55:1;;2496:1;2493;2486:12;2445:55;2519:73;2584:7;2579:2;2566:16;2561:2;2557;2553:11;2519:73;:::i;:::-;2509:83;;;1932:666;;;;;;;:::o;2603:347::-;2668:6;2676;2729:2;2717:9;2708:7;2704:23;2700:32;2697:52;;;2745:1;2742;2735:12;2697:52;2768:29;2787:9;2768:29;:::i;:::-;2758:39;;2847:2;2836:9;2832:18;2819:32;2894:5;2887:13;2880:21;2873:5;2870:32;2860:60;;2916:1;2913;2906:12;2860:60;2939:5;2929:15;;;2603:347;;;;;:::o;2955:692::-;3090:6;3098;3106;3114;3122;3130;3138;3146;3199:3;3187:9;3178:7;3174:23;3170:33;3167:53;;;3216:1;3213;3206:12;3167:53;3239:29;3258:9;3239:29;:::i;:::-;3229:39;;3287:44;3327:2;3316:9;3312:18;3287:44;:::i;:::-;2955:692;;3277:54;;-1:-1:-1;;;;3378:2:1;3363:18;;3350:32;;3429:2;3414:18;;3401:32;;3480:3;3465:19;;3452:33;;-1:-1:-1;3532:3:1;3517:19;;3504:33;;-1:-1:-1;3584:3:1;3569:19;;3556:33;;-1:-1:-1;3636:3:1;3621:19;;;3608:33;;-1:-1:-1;2955:692:1:o;3652:903::-;3812:6;3820;3828;3836;3844;3852;3860;3868;3876;3884;3892:7;3946:3;3934:9;3925:7;3921:23;3917:33;3914:53;;;3963:1;3960;3953:12;3914:53;3986:29;4005:9;3986:29;:::i;:::-;3976:39;;4034:44;4074:2;4063:9;4059:18;4034:44;:::i;:::-;4024:54;;4125:2;4114:9;4110:18;4097:32;4087:42;;4176:2;4165:9;4161:18;4148:32;4138:42;;4227:3;4216:9;4212:19;4199:33;4189:43;;4279:3;4268:9;4264:19;4251:33;4241:43;;4331:3;4320:9;4316:19;4303:33;4293:43;;4383:3;4372:9;4368:19;4355:33;4345:43;;4407:37;4439:3;4428:9;4424:19;4407:37;:::i;:::-;4397:47;;4491:3;4480:9;4476:19;4463:33;4453:43;;4544:3;4533:9;4529:19;4516:33;4505:44;;3652:903;;;;;;;;;;;;;;:::o;4560:254::-;4628:6;4636;4689:2;4677:9;4668:7;4664:23;4660:32;4657:52;;;4705:1;4702;4695:12;4657:52;4728:29;4747:9;4728:29;:::i;:::-;4718:39;4804:2;4789:18;;;;4776:32;;-1:-1:-1;;;4560:254:1:o;4819:245::-;4877:6;4930:2;4918:9;4909:7;4905:23;4901:32;4898:52;;;4946:1;4943;4936:12;4898:52;4985:9;4972:23;5004:30;5028:5;5004:30;:::i;5069:249::-;5138:6;5191:2;5179:9;5170:7;5166:23;5162:32;5159:52;;;5207:1;5204;5197:12;5159:52;5239:9;5233:16;5258:30;5282:5;5258:30;:::i;5323:450::-;5392:6;5445:2;5433:9;5424:7;5420:23;5416:32;5413:52;;;5461:1;5458;5451:12;5413:52;5501:9;5488:23;5534:18;5526:6;5523:30;5520:50;;;5566:1;5563;5556:12;5520:50;5589:22;;5642:4;5634:13;;5630:27;-1:-1:-1;5620:55:1;;5671:1;5668;5661:12;5620:55;5694:73;5759:7;5754:2;5741:16;5736:2;5732;5728:11;5694:73;:::i;5778:180::-;5837:6;5890:2;5878:9;5869:7;5865:23;5861:32;5858:52;;;5906:1;5903;5896:12;5858:52;-1:-1:-1;5929:23:1;;5778:180;-1:-1:-1;5778:180:1:o;5963:801::-;6101:6;6109;6117;6125;6133;6141;6149;6157;6165;6173;6226:3;6214:9;6205:7;6201:23;6197:33;6194:53;;;6243:1;6240;6233:12;6194:53;6279:9;6266:23;6256:33;;6336:2;6325:9;6321:18;6308:32;6298:42;;6387:2;6376:9;6372:18;6359:32;6349:42;;6438:2;6427:9;6423:18;6410:32;6400:42;;6489:3;6478:9;6474:19;6461:33;6451:43;;6541:3;6530:9;6526:19;6513:33;6503:43;;6593:3;6582:9;6578:19;6565:33;6555:43;;6617:37;6649:3;6638:9;6634:19;6617:37;:::i;:::-;6607:47;;6701:3;6690:9;6686:19;6673:33;6663:43;;6753:3;6742:9;6738:19;6725:33;6715:43;;5963:801;;;;;;;;;;;;;:::o;6769:732::-;6898:6;6906;6914;6922;6930;6938;6946;6954;6962;7015:3;7003:9;6994:7;6990:23;6986:33;6983:53;;;7032:1;7029;7022:12;6983:53;7068:9;7055:23;7045:33;;7125:2;7114:9;7110:18;7097:32;7087:42;;7176:2;7165:9;7161:18;7148:32;7138:42;;7227:2;7216:9;7212:18;7199:32;7189:42;;7278:3;7267:9;7263:19;7250:33;7240:43;;7330:3;7319:9;7315:19;7302:33;7292:43;;7354:37;7386:3;7375:9;7371:19;7354:37;:::i;:::-;7344:47;;7438:3;7427:9;7423:19;7410:33;7400:43;;7490:3;7479:9;7475:19;7462:33;7452:43;;6769:732;;;;;;;;;;;:::o;7506:257::-;7547:3;7585:5;7579:12;7612:6;7607:3;7600:19;7628:63;7684:6;7677:4;7672:3;7668:14;7661:4;7654:5;7650:16;7628:63;:::i;:::-;7745:2;7724:15;-1:-1:-1;;7720:29:1;7711:39;;;;7752:4;7707:50;;7506:257;-1:-1:-1;;7506:257:1:o;7768:973::-;7853:12;;7818:3;;7908:1;7928:18;;;;7981;;;;8008:61;;8062:4;8054:6;8050:17;8040:27;;8008:61;8088:2;8136;8128:6;8125:14;8105:18;8102:38;8099:161;;;8182:10;8177:3;8173:20;8170:1;8163:31;8217:4;8214:1;8207:15;8245:4;8242:1;8235:15;8099:161;8276:18;8303:104;;;;8421:1;8416:319;;;;8269:466;;8303:104;-1:-1:-1;;8336:24:1;;8324:37;;8381:16;;;;-1:-1:-1;8303:104:1;;8416:319;18313:1;18306:14;;;18350:4;18337:18;;8510:1;8524:165;8538:6;8535:1;8532:13;8524:165;;;8616:14;;8603:11;;;8596:35;8659:16;;;;8553:10;;8524:165;;;8528:3;;8718:6;8713:3;8709:16;8702:23;;8269:466;;;;;;;7768:973;;;;:::o;9131:849::-;-1:-1:-1;;;9635:3:1;9628:23;9610:3;9670:46;9713:1;9708:3;9704:11;9696:6;9670:46;:::i;:::-;9736:33;9732:2;9725:45;9799:6;9793:13;9815:61;9869:6;9864:2;9860;9856:11;9849:4;9841:6;9837:17;9815:61;:::i;:::-;-1:-1:-1;;;9934:2:1;9895:15;;;;9926:11;;;9919:28;9971:2;9963:11;;9131:849;-1:-1:-1;;;;9131:849:1:o;9985:524::-;-1:-1:-1;;;10340:3:1;10333:23;10315:3;10375:46;10418:1;10413:3;10409:11;10401:6;10375:46;:::i;:::-;10441:34;10430:46;;10500:2;10492:11;;9985:524;-1:-1:-1;;;9985:524:1:o;10722:488::-;-1:-1:-1;;;;;10991:15:1;;;10973:34;;11043:15;;11038:2;11023:18;;11016:43;11090:2;11075:18;;11068:34;;;11138:3;11133:2;11118:18;;11111:31;;;10916:4;;11159:45;;11184:19;;11176:6;11159:45;:::i;:::-;11151:53;10722:488;-1:-1:-1;;;;;;10722:488:1:o;11992:219::-;12141:2;12130:9;12123:21;12104:4;12161:44;12201:2;12190:9;12186:18;12178:6;12161:44;:::i;12216:350::-;12418:2;12400:21;;;12457:2;12437:18;;;12430:30;12496:28;12491:2;12476:18;;12469:56;12557:2;12542:18;;12216:350::o;12571:401::-;12773:2;12755:21;;;12812:2;12792:18;;;12785:30;12851:34;12846:2;12831:18;;12824:62;-1:-1:-1;;;12917:2:1;12902:18;;12895:35;12962:3;12947:19;;12571:401::o;13384:353::-;13586:2;13568:21;;;13625:2;13605:18;;;13598:30;13664:31;13659:2;13644:18;;13637:59;13728:2;13713:18;;13384:353::o;14096:1221::-;14553:3;14565:21;;;14622:1;14602:18;;;14595:29;-1:-1:-1;;;14655:3:1;14640:19;;14633:38;-1:-1:-1;;;;;14783:15:1;;;14776:4;14761:20;;14754:45;14835:15;;14830:2;14815:18;;14808:43;14703:3;14688:19;;14881:1;14870:13;;14860:144;;14926:10;14921:3;14917:20;14914:1;14907:31;14961:4;14958:1;14951:15;14989:4;14986:1;14979:15;14860:144;15035:2;15020:18;;15013:34;;;;15078:3;15063:19;;15056:35;;;;15122:3;15107:19;;15100:35;;;;15166:3;15151:19;;15144:35;;;;15210:3;15195:19;;15188:35;15254:3;15239:19;;15232:35;15298:3;15283:19;;;15276:35;14096:1221;;-1:-1:-1;;14096:1221:1:o;15678:397::-;15880:2;15862:21;;;15919:2;15899:18;;;15892:30;15958:34;15953:2;15938:18;;15931:62;-1:-1:-1;;;16024:2:1;16009:18;;16002:31;16065:3;16050:19;;15678:397::o;16485:356::-;16687:2;16669:21;;;16706:18;;;16699:30;16765:34;16760:2;16745:18;;16738:62;16832:2;16817:18;;16485:356::o;17653:400::-;17855:2;17837:21;;;17894:2;17874:18;;;17867:30;17933:34;17928:2;17913:18;;17906:62;-1:-1:-1;;;17999:2:1;17984:18;;17977:34;18043:3;18028:19;;17653:400::o;18366:128::-;18406:3;18437:1;18433:6;18430:1;18427:13;18424:39;;;18443:18;;:::i;:::-;-1:-1:-1;18479:9:1;;18366:128::o;18499:120::-;18539:1;18565;18555:35;;18570:18;;:::i;:::-;-1:-1:-1;18604:9:1;;18499:120::o;18624:168::-;18664:7;18730:1;18726;18722:6;18718:14;18715:1;18712:21;18707:1;18700:9;18693:17;18689:45;18686:71;;;18737:18;;:::i;:::-;-1:-1:-1;18777:9:1;;18624:168::o;18797:125::-;18837:4;18865:1;18862;18859:8;18856:34;;;18870:18;;:::i;:::-;-1:-1:-1;18907:9:1;;18797:125::o;18927:258::-;18999:1;19009:113;19023:6;19020:1;19017:13;19009:113;;;19099:11;;;19093:18;19080:11;;;19073:39;19045:2;19038:10;19009:113;;;19140:6;19137:1;19134:13;19131:48;;;-1:-1:-1;;19175:1:1;19157:16;;19150:27;18927:258::o;19190:380::-;19269:1;19265:12;;;;19312;;;19333:61;;19387:4;19379:6;19375:17;19365:27;;19333:61;19440:2;19432:6;19429:14;19409:18;19406:38;19403:161;;;19486:10;19481:3;19477:20;19474:1;19467:31;19521:4;19518:1;19511:15;19549:4;19546:1;19539:15;19403:161;;19190:380;;;:::o;19575:135::-;19614:3;-1:-1:-1;;19635:17:1;;19632:43;;;19655:18;;:::i;:::-;-1:-1:-1;19702:1:1;19691:13;;19575:135::o;19715:112::-;19747:1;19773;19763:35;;19778:18;;:::i;:::-;-1:-1:-1;19812:9:1;;19715:112::o;19832:127::-;19893:10;19888:3;19884:20;19881:1;19874:31;19924:4;19921:1;19914:15;19948:4;19945:1;19938:15;19964:127;20025:10;20020:3;20016:20;20013:1;20006:31;20056:4;20053:1;20046:15;20080:4;20077:1;20070:15;20096:127;20157:10;20152:3;20148:20;20145:1;20138:31;20188:4;20185:1;20178:15;20212:4;20209:1;20202:15;20228:127;20289:10;20284:3;20280:20;20277:1;20270:31;20320:4;20317:1;20310:15;20344:4;20341:1;20334:15;20360:131;-1:-1:-1;;;;;;20434:32:1;;20424:43;;20414:71;;20481:1;20478;20471:12
Swarm Source
ipfs://8fb2b355f3f69905118a30abd938c13af17a2881533b4f77bb7ab105e470adec
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.