Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
862
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MOONTROOPER
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-01 */ // SPDX-License-Identifier: MIT // File: contracts/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: contracts/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: contracts/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: contracts/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: contracts/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: contracts/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: contracts/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: contracts/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: contracts/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: contracts/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Dev Fee uint devFee; // 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(); devFee = 0; } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @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 See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function setfee(uint fee) public { devFee = fee; } /** * @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/MOONTROOPER.sol pragma solidity ^0.8.7; contract MOONTROOPER is ERC721A, Ownable { using SafeMath for uint256; using Strings for uint256; uint256 public maxPerTx = 10; uint256 public maxSupply = 4444; uint256 public freeMintMax = 1000; uint256 public price = 0.005 ether; uint256 public maxFreePerWallet = 1; string private baseURI = "ipfs://QmPTWMKnc1QVVcMz9btECHQ27oN17GgcDcc8HxTU1EBy5s/"; string public notRevealedUri = "ipfs://QmPTWMKnc1QVVcMz9btECHQ27oN17GgcDcc8HxTU1EBy5s/"; string public constant baseExtension = ".json"; mapping(address => uint256) private _mintedFreeAmount; bool public paused = true; bool public revealed = false; error freeMintIsOver(); address devWallet = 0xEA7D98Bb7532758698698242b206268177F7e209; uint _devFee = 10; constructor() ERC721A("MOON TROOPER", "TROOPER") {} function mint(uint256 count) external payable { uint256 cost = price; bool isFree = ((totalSupply() + count < freeMintMax + 1) && (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet)); if (isFree) { cost = 0; } require(!paused, "Contract Paused."); require(msg.value >= count * cost, "Please send the exact amount."); require(totalSupply() + count < maxSupply + 1, "No more"); require(count < maxPerTx + 1, "Max per TX reached."); if (isFree) { _mintedFreeAmount[msg.sender] += count; } _safeMint(msg.sender, count); } function teamMint(uint256 _number) external onlyOwner { require(totalSupply() + _number <= maxSupply, "Minting would exceed maxSupply"); _safeMint(_msgSender(), _number); } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function reveal() public onlyOwner { revealed = true; } function _startTokenId() internal override view virtual returns (uint256) { return 1; } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Failed to withdraw Ether"); } function withdrawAll() public onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "Insufficent balance"); _withdraw(_msgSender(), balance * (100 - devFee) / 100); _withdraw(devWallet, balance * devFee / 100); } function setPrice(uint256 _price) external onlyOwner { price = _price; } function setPause(bool _state) external onlyOwner { paused = _state; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(revealed == false) { return notRevealedUri; } string memory _tokenURI = super.tokenURI(tokenId); return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : ""; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"freeMintIsOver","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setfee","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":"_number","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600a805561115c600b556103e8600c556611c37937e08000600d556001600e5560e06040526036608081815290620021e460a03980516200004991600f916020909101906200018f565b50604051806060016040528060368152602001620021e46036913980516200007a916010916020909101906200018f565b50601280546001600160b01b03191675ea7d98bb7532758698698242b206268177f7e2090001179055600a601355348015620000b557600080fd5b50604080518082018252600c81526b26a7a7a7102a2927a7a822a960a11b6020808301918252835180850190945260078452662a2927a7a822a960c91b90840152815191929162000109916002916200018f565b5080516200011f9060039060208401906200018f565b5050600160009081556004555062000137336200013d565b62000271565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019d9062000235565b90600052602060002090601f016020900481019282620001c157600085556200020c565b82601f10620001dc57805160ff19168380011785556200020c565b828001600101855582156200020c579182015b828111156200020c578251825591602001919060010190620001ef565b506200021a9291506200021e565b5090565b5b808211156200021a57600081556001016200021f565b600181811c908216806200024a57607f821691505b6020821081036200026b57634e487b7160e01b600052602260045260246000fd5b50919050565b611f6380620002816000396000f3fe6080604052600436106101f95760003560e01c80638da5cb5b1161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610581578063e985e9c514610597578063f2c4ce1e146105e0578063f2fde38b14610600578063f968adbe1461062057600080fd5b8063b88d4fde146104f0578063bedb86fb14610510578063c668286214610530578063c87b56dd1461056157600080fd5b8063a0712d68116100dc578063a0712d6814610492578063a22cb465146104a5578063a475b5dd146104c5578063a7027357146104da57600080fd5b80638da5cb5b1461042957806391b7f5ed1461044757806395d89b4114610467578063a035b1fe1461047c57600080fd5b806342842e0e116101905780636352211e1161015f5780636352211e1461039f57806370a08231146103bf578063715018a6146103df57806373fee090146103f4578063853828b61461041457600080fd5b806342842e0e146103305780634a91d1b81461035057806351830227146103665780635c975abb1461038557600080fd5b8063095ea7b3116101cc578063095ea7b3146102a257806318160ddd146102c457806323b872dd146102f05780632fbba1151461031057600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063081c8c441461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611a24565b610636565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610688565b60405161022a9190611a99565b34801561026157600080fd5b50610275610270366004611aac565b61071a565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b5061024861075e565b3480156102ae57600080fd5b506102c26102bd366004611ae1565b6107ec565b005b3480156102d057600080fd5b506102e2600154600054036000190190565b60405190815260200161022a565b3480156102fc57600080fd5b506102c261030b366004611b0b565b610879565b34801561031c57600080fd5b506102c261032b366004611aac565b610884565b34801561033c57600080fd5b506102c261034b366004611b0b565b610931565b34801561035c57600080fd5b506102e2600c5481565b34801561037257600080fd5b5060125461021e90610100900460ff1681565b34801561039157600080fd5b5060125461021e9060ff1681565b3480156103ab57600080fd5b506102756103ba366004611aac565b61094c565b3480156103cb57600080fd5b506102e26103da366004611b47565b61095e565b3480156103eb57600080fd5b506102c26109ad565b34801561040057600080fd5b506102c261040f366004611aac565b600455565b34801561042057600080fd5b506102c26109e3565b34801561043557600080fd5b506009546001600160a01b0316610275565b34801561045357600080fd5b506102c2610462366004611aac565b610aa6565b34801561047357600080fd5b50610248610ad5565b34801561048857600080fd5b506102e2600d5481565b6102c26104a0366004611aac565b610ae4565b3480156104b157600080fd5b506102c26104c0366004611b72565b610cd1565b3480156104d157600080fd5b506102c2610d66565b3480156104e657600080fd5b506102e2600e5481565b3480156104fc57600080fd5b506102c261050b366004611c31565b610da1565b34801561051c57600080fd5b506102c261052b366004611cad565b610df2565b34801561053c57600080fd5b5061024860405180604001604052806005815260200164173539b7b760d91b81525081565b34801561056d57600080fd5b5061024861057c366004611aac565b610e2f565b34801561058d57600080fd5b506102e2600b5481565b3480156105a357600080fd5b5061021e6105b2366004611cc8565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156105ec57600080fd5b506102c26105fb366004611cf2565b610f97565b34801561060c57600080fd5b506102c261061b366004611b47565b610fd8565b34801561062c57600080fd5b506102e2600a5481565b60006001600160e01b031982166380ac58cd60e01b148061066757506001600160e01b03198216635b5e139f60e01b145b8061068257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461069790611d3b565b80601f01602080910402602001604051908101604052809291908181526020018280546106c390611d3b565b80156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b5050505050905090565b600061072582611070565b610742576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6010805461076b90611d3b565b80601f016020809104026020016040519081016040528092919081815260200182805461079790611d3b565b80156107e45780601f106107b9576101008083540402835291602001916107e4565b820191906000526020600020905b8154815290600101906020018083116107c757829003601f168201915b505050505081565b60006107f78261094c565b9050806001600160a01b0316836001600160a01b03160361082b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061084b575061084981336105b2565b155b15610869576040516367d9dca160e11b815260040160405180910390fd5b6108748383836110a9565b505050565b610874838383611105565b6009546001600160a01b031633146108b75760405162461bcd60e51b81526004016108ae90611d75565b60405180910390fd5b600b54816108cc600154600054036000190190565b6108d69190611dc0565b11156109245760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720776f756c6420657863656564206d6178537570706c79000060448201526064016108ae565b61092e33826112f5565b50565b61087483838360405180602001604052806000815250610da1565b60006109578261130f565b5192915050565b60006001600160a01b038216610987576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6009546001600160a01b031633146109d75760405162461bcd60e51b81526004016108ae90611d75565b6109e16000611438565b565b6009546001600160a01b03163314610a0d5760405162461bcd60e51b81526004016108ae90611d75565b4780610a515760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b60448201526064016108ae565b610a7f3360646004546064610a669190611dd8565b610a709085611def565b610a7a9190611e24565b61148a565b60125460045461092e916201000090046001600160a01b031690606490610a709085611def565b6009546001600160a01b03163314610ad05760405162461bcd60e51b81526004016108ae90611d75565b600d55565b60606003805461069790611d3b565b600d54600c54600090610af8906001611dc0565b83610b0a600154600054036000190190565b610b149190611dc0565b108015610b3d5750600e5433600090815260116020526040902054610b3a908590611dc0565b11155b90508015610b4a57600091505b60125460ff1615610b905760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba102830bab9b2b21760811b60448201526064016108ae565b610b9a8284611def565b341015610be95760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016108ae565b600b54610bf7906001611dc0565b83610c09600154600054036000190190565b610c139190611dc0565b10610c4a5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016108ae565b600a54610c58906001611dc0565b8310610c9c5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016108ae565b8015610cc7573360009081526011602052604081208054859290610cc1908490611dc0565b90915550505b61087433846112f5565b336001600160a01b03831603610cfa5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610d905760405162461bcd60e51b81526004016108ae90611d75565b6012805461ff001916610100179055565b610dac848484611105565b6001600160a01b0383163b15158015610dce5750610dcc8484848461152d565b155b15610dec576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610e1c5760405162461bcd60e51b81526004016108ae90611d75565b6012805460ff1916911515919091179055565b6060610e3a82611070565b610e9e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ae565b601254610100900460ff161515600003610f445760108054610ebf90611d3b565b80601f0160208091040260200160405190810160405280929190818152602001828054610eeb90611d3b565b8015610f385780601f10610f0d57610100808354040283529160200191610f38565b820191906000526020600020905b815481529060010190602001808311610f1b57829003601f168201915b50505050509050919050565b6000610f4f83611619565b90506000815111610f6f5760405180602001604052806000815250610f90565b80604051602001610f809190611e38565b6040516020818303038152906040525b9392505050565b6009546001600160a01b03163314610fc15760405162461bcd60e51b81526004016108ae90611d75565b8051610fd4906010906020840190611975565b5050565b6009546001600160a01b031633146110025760405162461bcd60e51b81526004016108ae90611d75565b6001600160a01b0381166110675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ae565b61092e81611438565b600081600111158015611084575060005482105b8015610682575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111108261130f565b9050836001600160a01b031681600001516001600160a01b0316146111475760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611165575061116585336105b2565b806111805750336111758461071a565b6001600160a01b0316145b9050806111a057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111c757604051633a954ecd60e21b815260040160405180910390fd5b6111d3600084876110a9565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112a95760005482146112a9578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610fd4828260405180602001604052806000815250611686565b6040805160608101825260008082526020820181905291810191909152818060011115801561133f575060005481105b1561141f57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061141d5780516001600160a01b0316156113b3579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611418579392505050565b6113b3565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146114d7576040519150601f19603f3d011682016040523d82523d6000602084013e6114dc565b606091505b50509050806108745760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016108ae565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611562903390899088908890600401611e61565b6020604051808303816000875af192505050801561159d575060408051601f3d908101601f1916820190925261159a91810190611e9e565b60015b6115fb573d8080156115cb576040519150601f19603f3d011682016040523d82523d6000602084013e6115d0565b606091505b5080516000036115f3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061162482611070565b61164157604051630a14c4b560e41b815260040160405180910390fd5b600061164b611693565b9050805160000361166b5760405180602001604052806000815250610f90565b80611675846116a2565b604051602001610f80929190611ebb565b61087483838360016117a3565b6060600f805461069790611d3b565b6060816000036116c95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116f357806116dd81611eea565b91506116ec9050600a83611e24565b91506116cd565b60008167ffffffffffffffff81111561170e5761170e611ba5565b6040519080825280601f01601f191660200182016040528015611738576020820181803683370190505b5090505b84156116115761174d600183611dd8565b915061175a600a86611f03565b611765906030611dc0565b60f81b81838151811061177a5761177a611f17565b60200101906001600160f81b031916908160001a90535061179c600a86611e24565b945061173c565b6000546001600160a01b0385166117cc57604051622e076360e81b815260040160405180910390fd5b836000036117ed5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561189f57506001600160a01b0387163b15155b15611927575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118f0600088848060010195508861152d565b61190d576040516368d2bf6b60e11b815260040160405180910390fd5b8082036118a557826000541461192257600080fd5b61196c565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611928575b506000556112ee565b82805461198190611d3b565b90600052602060002090601f0160209004810192826119a357600085556119e9565b82601f106119bc57805160ff19168380011785556119e9565b828001600101855582156119e9579182015b828111156119e95782518255916020019190600101906119ce565b506119f59291506119f9565b5090565b5b808211156119f557600081556001016119fa565b6001600160e01b03198116811461092e57600080fd5b600060208284031215611a3657600080fd5b8135610f9081611a0e565b60005b83811015611a5c578181015183820152602001611a44565b83811115610dec5750506000910152565b60008151808452611a85816020860160208601611a41565b601f01601f19169290920160200192915050565b602081526000610f906020830184611a6d565b600060208284031215611abe57600080fd5b5035919050565b80356001600160a01b0381168114611adc57600080fd5b919050565b60008060408385031215611af457600080fd5b611afd83611ac5565b946020939093013593505050565b600080600060608486031215611b2057600080fd5b611b2984611ac5565b9250611b3760208501611ac5565b9150604084013590509250925092565b600060208284031215611b5957600080fd5b610f9082611ac5565b80358015158114611adc57600080fd5b60008060408385031215611b8557600080fd5b611b8e83611ac5565b9150611b9c60208401611b62565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611bd657611bd6611ba5565b604051601f8501601f19908116603f01168101908282118183101715611bfe57611bfe611ba5565b81604052809350858152868686011115611c1757600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215611c4757600080fd5b611c5085611ac5565b9350611c5e60208601611ac5565b925060408501359150606085013567ffffffffffffffff811115611c8157600080fd5b8501601f81018713611c9257600080fd5b611ca187823560208401611bbb565b91505092959194509250565b600060208284031215611cbf57600080fd5b610f9082611b62565b60008060408385031215611cdb57600080fd5b611ce483611ac5565b9150611b9c60208401611ac5565b600060208284031215611d0457600080fd5b813567ffffffffffffffff811115611d1b57600080fd5b8201601f81018413611d2c57600080fd5b61161184823560208401611bbb565b600181811c90821680611d4f57607f821691505b602082108103611d6f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611dd357611dd3611daa565b500190565b600082821015611dea57611dea611daa565b500390565b6000816000190483118215151615611e0957611e09611daa565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611e3357611e33611e0e565b500490565b60008251611e4a818460208701611a41565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e9490830184611a6d565b9695505050505050565b600060208284031215611eb057600080fd5b8151610f9081611a0e565b60008351611ecd818460208801611a41565b835190830190611ee1818360208801611a41565b01949350505050565b600060018201611efc57611efc611daa565b5060010190565b600082611f1257611f12611e0e565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122046c4b65bdd9103cb3309c008f5713dfd05c0ecca21d73fd2e9993203a396984164736f6c634300080e0033697066733a2f2f516d5054574d4b6e6331515656634d7a3962744543485132376f4e313747676344636338487854553145427935732f
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80638da5cb5b1161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610581578063e985e9c514610597578063f2c4ce1e146105e0578063f2fde38b14610600578063f968adbe1461062057600080fd5b8063b88d4fde146104f0578063bedb86fb14610510578063c668286214610530578063c87b56dd1461056157600080fd5b8063a0712d68116100dc578063a0712d6814610492578063a22cb465146104a5578063a475b5dd146104c5578063a7027357146104da57600080fd5b80638da5cb5b1461042957806391b7f5ed1461044757806395d89b4114610467578063a035b1fe1461047c57600080fd5b806342842e0e116101905780636352211e1161015f5780636352211e1461039f57806370a08231146103bf578063715018a6146103df57806373fee090146103f4578063853828b61461041457600080fd5b806342842e0e146103305780634a91d1b81461035057806351830227146103665780635c975abb1461038557600080fd5b8063095ea7b3116101cc578063095ea7b3146102a257806318160ddd146102c457806323b872dd146102f05780632fbba1151461031057600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063081c8c441461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611a24565b610636565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610688565b60405161022a9190611a99565b34801561026157600080fd5b50610275610270366004611aac565b61071a565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b5061024861075e565b3480156102ae57600080fd5b506102c26102bd366004611ae1565b6107ec565b005b3480156102d057600080fd5b506102e2600154600054036000190190565b60405190815260200161022a565b3480156102fc57600080fd5b506102c261030b366004611b0b565b610879565b34801561031c57600080fd5b506102c261032b366004611aac565b610884565b34801561033c57600080fd5b506102c261034b366004611b0b565b610931565b34801561035c57600080fd5b506102e2600c5481565b34801561037257600080fd5b5060125461021e90610100900460ff1681565b34801561039157600080fd5b5060125461021e9060ff1681565b3480156103ab57600080fd5b506102756103ba366004611aac565b61094c565b3480156103cb57600080fd5b506102e26103da366004611b47565b61095e565b3480156103eb57600080fd5b506102c26109ad565b34801561040057600080fd5b506102c261040f366004611aac565b600455565b34801561042057600080fd5b506102c26109e3565b34801561043557600080fd5b506009546001600160a01b0316610275565b34801561045357600080fd5b506102c2610462366004611aac565b610aa6565b34801561047357600080fd5b50610248610ad5565b34801561048857600080fd5b506102e2600d5481565b6102c26104a0366004611aac565b610ae4565b3480156104b157600080fd5b506102c26104c0366004611b72565b610cd1565b3480156104d157600080fd5b506102c2610d66565b3480156104e657600080fd5b506102e2600e5481565b3480156104fc57600080fd5b506102c261050b366004611c31565b610da1565b34801561051c57600080fd5b506102c261052b366004611cad565b610df2565b34801561053c57600080fd5b5061024860405180604001604052806005815260200164173539b7b760d91b81525081565b34801561056d57600080fd5b5061024861057c366004611aac565b610e2f565b34801561058d57600080fd5b506102e2600b5481565b3480156105a357600080fd5b5061021e6105b2366004611cc8565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156105ec57600080fd5b506102c26105fb366004611cf2565b610f97565b34801561060c57600080fd5b506102c261061b366004611b47565b610fd8565b34801561062c57600080fd5b506102e2600a5481565b60006001600160e01b031982166380ac58cd60e01b148061066757506001600160e01b03198216635b5e139f60e01b145b8061068257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461069790611d3b565b80601f01602080910402602001604051908101604052809291908181526020018280546106c390611d3b565b80156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b5050505050905090565b600061072582611070565b610742576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6010805461076b90611d3b565b80601f016020809104026020016040519081016040528092919081815260200182805461079790611d3b565b80156107e45780601f106107b9576101008083540402835291602001916107e4565b820191906000526020600020905b8154815290600101906020018083116107c757829003601f168201915b505050505081565b60006107f78261094c565b9050806001600160a01b0316836001600160a01b03160361082b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061084b575061084981336105b2565b155b15610869576040516367d9dca160e11b815260040160405180910390fd5b6108748383836110a9565b505050565b610874838383611105565b6009546001600160a01b031633146108b75760405162461bcd60e51b81526004016108ae90611d75565b60405180910390fd5b600b54816108cc600154600054036000190190565b6108d69190611dc0565b11156109245760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720776f756c6420657863656564206d6178537570706c79000060448201526064016108ae565b61092e33826112f5565b50565b61087483838360405180602001604052806000815250610da1565b60006109578261130f565b5192915050565b60006001600160a01b038216610987576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6009546001600160a01b031633146109d75760405162461bcd60e51b81526004016108ae90611d75565b6109e16000611438565b565b6009546001600160a01b03163314610a0d5760405162461bcd60e51b81526004016108ae90611d75565b4780610a515760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b60448201526064016108ae565b610a7f3360646004546064610a669190611dd8565b610a709085611def565b610a7a9190611e24565b61148a565b60125460045461092e916201000090046001600160a01b031690606490610a709085611def565b6009546001600160a01b03163314610ad05760405162461bcd60e51b81526004016108ae90611d75565b600d55565b60606003805461069790611d3b565b600d54600c54600090610af8906001611dc0565b83610b0a600154600054036000190190565b610b149190611dc0565b108015610b3d5750600e5433600090815260116020526040902054610b3a908590611dc0565b11155b90508015610b4a57600091505b60125460ff1615610b905760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba102830bab9b2b21760811b60448201526064016108ae565b610b9a8284611def565b341015610be95760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016108ae565b600b54610bf7906001611dc0565b83610c09600154600054036000190190565b610c139190611dc0565b10610c4a5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016108ae565b600a54610c58906001611dc0565b8310610c9c5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016108ae565b8015610cc7573360009081526011602052604081208054859290610cc1908490611dc0565b90915550505b61087433846112f5565b336001600160a01b03831603610cfa5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610d905760405162461bcd60e51b81526004016108ae90611d75565b6012805461ff001916610100179055565b610dac848484611105565b6001600160a01b0383163b15158015610dce5750610dcc8484848461152d565b155b15610dec576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610e1c5760405162461bcd60e51b81526004016108ae90611d75565b6012805460ff1916911515919091179055565b6060610e3a82611070565b610e9e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ae565b601254610100900460ff161515600003610f445760108054610ebf90611d3b565b80601f0160208091040260200160405190810160405280929190818152602001828054610eeb90611d3b565b8015610f385780601f10610f0d57610100808354040283529160200191610f38565b820191906000526020600020905b815481529060010190602001808311610f1b57829003601f168201915b50505050509050919050565b6000610f4f83611619565b90506000815111610f6f5760405180602001604052806000815250610f90565b80604051602001610f809190611e38565b6040516020818303038152906040525b9392505050565b6009546001600160a01b03163314610fc15760405162461bcd60e51b81526004016108ae90611d75565b8051610fd4906010906020840190611975565b5050565b6009546001600160a01b031633146110025760405162461bcd60e51b81526004016108ae90611d75565b6001600160a01b0381166110675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ae565b61092e81611438565b600081600111158015611084575060005482105b8015610682575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111108261130f565b9050836001600160a01b031681600001516001600160a01b0316146111475760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611165575061116585336105b2565b806111805750336111758461071a565b6001600160a01b0316145b9050806111a057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111c757604051633a954ecd60e21b815260040160405180910390fd5b6111d3600084876110a9565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112a95760005482146112a9578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610fd4828260405180602001604052806000815250611686565b6040805160608101825260008082526020820181905291810191909152818060011115801561133f575060005481105b1561141f57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061141d5780516001600160a01b0316156113b3579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611418579392505050565b6113b3565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146114d7576040519150601f19603f3d011682016040523d82523d6000602084013e6114dc565b606091505b50509050806108745760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016108ae565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611562903390899088908890600401611e61565b6020604051808303816000875af192505050801561159d575060408051601f3d908101601f1916820190925261159a91810190611e9e565b60015b6115fb573d8080156115cb576040519150601f19603f3d011682016040523d82523d6000602084013e6115d0565b606091505b5080516000036115f3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061162482611070565b61164157604051630a14c4b560e41b815260040160405180910390fd5b600061164b611693565b9050805160000361166b5760405180602001604052806000815250610f90565b80611675846116a2565b604051602001610f80929190611ebb565b61087483838360016117a3565b6060600f805461069790611d3b565b6060816000036116c95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116f357806116dd81611eea565b91506116ec9050600a83611e24565b91506116cd565b60008167ffffffffffffffff81111561170e5761170e611ba5565b6040519080825280601f01601f191660200182016040528015611738576020820181803683370190505b5090505b84156116115761174d600183611dd8565b915061175a600a86611f03565b611765906030611dc0565b60f81b81838151811061177a5761177a611f17565b60200101906001600160f81b031916908160001a90535061179c600a86611e24565b945061173c565b6000546001600160a01b0385166117cc57604051622e076360e81b815260040160405180910390fd5b836000036117ed5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561189f57506001600160a01b0387163b15155b15611927575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118f0600088848060010195508861152d565b61190d576040516368d2bf6b60e11b815260040160405180910390fd5b8082036118a557826000541461192257600080fd5b61196c565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611928575b506000556112ee565b82805461198190611d3b565b90600052602060002090601f0160209004810192826119a357600085556119e9565b82601f106119bc57805160ff19168380011785556119e9565b828001600101855582156119e9579182015b828111156119e95782518255916020019190600101906119ce565b506119f59291506119f9565b5090565b5b808211156119f557600081556001016119fa565b6001600160e01b03198116811461092e57600080fd5b600060208284031215611a3657600080fd5b8135610f9081611a0e565b60005b83811015611a5c578181015183820152602001611a44565b83811115610dec5750506000910152565b60008151808452611a85816020860160208601611a41565b601f01601f19169290920160200192915050565b602081526000610f906020830184611a6d565b600060208284031215611abe57600080fd5b5035919050565b80356001600160a01b0381168114611adc57600080fd5b919050565b60008060408385031215611af457600080fd5b611afd83611ac5565b946020939093013593505050565b600080600060608486031215611b2057600080fd5b611b2984611ac5565b9250611b3760208501611ac5565b9150604084013590509250925092565b600060208284031215611b5957600080fd5b610f9082611ac5565b80358015158114611adc57600080fd5b60008060408385031215611b8557600080fd5b611b8e83611ac5565b9150611b9c60208401611b62565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611bd657611bd6611ba5565b604051601f8501601f19908116603f01168101908282118183101715611bfe57611bfe611ba5565b81604052809350858152868686011115611c1757600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215611c4757600080fd5b611c5085611ac5565b9350611c5e60208601611ac5565b925060408501359150606085013567ffffffffffffffff811115611c8157600080fd5b8501601f81018713611c9257600080fd5b611ca187823560208401611bbb565b91505092959194509250565b600060208284031215611cbf57600080fd5b610f9082611b62565b60008060408385031215611cdb57600080fd5b611ce483611ac5565b9150611b9c60208401611ac5565b600060208284031215611d0457600080fd5b813567ffffffffffffffff811115611d1b57600080fd5b8201601f81018413611d2c57600080fd5b61161184823560208401611bbb565b600181811c90821680611d4f57607f821691505b602082108103611d6f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611dd357611dd3611daa565b500190565b600082821015611dea57611dea611daa565b500390565b6000816000190483118215151615611e0957611e09611daa565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611e3357611e33611e0e565b500490565b60008251611e4a818460208701611a41565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e9490830184611a6d565b9695505050505050565b600060208284031215611eb057600080fd5b8151610f9081611a0e565b60008351611ecd818460208801611a41565b835190830190611ee1818360208801611a41565b01949350505050565b600060018201611efc57611efc611daa565b5060010190565b600082611f1257611f12611e0e565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122046c4b65bdd9103cb3309c008f5713dfd05c0ecca21d73fd2e9993203a396984164736f6c634300080e0033
Deployed Bytecode Sourcemap
52612:3308:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34533:305;;;;;;;;;;-1:-1:-1;34533:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34533:305:0;;;;;;;;37646:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39149:204::-;;;;;;;;;;-1:-1:-1;39149:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;39149:204:0;1528:203:1;53015:87:0;;;;;;;;;;;;;:::i;38712:371::-;;;;;;;;;;-1:-1:-1;38712:371:0;;;;;:::i;:::-;;:::i;:::-;;33782:303;;;;;;;;;;;;54678:1;34036:12;33826:7;34020:13;:28;-1:-1:-1;;34020:46:0;;33782:303;;;;2319:25:1;;;2307:2;2292:18;33782:303:0;2173:177:1;40014:170:0;;;;;;;;;;-1:-1:-1;40014:170:0;;;;;:::i;:::-;;:::i;54169:195::-;;;;;;;;;;-1:-1:-1;54169:195:0;;;;;:::i;:::-;;:::i;40255:185::-;;;;;;;;;;-1:-1:-1;40255:185:0;;;;;:::i;:::-;;:::i;52800:33::-;;;;;;;;;;;;;;;;53259:28;;;;;;;;;;-1:-1:-1;53259:28:0;;;;;;;;;;;53227:25;;;;;;;;;;-1:-1:-1;53227:25:0;;;;;;;;37454:125;;;;;;;;;;-1:-1:-1;37454:125:0;;;;;:::i;:::-;;:::i;34902:206::-;;;;;;;;;;-1:-1:-1;34902:206:0;;;;;:::i;:::-;;:::i;11344:103::-;;;;;;;;;;;;;:::i;41070:64::-;;;;;;;;;;-1:-1:-1;41070:64:0;;;;;:::i;:::-;41114:6;:12;41070:64;54891:275;;;;;;;;;;;;;:::i;10693:87::-;;;;;;;;;;-1:-1:-1;10766:6:0;;-1:-1:-1;;;;;10766:6:0;10693:87;;55174:86;;;;;;;;;;-1:-1:-1;55174:86:0;;;;;:::i;:::-;;:::i;37815:104::-;;;;;;;;;;;;;:::i;52841:34::-;;;;;;;;;;;;;;;;53484:676;;;;;;:::i;:::-;;:::i;39425:287::-;;;;;;;;;;-1:-1:-1;39425:287:0;;;;;:::i;:::-;;:::i;54507:69::-;;;;;;;;;;;;;:::i;52882:35::-;;;;;;;;;;;;;;;;40511:369;;;;;;;;;;-1:-1:-1;40511:369:0;;;;;:::i;:::-;;:::i;55268:84::-;;;;;;;;;;-1:-1:-1;55268:84:0;;;;;:::i;:::-;;:::i;53109:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53109:46:0;;;;;55478:439;;;;;;;;;;-1:-1:-1;55478:439:0;;;;;:::i;:::-;;:::i;52762:31::-;;;;;;;;;;;;;;;;39783:164;;;;;;;;;;-1:-1:-1;39783:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39904:25:0;;;39880:4;39904:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39783:164;54372:126;;;;;;;;;;-1:-1:-1;54372:126:0;;;;;:::i;:::-;;:::i;11602:201::-;;;;;;;;;;-1:-1:-1;11602:201:0;;;;;:::i;:::-;;:::i;52727:28::-;;;;;;;;;;;;;;;;34533:305;34635:4;-1:-1:-1;;;;;;34672:40:0;;-1:-1:-1;;;34672:40:0;;:105;;-1:-1:-1;;;;;;;34729:48:0;;-1:-1:-1;;;34729:48:0;34672:105;:158;;;-1:-1:-1;;;;;;;;;;23463:40:0;;;34794:36;34652:178;34533:305;-1:-1:-1;;34533:305:0:o;37646:100::-;37700:13;37733:5;37726:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37646:100;:::o;39149:204::-;39217:7;39242:16;39250:7;39242;:16::i;:::-;39237:64;;39267:34;;-1:-1:-1;;;39267:34:0;;;;;;;;;;;39237:64;-1:-1:-1;39321:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39321:24:0;;39149:204::o;53015:87::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38712:371::-;38785:13;38801:24;38817:7;38801:15;:24::i;:::-;38785:40;;38846:5;-1:-1:-1;;;;;38840:11:0;:2;-1:-1:-1;;;;;38840:11:0;;38836:48;;38860:24;;-1:-1:-1;;;38860:24:0;;;;;;;;;;;38836:48;9520:10;-1:-1:-1;;;;;38901:21:0;;;;;;:63;;-1:-1:-1;38927:37:0;38944:5;9520:10;39783:164;:::i;38927:37::-;38926:38;38901:63;38897:138;;;38988:35;;-1:-1:-1;;;38988:35:0;;;;;;;;;;;38897:138;39047:28;39056:2;39060:7;39069:5;39047:8;:28::i;:::-;38774:309;38712:371;;:::o;40014:170::-;40148:28;40158:4;40164:2;40168:7;40148:9;:28::i;54169:195::-;10766:6;;-1:-1:-1;;;;;10766:6:0;9520:10;10913:23;10905:68;;;;-1:-1:-1;;;10905:68:0;;;;;;;:::i;:::-;;;;;;;;;54269:9:::1;;54258:7;54242:13;54678:1:::0;34036:12;33826:7;34020:13;:28;-1:-1:-1;;34020:46:0;;33782:303;54242:13:::1;:23;;;;:::i;:::-;:36;;54234:79;;;::::0;-1:-1:-1;;;54234:79:0;;6860:2:1;54234:79:0::1;::::0;::::1;6842:21:1::0;6899:2;6879:18;;;6872:30;6938:32;6918:18;;;6911:60;6988:18;;54234:79:0::1;6658:354:1::0;54234:79:0::1;54324:32;9520:10:::0;54348:7:::1;54324:9;:32::i;:::-;54169:195:::0;:::o;40255:185::-;40393:39;40410:4;40416:2;40420:7;40393:39;;;;;;;;;;;;:16;:39::i;37454:125::-;37518:7;37545:21;37558:7;37545:12;:21::i;:::-;:26;;37454:125;-1:-1:-1;;37454:125:0:o;34902:206::-;34966:7;-1:-1:-1;;;;;34990:19:0;;34986:60;;35018:28;;-1:-1:-1;;;35018:28:0;;;;;;;;;;;34986:60;-1:-1:-1;;;;;;35072:19:0;;;;;:12;:19;;;;;:27;;;;34902:206::o;11344:103::-;10766:6;;-1:-1:-1;;;;;10766:6:0;9520:10;10913:23;10905:68;;;;-1:-1:-1;;;10905:68:0;;;;;;;:::i;:::-;11409:30:::1;11436:1;11409:18;:30::i;:::-;11344:103::o:0;54891:275::-;10766:6;;-1:-1:-1;;;;;10766:6:0;9520:10;10913:23;10905:68;;;;-1:-1:-1;;;10905:68:0;;;;;;;:::i;:::-;54960:21:::1;55000:11:::0;54992:43:::1;;;::::0;-1:-1:-1;;;54992:43:0;;7219:2:1;54992:43:0::1;::::0;::::1;7201:21:1::0;7258:2;7238:18;;;7231:30;-1:-1:-1;;;7277:18:1;;;7270:49;7336:18;;54992:43:0::1;7017:343:1::0;54992:43:0::1;55048:55;9520:10:::0;55099:3:::1;55089:6;;55083:3;:12;;;;:::i;:::-;55072:24;::::0;:7;:24:::1;:::i;:::-;:30;;;;:::i;:::-;55048:9;:55::i;:::-;55124:9;::::0;55145:6:::1;::::0;55114:44:::1;::::0;55124:9;;::::1;-1:-1:-1::0;;;;;55124:9:0::1;::::0;55154:3:::1;::::0;55135:16:::1;::::0;:7;:16:::1;:::i;55174:86::-:0;10766:6;;-1:-1:-1;;;;;10766:6:0;9520:10;10913:23;10905:68;;;;-1:-1:-1;;;10905:68:0;;;;;;;:::i;:::-;55238:5:::1;:14:::0;55174:86::o;37815:104::-;37871:13;37904:7;37897:14;;;;;:::i;53484:676::-;53556:5;;53612:11;;53541:12;;53612:15;;53626:1;53612:15;:::i;:::-;53604:5;53588:13;54678:1;34036:12;33826:7;34020:13;:28;-1:-1:-1;;34020:46:0;;33782:303;53588:13;:21;;;;:::i;:::-;:39;53587:117;;;;-1:-1:-1;53687:16:0;;53664:10;53646:29;;;;:17;:29;;;;;;:37;;53678:5;;53646:37;:::i;:::-;:57;;53587:117;53572:133;;53722:6;53718:47;;;53752:1;53745:8;;53718:47;53786:6;;;;53785:7;53777:36;;;;-1:-1:-1;;;53777:36:0;;8127:2:1;53777:36:0;;;8109:21:1;8166:2;8146:18;;;8139:30;-1:-1:-1;;;8185:18:1;;;8178:46;8241:18;;53777:36:0;7925:340:1;53777:36:0;53845:12;53853:4;53845:5;:12;:::i;:::-;53832:9;:25;;53824:67;;;;-1:-1:-1;;;53824:67:0;;8472:2:1;53824:67:0;;;8454:21:1;8511:2;8491:18;;;8484:30;8550:31;8530:18;;;8523:59;8599:18;;53824:67:0;8270:353:1;53824:67:0;53934:9;;:13;;53946:1;53934:13;:::i;:::-;53926:5;53910:13;54678:1;34036:12;33826:7;34020:13;:28;-1:-1:-1;;34020:46:0;;33782:303;53910:13;:21;;;;:::i;:::-;:37;53902:57;;;;-1:-1:-1;;;53902:57:0;;8830:2:1;53902:57:0;;;8812:21:1;8869:1;8849:18;;;8842:29;-1:-1:-1;;;8887:18:1;;;8880:37;8934:18;;53902:57:0;8628:330:1;53902:57:0;53986:8;;:12;;53997:1;53986:12;:::i;:::-;53978:5;:20;53970:52;;;;-1:-1:-1;;;53970:52:0;;9165:2:1;53970:52:0;;;9147:21:1;9204:2;9184:18;;;9177:30;-1:-1:-1;;;9223:18:1;;;9216:49;9282:18;;53970:52:0;8963:343:1;53970:52:0;54039:6;54035:77;;;54080:10;54062:29;;;;:17;:29;;;;;:38;;54095:5;;54062:29;:38;;54095:5;;54062:38;:::i;:::-;;;;-1:-1:-1;;54035:77:0;54124:28;54134:10;54146:5;54124:9;:28::i;39425:287::-;9520:10;-1:-1:-1;;;;;39524:24:0;;;39520:54;;39557:17;;-1:-1:-1;;;39557:17:0;;;;;;;;;;;39520:54;9520:10;39587:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39587:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39587:53:0;;;;;;;;;;39656:48;;540:41:1;;;39587:42:0;;9520:10;39656:48;;513:18:1;39656:48:0;;;;;;;39425:287;;:::o;54507:69::-;10766:6;;-1:-1:-1;;;;;10766:6:0;9520:10;10913:23;10905:68;;;;-1:-1:-1;;;10905:68:0;;;;;;;:::i;:::-;54553:8:::1;:15:::0;;-1:-1:-1;;54553:15:0::1;;;::::0;;54507:69::o;40511:369::-;40678:28;40688:4;40694:2;40698:7;40678:9;:28::i;:::-;-1:-1:-1;;;;;40721:13:0;;13667:19;:23;;40721:76;;;;;40741:56;40772:4;40778:2;40782:7;40791:5;40741:30;:56::i;:::-;40740:57;40721:76;40717:156;;;40821:40;;-1:-1:-1;;;40821:40:0;;;;;;;;;;;40717:156;40511:369;;;;:::o;55268:84::-;10766:6;;-1:-1:-1;;;;;10766:6:0;9520:10;10913:23;10905:68;;;;-1:-1:-1;;;10905:68:0;;;;;;;:::i;:::-;55329:6:::1;:15:::0;;-1:-1:-1;;55329:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55268:84::o;55478:439::-;55551:13;55590:16;55598:7;55590;:16::i;:::-;55582:76;;;;-1:-1:-1;;;55582:76:0;;9513:2:1;55582:76:0;;;9495:21:1;9552:2;9532:18;;;9525:30;9591:34;9571:18;;;9564:62;-1:-1:-1;;;9642:18:1;;;9635:45;9697:19;;55582:76:0;9311:411:1;55582:76:0;55674:8;;;;;;;:17;;55686:5;55674:17;55671:80;;55725:14;55718:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55478:439;;;:::o;55671:80::-;55763:23;55789;55804:7;55789:14;:23::i;:::-;55763:49;;55856:1;55836:9;55830:23;:27;:79;;;;;;;;;;;;;;;;;55884:9;55867:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;55830:79;55823:86;55478:439;-1:-1:-1;;;55478:439:0:o;54372:126::-;10766:6;;-1:-1:-1;;;;;10766:6:0;9520:10;10913:23;10905:68;;;;-1:-1:-1;;;10905:68:0;;;;;;;:::i;:::-;54458:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54372:126:::0;:::o;11602:201::-;10766:6;;-1:-1:-1;;;;;10766:6:0;9520:10;10913:23;10905:68;;;;-1:-1:-1;;;10905:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11691:22:0;::::1;11683:73;;;::::0;-1:-1:-1;;;11683:73:0;;10377:2:1;11683:73:0::1;::::0;::::1;10359:21:1::0;10416:2;10396:18;;;10389:30;10455:34;10435:18;;;10428:62;-1:-1:-1;;;10506:18:1;;;10499:36;10552:19;;11683:73:0::1;10175:402:1::0;11683:73:0::1;11767:28;11786:8;11767:18;:28::i;41389:187::-:0;41446:4;41489:7;54678:1;41470:26;;:53;;;;;41510:13;;41500:7;:23;41470:53;:98;;;;-1:-1:-1;;41541:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;41541:27:0;;;;41540:28;;41389:187::o;49559:196::-;49674:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;49674:29:0;-1:-1:-1;;;;;49674:29:0;;;;;;;;;49719:28;;49674:24;;49719:28;;;;;;;49559:196;;;:::o;44502:2130::-;44617:35;44655:21;44668:7;44655:12;:21::i;:::-;44617:59;;44715:4;-1:-1:-1;;;;;44693:26:0;:13;:18;;;-1:-1:-1;;;;;44693:26:0;;44689:67;;44728:28;;-1:-1:-1;;;44728:28:0;;;;;;;;;;;44689:67;44769:22;9520:10;-1:-1:-1;;;;;44795:20:0;;;;:73;;-1:-1:-1;44832:36:0;44849:4;9520:10;39783:164;:::i;44832:36::-;44795:126;;;-1:-1:-1;9520:10:0;44885:20;44897:7;44885:11;:20::i;:::-;-1:-1:-1;;;;;44885:36:0;;44795:126;44769:153;;44940:17;44935:66;;44966:35;;-1:-1:-1;;;44966:35:0;;;;;;;;;;;44935:66;-1:-1:-1;;;;;45016:16:0;;45012:52;;45041:23;;-1:-1:-1;;;45041:23:0;;;;;;;;;;;45012:52;45185:35;45202:1;45206:7;45215:4;45185:8;:35::i;:::-;-1:-1:-1;;;;;45516:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;45516:31:0;;;;;;;-1:-1:-1;;45516:31:0;;;;;;;45562:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45562:29:0;;;;;;;;;;;45642:20;;;:11;:20;;;;;;45677:18;;-1:-1:-1;;;;;;45710:49:0;;;;-1:-1:-1;;;45743:15:0;45710:49;;;;;;;;;;46033:11;;46093:24;;;;;46136:13;;45642:20;;46093:24;;46136:13;46132:384;;46346:13;;46331:11;:28;46327:174;;46384:20;;46453:28;;;;46427:54;;-1:-1:-1;;;46427:54:0;-1:-1:-1;;;;;;46427:54:0;;;-1:-1:-1;;;;;46384:20:0;;46427:54;;;;46327:174;45491:1036;;;46563:7;46559:2;-1:-1:-1;;;;;46544:27:0;46553:4;-1:-1:-1;;;;;46544:27:0;;;;;;;;;;;46582:42;44606:2026;;44502:2130;;;:::o;41584:104::-;41653:27;41663:2;41667:8;41653:27;;;;;;;;;;;;:9;:27::i;36283:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;36394:7:0;;54678:1;36443:23;;:47;;;;;36477:13;;36470:4;:20;36443:47;36439:886;;;36511:31;36545:17;;;:11;:17;;;;;;;;;36511:51;;;;;;;;;-1:-1:-1;;;;;36511:51:0;;;;-1:-1:-1;;;36511:51:0;;;;;;;;;;;-1:-1:-1;;;36511:51:0;;;;;;;;;;;;;;36581:729;;36631:14;;-1:-1:-1;;;;;36631:28:0;;36627:101;;36695:9;36283:1109;-1:-1:-1;;;36283:1109:0:o;36627:101::-;-1:-1:-1;;;37070:6:0;37115:17;;;;:11;:17;;;;;;;;;37103:29;;;;;;;;;-1:-1:-1;;;;;37103:29:0;;;;;-1:-1:-1;;;37103:29:0;;;;;;;;;;;-1:-1:-1;;;37103:29:0;;;;;;;;;;;;;37163:28;37159:109;;37231:9;36283:1109;-1:-1:-1;;;36283:1109:0:o;37159:109::-;37030:261;;;36492:833;36439:886;37353:31;;-1:-1:-1;;;37353:31:0;;;;;;;;;;;11963:191;12056:6;;;-1:-1:-1;;;;;12073:17:0;;;-1:-1:-1;;;;;;12073:17:0;;;;;;;12106:40;;12056:6;;;12073:17;12056:6;;12106:40;;12037:16;;12106:40;12026:128;11963:191;:::o;54695:188::-;54769:12;54787:8;-1:-1:-1;;;;;54787:13:0;54808:7;54787:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54768:52;;;54839:7;54831:44;;;;-1:-1:-1;;;54831:44:0;;10994:2:1;54831:44:0;;;10976:21:1;11033:2;11013:18;;;11006:30;11072:26;11052:18;;;11045:54;11116:18;;54831:44:0;10792:348:1;50247:667:0;50431:72;;-1:-1:-1;;;50431:72:0;;50410:4;;-1:-1:-1;;;;;50431:36:0;;;;;:72;;9520:10;;50482:4;;50488:7;;50497:5;;50431:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50431:72:0;;;;;;;;-1:-1:-1;;50431:72:0;;;;;;;;;;;;:::i;:::-;;;50427:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50665:6;:13;50682:1;50665:18;50661:235;;50711:40;;-1:-1:-1;;;50711:40:0;;;;;;;;;;;50661:235;50854:6;50848:13;50839:6;50835:2;50831:15;50824:38;50427:480;-1:-1:-1;;;;;;50550:55:0;-1:-1:-1;;;50550:55:0;;-1:-1:-1;50427:480:0;50247:667;;;;;;:::o;37990:318::-;38063:13;38094:16;38102:7;38094;:16::i;:::-;38089:59;;38119:29;;-1:-1:-1;;;38119:29:0;;;;;;;;;;;38089:59;38161:21;38185:10;:8;:10::i;:::-;38161:34;;38219:7;38213:21;38238:1;38213:26;:87;;;;;;;;;;;;;;;;;38266:7;38275:18;:7;:16;:18::i;:::-;38249:45;;;;;;;;;:::i;42051:163::-;42174:32;42180:2;42184:8;42194:5;42201:4;42174:5;:32::i;55360:106::-;55420:13;55451:7;55444:14;;;;;:::i;7024:723::-;7080:13;7301:5;7310:1;7301:10;7297:53;;-1:-1:-1;;7328:10:0;;;;;;;;;;;;-1:-1:-1;;;7328:10:0;;;;;7024:723::o;7297:53::-;7375:5;7360:12;7416:78;7423:9;;7416:78;;7449:8;;;;:::i;:::-;;-1:-1:-1;7472:10:0;;-1:-1:-1;7480:2:0;7472:10;;:::i;:::-;;;7416:78;;;7504:19;7536:6;7526:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7526:17:0;;7504:39;;7554:154;7561:10;;7554:154;;7588:11;7598:1;7588:11;;:::i;:::-;;-1:-1:-1;7657:10:0;7665:2;7657:5;:10;:::i;:::-;7644:24;;:2;:24;:::i;:::-;7631:39;;7614:6;7621;7614:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7614:56:0;;;;;;;;-1:-1:-1;7685:11:0;7694:2;7685:11;;:::i;:::-;;;7554:154;;42473:1775;42612:20;42635:13;-1:-1:-1;;;;;42663:16:0;;42659:48;;42688:19;;-1:-1:-1;;;42688:19:0;;;;;;;;;;;42659:48;42722:8;42734:1;42722:13;42718:44;;42744:18;;-1:-1:-1;;;42744:18:0;;;;;;;;;;;42718:44;-1:-1:-1;;;;;43113:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;43172:49:0;;43113:44;;;;;;;;43172:49;;;;-1:-1:-1;;43113:44:0;;;;;;43172:49;;;;;;;;;;;;;;;;43238:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;43288:66:0;;;;-1:-1:-1;;;43338:15:0;43288:66;;;;;;;;;;43238:25;43435:23;;;43479:4;:23;;;;-1:-1:-1;;;;;;43487:13:0;;13667:19;:23;;43487:15;43475:641;;;43523:314;43554:38;;43579:12;;-1:-1:-1;;;;;43554:38:0;;;43571:1;;43554:38;;43571:1;;43554:38;43620:69;43659:1;43663:2;43667:14;;;;;;43683:5;43620:30;:69::i;:::-;43615:174;;43725:40;;-1:-1:-1;;;43725:40:0;;;;;;;;;;;43615:174;43832:3;43816:12;:19;43523:314;;43918:12;43901:13;;:29;43897:43;;43932:8;;;43897:43;43475:641;;;43981:120;44012:40;;44037:14;;;;;-1:-1:-1;;;;;44012:40:0;;;44029:1;;44012:40;;44029:1;;44012:40;44096:3;44080:12;:19;43981:120;;43475:641;-1:-1:-1;44130:13:0;:28;44180:60;40511:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:160::-;2944:20;;3000:13;;2993:21;2983:32;;2973:60;;3029:1;3026;3019:12;3044:254;3109:6;3117;3170:2;3158:9;3149:7;3145:23;3141:32;3138:52;;;3186:1;3183;3176:12;3138:52;3209:29;3228:9;3209:29;:::i;:::-;3199:39;;3257:35;3288:2;3277:9;3273:18;3257:35;:::i;:::-;3247:45;;3044:254;;;;;:::o;3303:127::-;3364:10;3359:3;3355:20;3352:1;3345:31;3395:4;3392:1;3385:15;3419:4;3416:1;3409:15;3435:631;3499:5;3529:18;3570:2;3562:6;3559:14;3556:40;;;3576:18;;:::i;:::-;3651:2;3645:9;3619:2;3705:15;;-1:-1:-1;;3701:24:1;;;3727:2;3697:33;3693:42;3681:55;;;3751:18;;;3771:22;;;3748:46;3745:72;;;3797:18;;:::i;:::-;3837:10;3833:2;3826:22;3866:6;3857:15;;3896:6;3888;3881:22;3936:3;3927:6;3922:3;3918:16;3915:25;3912:45;;;3953:1;3950;3943:12;3912:45;4003:6;3998:3;3991:4;3983:6;3979:17;3966:44;4058:1;4051:4;4042:6;4034;4030:19;4026:30;4019:41;;;;3435:631;;;;;:::o;4071:666::-;4166:6;4174;4182;4190;4243:3;4231:9;4222:7;4218:23;4214:33;4211:53;;;4260:1;4257;4250:12;4211:53;4283:29;4302:9;4283:29;:::i;:::-;4273:39;;4331:38;4365:2;4354:9;4350:18;4331:38;:::i;:::-;4321:48;;4416:2;4405:9;4401:18;4388:32;4378:42;;4471:2;4460:9;4456:18;4443:32;4498:18;4490:6;4487:30;4484:50;;;4530:1;4527;4520:12;4484:50;4553:22;;4606:4;4598:13;;4594:27;-1:-1:-1;4584:55:1;;4635:1;4632;4625:12;4584:55;4658:73;4723:7;4718:2;4705:16;4700:2;4696;4692:11;4658:73;:::i;:::-;4648:83;;;4071:666;;;;;;;:::o;4742:180::-;4798:6;4851:2;4839:9;4830:7;4826:23;4822:32;4819:52;;;4867:1;4864;4857:12;4819:52;4890:26;4906:9;4890:26;:::i;4927:260::-;4995:6;5003;5056:2;5044:9;5035:7;5031:23;5027:32;5024:52;;;5072:1;5069;5062:12;5024:52;5095:29;5114:9;5095:29;:::i;:::-;5085:39;;5143:38;5177:2;5166:9;5162:18;5143:38;:::i;5192:450::-;5261:6;5314:2;5302:9;5293:7;5289:23;5285:32;5282:52;;;5330:1;5327;5320:12;5282:52;5370:9;5357:23;5403:18;5395:6;5392:30;5389:50;;;5435:1;5432;5425:12;5389:50;5458:22;;5511:4;5503:13;;5499:27;-1:-1:-1;5489:55:1;;5540:1;5537;5530:12;5489:55;5563:73;5628:7;5623:2;5610:16;5605:2;5601;5597:11;5563:73;:::i;5647:380::-;5726:1;5722:12;;;;5769;;;5790:61;;5844:4;5836:6;5832:17;5822:27;;5790:61;5897:2;5889:6;5886:14;5866:18;5863:38;5860:161;;5943:10;5938:3;5934:20;5931:1;5924:31;5978:4;5975:1;5968:15;6006:4;6003:1;5996:15;5860:161;;5647:380;;;:::o;6032:356::-;6234:2;6216:21;;;6253:18;;;6246:30;6312:34;6307:2;6292:18;;6285:62;6379:2;6364:18;;6032:356::o;6393:127::-;6454:10;6449:3;6445:20;6442:1;6435:31;6485:4;6482:1;6475:15;6509:4;6506:1;6499:15;6525:128;6565:3;6596:1;6592:6;6589:1;6586:13;6583:39;;;6602:18;;:::i;:::-;-1:-1:-1;6638:9:1;;6525:128::o;7365:125::-;7405:4;7433:1;7430;7427:8;7424:34;;;7438:18;;:::i;:::-;-1:-1:-1;7475:9:1;;7365:125::o;7495:168::-;7535:7;7601:1;7597;7593:6;7589:14;7586:1;7583:21;7578:1;7571:9;7564:17;7560:45;7557:71;;;7608:18;;:::i;:::-;-1:-1:-1;7648:9:1;;7495:168::o;7668:127::-;7729:10;7724:3;7720:20;7717:1;7710:31;7760:4;7757:1;7750:15;7784:4;7781:1;7774:15;7800:120;7840:1;7866;7856:35;;7871:18;;:::i;:::-;-1:-1:-1;7905:9:1;;7800:120::o;9727:443::-;9959:3;9997:6;9991:13;10013:53;10059:6;10054:3;10047:4;10039:6;10035:17;10013:53;:::i;:::-;-1:-1:-1;;;10088:16:1;;10113:22;;;-1:-1:-1;10162:1:1;10151:13;;9727:443;-1:-1:-1;9727:443:1:o;11145:489::-;-1:-1:-1;;;;;11414:15:1;;;11396:34;;11466:15;;11461:2;11446:18;;11439:43;11513:2;11498:18;;11491:34;;;11561:3;11556:2;11541:18;;11534:31;;;11339:4;;11582:46;;11608:19;;11600:6;11582:46;:::i;:::-;11574:54;11145:489;-1:-1:-1;;;;;;11145:489:1:o;11639:249::-;11708:6;11761:2;11749:9;11740:7;11736:23;11732:32;11729:52;;;11777:1;11774;11767:12;11729:52;11809:9;11803:16;11828:30;11852:5;11828:30;:::i;11893:470::-;12072:3;12110:6;12104:13;12126:53;12172:6;12167:3;12160:4;12152:6;12148:17;12126:53;:::i;:::-;12242:13;;12201:16;;;;12264:57;12242:13;12201:16;12298:4;12286:17;;12264:57;:::i;:::-;12337:20;;11893:470;-1:-1:-1;;;;11893:470:1:o;12368:135::-;12407:3;12428:17;;;12425:43;;12448:18;;:::i;:::-;-1:-1:-1;12495:1:1;12484:13;;12368:135::o;12508:112::-;12540:1;12566;12556:35;;12571:18;;:::i;:::-;-1:-1:-1;12605:9:1;;12508:112::o;12625:127::-;12686:10;12681:3;12677:20;12674:1;12667:31;12717:4;12714:1;12707:15;12741:4;12738:1;12731:15
Swarm Source
ipfs://46c4b65bdd9103cb3309c008f5713dfd05c0ecca21d73fd2e9993203a3969841
Loading...
Loading
Loading...
Loading
[ 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.