Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,666 WZRDS
Holders
743
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 WZRDSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WZRDS_ASS3MBLY
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-13 */ // 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/WZRDS.sol pragma solidity ^0.8.7; contract WZRDS_ASS3MBLY is ERC721A, Ownable { using SafeMath for uint256; using Strings for uint256; uint256 public maxPerTx = 5; uint256 public maxSupply = 1666; uint256 public freeMintMax = 300; uint256 public price = 0.005 ether; uint256 public maxFreePerWallet = 1; string private baseURI = "ipfs://QmU3rfCJDzMTN71qQ7qUK8bDBs3KwGCGtfsAxvtLXdfYVp/"; string public notRevealedUri = "ipfs://QmU3rfCJDzMTN71qQ7qUK8bDBs3KwGCGtfsAxvtLXdfYVp/"; 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 = 5; constructor() ERC721A("WZRDS ASS3MBLY", "WZRDS") {} 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
6005600a55610682600b5561012c600c556611c37937e08000600d556001600e5560e06040526036608081815290620021ef60a03980516200004a91600f9160209091019062000190565b50604051806060016040528060368152602001620021ef6036913980516200007b9160109160209091019062000190565b50601280546001600160b01b03191675ea7d98bb7532758698698242b206268177f7e20900011790556005601355348015620000b657600080fd5b50604080518082018252600e81526d575a52445320415353334d424c5960901b602080830191825283518085019094526005845264575a52445360d81b9084015281519192916200010a9160029162000190565b5080516200012090600390602084019062000190565b5050600160009081556004555062000138336200013e565b62000273565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019e9062000236565b90600052602060002090601f016020900481019282620001c257600085556200020d565b82601f10620001dd57805160ff19168380011785556200020d565b828001600101855582156200020d579182015b828111156200020d578251825591602001919060010190620001f0565b506200021b9291506200021f565b5090565b5b808211156200021b576000815560010162000220565b600181811c908216806200024b57607f821691505b602082108114156200026d57634e487b7160e01b600052602260045260246000fd5b50919050565b611f6c80620002836000396000f3fe6080604052600436106101f95760003560e01c80638da5cb5b1161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610581578063e985e9c514610597578063f2c4ce1e146105e0578063f2fde38b14610600578063f968adbe1461062057600080fd5b8063b88d4fde146104f0578063bedb86fb14610510578063c668286214610530578063c87b56dd1461056157600080fd5b8063a0712d68116100dc578063a0712d6814610492578063a22cb465146104a5578063a475b5dd146104c5578063a7027357146104da57600080fd5b80638da5cb5b1461042957806391b7f5ed1461044757806395d89b4114610467578063a035b1fe1461047c57600080fd5b806342842e0e116101905780636352211e1161015f5780636352211e1461039f57806370a08231146103bf578063715018a6146103df57806373fee090146103f4578063853828b61461041457600080fd5b806342842e0e146103305780634a91d1b81461035057806351830227146103665780635c975abb1461038557600080fd5b8063095ea7b3116101cc578063095ea7b3146102a257806318160ddd146102c457806323b872dd146102f05780632fbba1151461031057600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063081c8c441461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611c2b565b610636565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610688565b60405161022a9190611d88565b34801561026157600080fd5b50610275610270366004611cae565b61071a565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b5061024861075e565b3480156102ae57600080fd5b506102c26102bd366004611be6565b6107ec565b005b3480156102d057600080fd5b506102e2600154600054036000190190565b60405190815260200161022a565b3480156102fc57600080fd5b506102c261030b366004611b04565b61087a565b34801561031c57600080fd5b506102c261032b366004611cae565b610885565b34801561033c57600080fd5b506102c261034b366004611b04565b610932565b34801561035c57600080fd5b506102e2600c5481565b34801561037257600080fd5b5060125461021e90610100900460ff1681565b34801561039157600080fd5b5060125461021e9060ff1681565b3480156103ab57600080fd5b506102756103ba366004611cae565b61094d565b3480156103cb57600080fd5b506102e26103da366004611ab6565b61095f565b3480156103eb57600080fd5b506102c26109ae565b34801561040057600080fd5b506102c261040f366004611cae565b600455565b34801561042057600080fd5b506102c26109e4565b34801561043557600080fd5b506009546001600160a01b0316610275565b34801561045357600080fd5b506102c2610462366004611cae565b610aa7565b34801561047357600080fd5b50610248610ad6565b34801561048857600080fd5b506102e2600d5481565b6102c26104a0366004611cae565b610ae5565b3480156104b157600080fd5b506102c26104c0366004611bbc565b610cd2565b3480156104d157600080fd5b506102c2610d68565b3480156104e657600080fd5b506102e2600e5481565b3480156104fc57600080fd5b506102c261050b366004611b40565b610da3565b34801561051c57600080fd5b506102c261052b366004611c10565b610df4565b34801561053c57600080fd5b5061024860405180604001604052806005815260200164173539b7b760d91b81525081565b34801561056d57600080fd5b5061024861057c366004611cae565b610e31565b34801561058d57600080fd5b506102e2600b5481565b3480156105a357600080fd5b5061021e6105b2366004611ad1565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156105ec57600080fd5b506102c26105fb366004611c65565b610f94565b34801561060c57600080fd5b506102c261061b366004611ab6565b610fd5565b34801561062c57600080fd5b506102e2600a5481565b60006001600160e01b031982166380ac58cd60e01b148061066757506001600160e01b03198216635b5e139f60e01b145b8061068257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461069790611e5e565b80601f01602080910402602001604051908101604052809291908181526020018280546106c390611e5e565b80156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b5050505050905090565b60006107258261106d565b610742576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6010805461076b90611e5e565b80601f016020809104026020016040519081016040528092919081815260200182805461079790611e5e565b80156107e45780601f106107b9576101008083540402835291602001916107e4565b820191906000526020600020905b8154815290600101906020018083116107c757829003601f168201915b505050505081565b60006107f78261094d565b9050806001600160a01b0316836001600160a01b0316141561082c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061084c575061084a81336105b2565b155b1561086a576040516367d9dca160e11b815260040160405180910390fd5b6108758383836110a6565b505050565b610875838383611102565b6009546001600160a01b031633146108b85760405162461bcd60e51b81526004016108af90611d9b565b60405180910390fd5b600b54816108cd600154600054036000190190565b6108d79190611dd0565b11156109255760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720776f756c6420657863656564206d6178537570706c79000060448201526064016108af565b61092f33826112f2565b50565b61087583838360405180602001604052806000815250610da3565b60006109588261130c565b5192915050565b60006001600160a01b038216610988576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6009546001600160a01b031633146109d85760405162461bcd60e51b81526004016108af90611d9b565b6109e26000611435565b565b6009546001600160a01b03163314610a0e5760405162461bcd60e51b81526004016108af90611d9b565b4780610a525760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b60448201526064016108af565b610a803360646004546064610a679190611e1b565b610a719085611dfc565b610a7b9190611de8565b611487565b60125460045461092f916201000090046001600160a01b031690606490610a719085611dfc565b6009546001600160a01b03163314610ad15760405162461bcd60e51b81526004016108af90611d9b565b600d55565b60606003805461069790611e5e565b600d54600c54600090610af9906001611dd0565b83610b0b600154600054036000190190565b610b159190611dd0565b108015610b3e5750600e5433600090815260116020526040902054610b3b908590611dd0565b11155b90508015610b4b57600091505b60125460ff1615610b915760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba102830bab9b2b21760811b60448201526064016108af565b610b9b8284611dfc565b341015610bea5760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016108af565b600b54610bf8906001611dd0565b83610c0a600154600054036000190190565b610c149190611dd0565b10610c4b5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016108af565b600a54610c59906001611dd0565b8310610c9d5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016108af565b8015610cc8573360009081526011602052604081208054859290610cc2908490611dd0565b90915550505b61087533846112f2565b6001600160a01b038216331415610cfc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610d925760405162461bcd60e51b81526004016108af90611d9b565b6012805461ff001916610100179055565b610dae848484611102565b6001600160a01b0383163b15158015610dd05750610dce8484848461152a565b155b15610dee576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610e1e5760405162461bcd60e51b81526004016108af90611d9b565b6012805460ff1916911515919091179055565b6060610e3c8261106d565b610ea05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108af565b601254610100900460ff16610f415760108054610ebc90611e5e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee890611e5e565b8015610f355780601f10610f0a57610100808354040283529160200191610f35565b820191906000526020600020905b815481529060010190602001808311610f1857829003601f168201915b50505050509050919050565b6000610f4c83611622565b90506000815111610f6c5760405180602001604052806000815250610f8d565b80604051602001610f7d9190611d22565b6040516020818303038152906040525b9392505050565b6009546001600160a01b03163314610fbe5760405162461bcd60e51b81526004016108af90611d9b565b8051610fd190601090602084019061197b565b5050565b6009546001600160a01b03163314610fff5760405162461bcd60e51b81526004016108af90611d9b565b6001600160a01b0381166110645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108af565b61092f81611435565b600081600111158015611081575060005482105b8015610682575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061110d8261130c565b9050836001600160a01b031681600001516001600160a01b0316146111445760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611162575061116285336105b2565b8061117d5750336111728461071a565b6001600160a01b0316145b90508061119d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111c457604051633a954ecd60e21b815260040160405180910390fd5b6111d0600084876110a6565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112a65760005482146112a6578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610fd1828260405180602001604052806000815250611690565b6040805160608101825260008082526020820181905291810191909152818060011115801561133c575060005481105b1561141c57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061141a5780516001600160a01b0316156113b0579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611415579392505050565b6113b0565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146114d4576040519150601f19603f3d011682016040523d82523d6000602084013e6114d9565b606091505b50509050806108755760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016108af565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061155f903390899088908890600401611d4b565b602060405180830381600087803b15801561157957600080fd5b505af19250505080156115a9575060408051601f3d908101601f191682019092526115a691810190611c48565b60015b611604573d8080156115d7576040519150601f19603f3d011682016040523d82523d6000602084013e6115dc565b606091505b5080516115fc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061162d8261106d565b61164a57604051630a14c4b560e41b815260040160405180910390fd5b600061165461169d565b90508051600014156116755760405180602001604052806000815250610f8d565b8061167f846116ac565b604051602001610f7d929190611cf3565b61087583838360016117aa565b6060600f805461069790611e5e565b6060816116d05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116fa57806116e481611e99565b91506116f39050600a83611de8565b91506116d4565b60008167ffffffffffffffff81111561171557611715611f0a565b6040519080825280601f01601f19166020018201604052801561173f576020820181803683370190505b5090505b841561161a57611754600183611e1b565b9150611761600a86611eb4565b61176c906030611dd0565b60f81b81838151811061178157611781611ef4565b60200101906001600160f81b031916908160001a9053506117a3600a86611de8565b9450611743565b6000546001600160a01b0385166117d357604051622e076360e81b815260040160405180910390fd5b836117f15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156118a357506001600160a01b0387163b15155b1561192c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118f4600088848060010195508861152a565b611911576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118a957826000541461192757600080fd5b611972565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561192d575b506000556112eb565b82805461198790611e5e565b90600052602060002090601f0160209004810192826119a957600085556119ef565b82601f106119c257805160ff19168380011785556119ef565b828001600101855582156119ef579182015b828111156119ef5782518255916020019190600101906119d4565b506119fb9291506119ff565b5090565b5b808211156119fb5760008155600101611a00565b600067ffffffffffffffff80841115611a2f57611a2f611f0a565b604051601f8501601f19908116603f01168101908282118183101715611a5757611a57611f0a565b81604052809350858152868686011115611a7057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611aa157600080fd5b919050565b80358015158114611aa157600080fd5b600060208284031215611ac857600080fd5b610f8d82611a8a565b60008060408385031215611ae457600080fd5b611aed83611a8a565b9150611afb60208401611a8a565b90509250929050565b600080600060608486031215611b1957600080fd5b611b2284611a8a565b9250611b3060208501611a8a565b9150604084013590509250925092565b60008060008060808587031215611b5657600080fd5b611b5f85611a8a565b9350611b6d60208601611a8a565b925060408501359150606085013567ffffffffffffffff811115611b9057600080fd5b8501601f81018713611ba157600080fd5b611bb087823560208401611a14565b91505092959194509250565b60008060408385031215611bcf57600080fd5b611bd883611a8a565b9150611afb60208401611aa6565b60008060408385031215611bf957600080fd5b611c0283611a8a565b946020939093013593505050565b600060208284031215611c2257600080fd5b610f8d82611aa6565b600060208284031215611c3d57600080fd5b8135610f8d81611f20565b600060208284031215611c5a57600080fd5b8151610f8d81611f20565b600060208284031215611c7757600080fd5b813567ffffffffffffffff811115611c8e57600080fd5b8201601f81018413611c9f57600080fd5b61161a84823560208401611a14565b600060208284031215611cc057600080fd5b5035919050565b60008151808452611cdf816020860160208601611e32565b601f01601f19169290920160200192915050565b60008351611d05818460208801611e32565b835190830190611d19818360208801611e32565b01949350505050565b60008251611d34818460208701611e32565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d7e90830184611cc7565b9695505050505050565b602081526000610f8d6020830184611cc7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611de357611de3611ec8565b500190565b600082611df757611df7611ede565b500490565b6000816000190483118215151615611e1657611e16611ec8565b500290565b600082821015611e2d57611e2d611ec8565b500390565b60005b83811015611e4d578181015183820152602001611e35565b83811115610dee5750506000910152565b600181811c90821680611e7257607f821691505b60208210811415611e9357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ead57611ead611ec8565b5060010190565b600082611ec357611ec3611ede565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461092f57600080fdfea26469706673582212208be76b244d5ad6e7227d51f8df531207fa67d09cc70fd123e57f7f85d8cf342764736f6c63430008070033697066733a2f2f516d55337266434a447a4d544e373171513771554b3862444273334b77474347746673417876744c5864665956702f
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80638da5cb5b1161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610581578063e985e9c514610597578063f2c4ce1e146105e0578063f2fde38b14610600578063f968adbe1461062057600080fd5b8063b88d4fde146104f0578063bedb86fb14610510578063c668286214610530578063c87b56dd1461056157600080fd5b8063a0712d68116100dc578063a0712d6814610492578063a22cb465146104a5578063a475b5dd146104c5578063a7027357146104da57600080fd5b80638da5cb5b1461042957806391b7f5ed1461044757806395d89b4114610467578063a035b1fe1461047c57600080fd5b806342842e0e116101905780636352211e1161015f5780636352211e1461039f57806370a08231146103bf578063715018a6146103df57806373fee090146103f4578063853828b61461041457600080fd5b806342842e0e146103305780634a91d1b81461035057806351830227146103665780635c975abb1461038557600080fd5b8063095ea7b3116101cc578063095ea7b3146102a257806318160ddd146102c457806323b872dd146102f05780632fbba1151461031057600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063081c8c441461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611c2b565b610636565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610688565b60405161022a9190611d88565b34801561026157600080fd5b50610275610270366004611cae565b61071a565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b5061024861075e565b3480156102ae57600080fd5b506102c26102bd366004611be6565b6107ec565b005b3480156102d057600080fd5b506102e2600154600054036000190190565b60405190815260200161022a565b3480156102fc57600080fd5b506102c261030b366004611b04565b61087a565b34801561031c57600080fd5b506102c261032b366004611cae565b610885565b34801561033c57600080fd5b506102c261034b366004611b04565b610932565b34801561035c57600080fd5b506102e2600c5481565b34801561037257600080fd5b5060125461021e90610100900460ff1681565b34801561039157600080fd5b5060125461021e9060ff1681565b3480156103ab57600080fd5b506102756103ba366004611cae565b61094d565b3480156103cb57600080fd5b506102e26103da366004611ab6565b61095f565b3480156103eb57600080fd5b506102c26109ae565b34801561040057600080fd5b506102c261040f366004611cae565b600455565b34801561042057600080fd5b506102c26109e4565b34801561043557600080fd5b506009546001600160a01b0316610275565b34801561045357600080fd5b506102c2610462366004611cae565b610aa7565b34801561047357600080fd5b50610248610ad6565b34801561048857600080fd5b506102e2600d5481565b6102c26104a0366004611cae565b610ae5565b3480156104b157600080fd5b506102c26104c0366004611bbc565b610cd2565b3480156104d157600080fd5b506102c2610d68565b3480156104e657600080fd5b506102e2600e5481565b3480156104fc57600080fd5b506102c261050b366004611b40565b610da3565b34801561051c57600080fd5b506102c261052b366004611c10565b610df4565b34801561053c57600080fd5b5061024860405180604001604052806005815260200164173539b7b760d91b81525081565b34801561056d57600080fd5b5061024861057c366004611cae565b610e31565b34801561058d57600080fd5b506102e2600b5481565b3480156105a357600080fd5b5061021e6105b2366004611ad1565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156105ec57600080fd5b506102c26105fb366004611c65565b610f94565b34801561060c57600080fd5b506102c261061b366004611ab6565b610fd5565b34801561062c57600080fd5b506102e2600a5481565b60006001600160e01b031982166380ac58cd60e01b148061066757506001600160e01b03198216635b5e139f60e01b145b8061068257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461069790611e5e565b80601f01602080910402602001604051908101604052809291908181526020018280546106c390611e5e565b80156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b5050505050905090565b60006107258261106d565b610742576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6010805461076b90611e5e565b80601f016020809104026020016040519081016040528092919081815260200182805461079790611e5e565b80156107e45780601f106107b9576101008083540402835291602001916107e4565b820191906000526020600020905b8154815290600101906020018083116107c757829003601f168201915b505050505081565b60006107f78261094d565b9050806001600160a01b0316836001600160a01b0316141561082c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061084c575061084a81336105b2565b155b1561086a576040516367d9dca160e11b815260040160405180910390fd5b6108758383836110a6565b505050565b610875838383611102565b6009546001600160a01b031633146108b85760405162461bcd60e51b81526004016108af90611d9b565b60405180910390fd5b600b54816108cd600154600054036000190190565b6108d79190611dd0565b11156109255760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e6720776f756c6420657863656564206d6178537570706c79000060448201526064016108af565b61092f33826112f2565b50565b61087583838360405180602001604052806000815250610da3565b60006109588261130c565b5192915050565b60006001600160a01b038216610988576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6009546001600160a01b031633146109d85760405162461bcd60e51b81526004016108af90611d9b565b6109e26000611435565b565b6009546001600160a01b03163314610a0e5760405162461bcd60e51b81526004016108af90611d9b565b4780610a525760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b60448201526064016108af565b610a803360646004546064610a679190611e1b565b610a719085611dfc565b610a7b9190611de8565b611487565b60125460045461092f916201000090046001600160a01b031690606490610a719085611dfc565b6009546001600160a01b03163314610ad15760405162461bcd60e51b81526004016108af90611d9b565b600d55565b60606003805461069790611e5e565b600d54600c54600090610af9906001611dd0565b83610b0b600154600054036000190190565b610b159190611dd0565b108015610b3e5750600e5433600090815260116020526040902054610b3b908590611dd0565b11155b90508015610b4b57600091505b60125460ff1615610b915760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba102830bab9b2b21760811b60448201526064016108af565b610b9b8284611dfc565b341015610bea5760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016108af565b600b54610bf8906001611dd0565b83610c0a600154600054036000190190565b610c149190611dd0565b10610c4b5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016108af565b600a54610c59906001611dd0565b8310610c9d5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016108af565b8015610cc8573360009081526011602052604081208054859290610cc2908490611dd0565b90915550505b61087533846112f2565b6001600160a01b038216331415610cfc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b03163314610d925760405162461bcd60e51b81526004016108af90611d9b565b6012805461ff001916610100179055565b610dae848484611102565b6001600160a01b0383163b15158015610dd05750610dce8484848461152a565b155b15610dee576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b03163314610e1e5760405162461bcd60e51b81526004016108af90611d9b565b6012805460ff1916911515919091179055565b6060610e3c8261106d565b610ea05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108af565b601254610100900460ff16610f415760108054610ebc90611e5e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee890611e5e565b8015610f355780601f10610f0a57610100808354040283529160200191610f35565b820191906000526020600020905b815481529060010190602001808311610f1857829003601f168201915b50505050509050919050565b6000610f4c83611622565b90506000815111610f6c5760405180602001604052806000815250610f8d565b80604051602001610f7d9190611d22565b6040516020818303038152906040525b9392505050565b6009546001600160a01b03163314610fbe5760405162461bcd60e51b81526004016108af90611d9b565b8051610fd190601090602084019061197b565b5050565b6009546001600160a01b03163314610fff5760405162461bcd60e51b81526004016108af90611d9b565b6001600160a01b0381166110645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108af565b61092f81611435565b600081600111158015611081575060005482105b8015610682575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061110d8261130c565b9050836001600160a01b031681600001516001600160a01b0316146111445760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611162575061116285336105b2565b8061117d5750336111728461071a565b6001600160a01b0316145b90508061119d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111c457604051633a954ecd60e21b815260040160405180910390fd5b6111d0600084876110a6565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112a65760005482146112a6578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610fd1828260405180602001604052806000815250611690565b6040805160608101825260008082526020820181905291810191909152818060011115801561133c575060005481105b1561141c57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061141a5780516001600160a01b0316156113b0579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611415579392505050565b6113b0565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146114d4576040519150601f19603f3d011682016040523d82523d6000602084013e6114d9565b606091505b50509050806108755760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016108af565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061155f903390899088908890600401611d4b565b602060405180830381600087803b15801561157957600080fd5b505af19250505080156115a9575060408051601f3d908101601f191682019092526115a691810190611c48565b60015b611604573d8080156115d7576040519150601f19603f3d011682016040523d82523d6000602084013e6115dc565b606091505b5080516115fc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061162d8261106d565b61164a57604051630a14c4b560e41b815260040160405180910390fd5b600061165461169d565b90508051600014156116755760405180602001604052806000815250610f8d565b8061167f846116ac565b604051602001610f7d929190611cf3565b61087583838360016117aa565b6060600f805461069790611e5e565b6060816116d05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116fa57806116e481611e99565b91506116f39050600a83611de8565b91506116d4565b60008167ffffffffffffffff81111561171557611715611f0a565b6040519080825280601f01601f19166020018201604052801561173f576020820181803683370190505b5090505b841561161a57611754600183611e1b565b9150611761600a86611eb4565b61176c906030611dd0565b60f81b81838151811061178157611781611ef4565b60200101906001600160f81b031916908160001a9053506117a3600a86611de8565b9450611743565b6000546001600160a01b0385166117d357604051622e076360e81b815260040160405180910390fd5b836117f15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156118a357506001600160a01b0387163b15155b1561192c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118f4600088848060010195508861152a565b611911576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118a957826000541461192757600080fd5b611972565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561192d575b506000556112eb565b82805461198790611e5e565b90600052602060002090601f0160209004810192826119a957600085556119ef565b82601f106119c257805160ff19168380011785556119ef565b828001600101855582156119ef579182015b828111156119ef5782518255916020019190600101906119d4565b506119fb9291506119ff565b5090565b5b808211156119fb5760008155600101611a00565b600067ffffffffffffffff80841115611a2f57611a2f611f0a565b604051601f8501601f19908116603f01168101908282118183101715611a5757611a57611f0a565b81604052809350858152868686011115611a7057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611aa157600080fd5b919050565b80358015158114611aa157600080fd5b600060208284031215611ac857600080fd5b610f8d82611a8a565b60008060408385031215611ae457600080fd5b611aed83611a8a565b9150611afb60208401611a8a565b90509250929050565b600080600060608486031215611b1957600080fd5b611b2284611a8a565b9250611b3060208501611a8a565b9150604084013590509250925092565b60008060008060808587031215611b5657600080fd5b611b5f85611a8a565b9350611b6d60208601611a8a565b925060408501359150606085013567ffffffffffffffff811115611b9057600080fd5b8501601f81018713611ba157600080fd5b611bb087823560208401611a14565b91505092959194509250565b60008060408385031215611bcf57600080fd5b611bd883611a8a565b9150611afb60208401611aa6565b60008060408385031215611bf957600080fd5b611c0283611a8a565b946020939093013593505050565b600060208284031215611c2257600080fd5b610f8d82611aa6565b600060208284031215611c3d57600080fd5b8135610f8d81611f20565b600060208284031215611c5a57600080fd5b8151610f8d81611f20565b600060208284031215611c7757600080fd5b813567ffffffffffffffff811115611c8e57600080fd5b8201601f81018413611c9f57600080fd5b61161a84823560208401611a14565b600060208284031215611cc057600080fd5b5035919050565b60008151808452611cdf816020860160208601611e32565b601f01601f19169290920160200192915050565b60008351611d05818460208801611e32565b835190830190611d19818360208801611e32565b01949350505050565b60008251611d34818460208701611e32565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d7e90830184611cc7565b9695505050505050565b602081526000610f8d6020830184611cc7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611de357611de3611ec8565b500190565b600082611df757611df7611ede565b500490565b6000816000190483118215151615611e1657611e16611ec8565b500290565b600082821015611e2d57611e2d611ec8565b500390565b60005b83811015611e4d578181015183820152602001611e35565b83811115610dee5750506000910152565b600181811c90821680611e7257607f821691505b60208210811415611e9357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ead57611ead611ec8565b5060010190565b600082611ec357611ec3611ede565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461092f57600080fdfea26469706673582212208be76b244d5ad6e7227d51f8df531207fa67d09cc70fd123e57f7f85d8cf342764736f6c63430008070033
Deployed Bytecode Sourcemap
54321:3308:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36248:305;;;;;;;;;;-1:-1:-1;36248:305:0;;;;;:::i;:::-;;:::i;:::-;;;6561:14:1;;6554:22;6536:41;;6524:2;6509:18;36248:305:0;;;;;;;;39361:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40864:204::-;;;;;;;;;;-1:-1:-1;40864:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5859:32:1;;;5841:51;;5829:2;5814:18;40864:204:0;5695:203:1;54725:87:0;;;;;;;;;;;;;:::i;40427:371::-;;;;;;;;;;-1:-1:-1;40427:371:0;;;;;:::i;:::-;;:::i;:::-;;35497:303;;;;;;;;;;;;56387:1;35751:12;35541:7;35735:13;:28;-1:-1:-1;;35735:46:0;;35497:303;;;;10588:25:1;;;10576:2;10561:18;35497:303:0;10442:177:1;41729:170:0;;;;;;;;;;-1:-1:-1;41729:170:0;;;;;:::i;:::-;;:::i;55878:195::-;;;;;;;;;;-1:-1:-1;55878:195:0;;;;;:::i;:::-;;:::i;41970:185::-;;;;;;;;;;-1:-1:-1;41970:185:0;;;;;:::i;:::-;;:::i;54511:32::-;;;;;;;;;;;;;;;;54969:28;;;;;;;;;;-1:-1:-1;54969:28:0;;;;;;;;;;;54937:25;;;;;;;;;;-1:-1:-1;54937:25:0;;;;;;;;39169:125;;;;;;;;;;-1:-1:-1;39169:125:0;;;;;:::i;:::-;;:::i;36617:206::-;;;;;;;;;;-1:-1:-1;36617:206:0;;;;;:::i;:::-;;:::i;13059:103::-;;;;;;;;;;;;;:::i;42785:64::-;;;;;;;;;;-1:-1:-1;42785:64:0;;;;;:::i;:::-;42829:6;:12;42785:64;56600:275;;;;;;;;;;;;;:::i;12408:87::-;;;;;;;;;;-1:-1:-1;12481:6:0;;-1:-1:-1;;;;;12481:6:0;12408:87;;56883:86;;;;;;;;;;-1:-1:-1;56883:86:0;;;;;:::i;:::-;;:::i;39530:104::-;;;;;;;;;;;;;:::i;54551:34::-;;;;;;;;;;;;;;;;55193:676;;;;;;:::i;:::-;;:::i;41140:287::-;;;;;;;;;;-1:-1:-1;41140:287:0;;;;;:::i;:::-;;:::i;56216:69::-;;;;;;;;;;;;;:::i;54592:35::-;;;;;;;;;;;;;;;;42226:369;;;;;;;;;;-1:-1:-1;42226:369:0;;;;;:::i;:::-;;:::i;56977:84::-;;;;;;;;;;-1:-1:-1;56977:84:0;;;;;:::i;:::-;;:::i;54819:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;54819:46:0;;;;;57187:439;;;;;;;;;;-1:-1:-1;57187:439:0;;;;;:::i;:::-;;:::i;54473:31::-;;;;;;;;;;;;;;;;41498:164;;;;;;;;;;-1:-1:-1;41498:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41619:25:0;;;41595:4;41619:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41498:164;56081:126;;;;;;;;;;-1:-1:-1;56081:126:0;;;;;:::i;:::-;;:::i;13317:201::-;;;;;;;;;;-1:-1:-1;13317:201:0;;;;;:::i;:::-;;:::i;54439:27::-;;;;;;;;;;;;;;;;36248:305;36350:4;-1:-1:-1;;;;;;36387:40:0;;-1:-1:-1;;;36387:40:0;;:105;;-1:-1:-1;;;;;;;36444:48:0;;-1:-1:-1;;;36444:48:0;36387:105;:158;;;-1:-1:-1;;;;;;;;;;25178:40:0;;;36509:36;36367:178;36248:305;-1:-1:-1;;36248:305:0:o;39361:100::-;39415:13;39448:5;39441:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39361:100;:::o;40864:204::-;40932:7;40957:16;40965:7;40957;:16::i;:::-;40952:64;;40982:34;;-1:-1:-1;;;40982:34:0;;;;;;;;;;;40952:64;-1:-1:-1;41036:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41036:24:0;;40864:204::o;54725:87::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40427:371::-;40500:13;40516:24;40532:7;40516:15;:24::i;:::-;40500:40;;40561:5;-1:-1:-1;;;;;40555:11:0;:2;-1:-1:-1;;;;;40555:11:0;;40551:48;;;40575:24;;-1:-1:-1;;;40575:24:0;;;;;;;;;;;40551:48;11235:10;-1:-1:-1;;;;;40616:21:0;;;;;;:63;;-1:-1:-1;40642:37:0;40659:5;11235:10;41498:164;:::i;40642:37::-;40641:38;40616:63;40612:138;;;40703:35;;-1:-1:-1;;;40703:35:0;;;;;;;;;;;40612:138;40762:28;40771:2;40775:7;40784:5;40762:8;:28::i;:::-;40489:309;40427:371;;:::o;41729:170::-;41863:28;41873:4;41879:2;41883:7;41863:9;:28::i;55878:195::-;12481:6;;-1:-1:-1;;;;;12481:6:0;11235:10;12628:23;12620:68;;;;-1:-1:-1;;;12620:68:0;;;;;;;:::i;:::-;;;;;;;;;55978:9:::1;;55967:7;55951:13;56387:1:::0;35751:12;35541:7;35735:13;:28;-1:-1:-1;;35735:46:0;;35497:303;55951:13:::1;:23;;;;:::i;:::-;:36;;55943:79;;;::::0;-1:-1:-1;;;55943:79:0;;7756:2:1;55943:79:0::1;::::0;::::1;7738:21:1::0;7795:2;7775:18;;;7768:30;7834:32;7814:18;;;7807:60;7884:18;;55943:79:0::1;7554:354:1::0;55943:79:0::1;56033:32;11235:10:::0;56057:7:::1;56033:9;:32::i;:::-;55878:195:::0;:::o;41970:185::-;42108:39;42125:4;42131:2;42135:7;42108:39;;;;;;;;;;;;:16;:39::i;39169:125::-;39233:7;39260:21;39273:7;39260:12;:21::i;:::-;:26;;39169:125;-1:-1:-1;;39169:125:0:o;36617:206::-;36681:7;-1:-1:-1;;;;;36705:19:0;;36701:60;;36733:28;;-1:-1:-1;;;36733:28:0;;;;;;;;;;;36701:60;-1:-1:-1;;;;;;36787:19:0;;;;;:12;:19;;;;;:27;;;;36617:206::o;13059:103::-;12481:6;;-1:-1:-1;;;;;12481:6:0;11235:10;12628:23;12620:68;;;;-1:-1:-1;;;12620:68:0;;;;;;;:::i;:::-;13124:30:::1;13151:1;13124:18;:30::i;:::-;13059:103::o:0;56600:275::-;12481:6;;-1:-1:-1;;;;;12481:6:0;11235:10;12628:23;12620:68;;;;-1:-1:-1;;;12620:68:0;;;;;;;:::i;:::-;56669:21:::1;56709:11:::0;56701:43:::1;;;::::0;-1:-1:-1;;;56701:43:0;;8460:2:1;56701:43:0::1;::::0;::::1;8442:21:1::0;8499:2;8479:18;;;8472:30;-1:-1:-1;;;8518:18:1;;;8511:49;8577:18;;56701:43:0::1;8258:343:1::0;56701:43:0::1;56757:55;11235:10:::0;56808:3:::1;56798:6;;56792:3;:12;;;;:::i;:::-;56781:24;::::0;:7;:24:::1;:::i;:::-;:30;;;;:::i;:::-;56757:9;:55::i;:::-;56833:9;::::0;56854:6:::1;::::0;56823:44:::1;::::0;56833:9;;::::1;-1:-1:-1::0;;;;;56833:9:0::1;::::0;56863:3:::1;::::0;56844:16:::1;::::0;:7;:16:::1;:::i;56883:86::-:0;12481:6;;-1:-1:-1;;;;;12481:6:0;11235:10;12628:23;12620:68;;;;-1:-1:-1;;;12620:68:0;;;;;;;:::i;:::-;56947:5:::1;:14:::0;56883:86::o;39530:104::-;39586:13;39619:7;39612:14;;;;;:::i;55193:676::-;55265:5;;55321:11;;55250:12;;55321:15;;55335:1;55321:15;:::i;:::-;55313:5;55297:13;56387:1;35751:12;35541:7;35735:13;:28;-1:-1:-1;;35735:46:0;;35497:303;55297:13;:21;;;;:::i;:::-;:39;55296:117;;;;-1:-1:-1;55396:16:0;;55373:10;55355:29;;;;:17;:29;;;;;;:37;;55387:5;;55355:37;:::i;:::-;:57;;55296:117;55281:133;;55431:6;55427:47;;;55461:1;55454:8;;55427:47;55495:6;;;;55494:7;55486:36;;;;-1:-1:-1;;;55486:36:0;;8115:2:1;55486:36:0;;;8097:21:1;8154:2;8134:18;;;8127:30;-1:-1:-1;;;8173:18:1;;;8166:46;8229:18;;55486:36:0;7913:340:1;55486:36:0;55554:12;55562:4;55554:5;:12;:::i;:::-;55541:9;:25;;55533:67;;;;-1:-1:-1;;;55533:67:0;;9938:2:1;55533:67:0;;;9920:21:1;9977:2;9957:18;;;9950:30;10016:31;9996:18;;;9989:59;10065:18;;55533:67:0;9736:353:1;55533:67:0;55643:9;;:13;;55655:1;55643:13;:::i;:::-;55635:5;55619:13;56387:1;35751:12;35541:7;35735:13;:28;-1:-1:-1;;35735:46:0;;35497:303;55619:13;:21;;;;:::i;:::-;:37;55611:57;;;;-1:-1:-1;;;55611:57:0;;7014:2:1;55611:57:0;;;6996:21:1;7053:1;7033:18;;;7026:29;-1:-1:-1;;;7071:18:1;;;7064:37;7118:18;;55611:57:0;6812:330:1;55611:57:0;55695:8;;:12;;55706:1;55695:12;:::i;:::-;55687:5;:20;55679:52;;;;-1:-1:-1;;;55679:52:0;;10296:2:1;55679:52:0;;;10278:21:1;10335:2;10315:18;;;10308:30;-1:-1:-1;;;10354:18:1;;;10347:49;10413:18;;55679:52:0;10094:343:1;55679:52:0;55748:6;55744:77;;;55789:10;55771:29;;;;:17;:29;;;;;:38;;55804:5;;55771:29;:38;;55804:5;;55771:38;:::i;:::-;;;;-1:-1:-1;;55744:77:0;55833:28;55843:10;55855:5;55833:9;:28::i;41140:287::-;-1:-1:-1;;;;;41239:24:0;;11235:10;41239:24;41235:54;;;41272:17;;-1:-1:-1;;;41272:17:0;;;;;;;;;;;41235:54;11235:10;41302:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;41302:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;41302:53:0;;;;;;;;;;41371:48;;6536:41:1;;;41302:42:0;;11235:10;41371:48;;6509:18:1;41371:48:0;;;;;;;41140:287;;:::o;56216:69::-;12481:6;;-1:-1:-1;;;;;12481:6:0;11235:10;12628:23;12620:68;;;;-1:-1:-1;;;12620:68:0;;;;;;;:::i;:::-;56262:8:::1;:15:::0;;-1:-1:-1;;56262:15:0::1;;;::::0;;56216:69::o;42226:369::-;42393:28;42403:4;42409:2;42413:7;42393:9;:28::i;:::-;-1:-1:-1;;;;;42436:13:0;;15382:19;:23;;42436:76;;;;;42456:56;42487:4;42493:2;42497:7;42506:5;42456:30;:56::i;:::-;42455:57;42436:76;42432:156;;;42536:40;;-1:-1:-1;;;42536:40:0;;;;;;;;;;;42432:156;42226:369;;;;:::o;56977:84::-;12481:6;;-1:-1:-1;;;;;12481:6:0;11235:10;12628:23;12620:68;;;;-1:-1:-1;;;12620:68:0;;;;;;;:::i;:::-;57038:6:::1;:15:::0;;-1:-1:-1;;57038:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56977:84::o;57187:439::-;57260:13;57299:16;57307:7;57299;:16::i;:::-;57291:76;;;;-1:-1:-1;;;57291:76:0;;9169:2:1;57291:76:0;;;9151:21:1;9208:2;9188:18;;;9181:30;9247:34;9227:18;;;9220:62;-1:-1:-1;;;9298:18:1;;;9291:45;9353:19;;57291:76:0;8967:411:1;57291:76:0;57383:8;;;;;;;57380:80;;57434:14;57427:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57187:439;;;:::o;57380:80::-;57472:23;57498;57513:7;57498:14;:23::i;:::-;57472:49;;57565:1;57545:9;57539:23;:27;:79;;;;;;;;;;;;;;;;;57593:9;57576:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;57539:79;57532:86;57187:439;-1:-1:-1;;;57187:439:0:o;56081:126::-;12481:6;;-1:-1:-1;;;;;12481:6:0;11235:10;12628:23;12620:68;;;;-1:-1:-1;;;12620:68:0;;;;;;;:::i;:::-;56167:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56081:126:::0;:::o;13317:201::-;12481:6;;-1:-1:-1;;;;;12481:6:0;11235:10;12628:23;12620:68;;;;-1:-1:-1;;;12620:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13406:22:0;::::1;13398:73;;;::::0;-1:-1:-1;;;13398:73:0;;7349:2:1;13398:73:0::1;::::0;::::1;7331:21:1::0;7388:2;7368:18;;;7361:30;7427:34;7407:18;;;7400:62;-1:-1:-1;;;7478:18:1;;;7471:36;7524:19;;13398:73:0::1;7147:402:1::0;13398:73:0::1;13482:28;13501:8;13482:18;:28::i;43104:187::-:0;43161:4;43204:7;56387:1;43185:26;;:53;;;;;43225:13;;43215:7;:23;43185:53;:98;;;;-1:-1:-1;;43256:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;43256:27:0;;;;43255:28;;43104:187::o;51274:196::-;51389:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51389:29:0;-1:-1:-1;;;;;51389:29:0;;;;;;;;;51434:28;;51389:24;;51434:28;;;;;;;51274:196;;;:::o;46217:2130::-;46332:35;46370:21;46383:7;46370:12;:21::i;:::-;46332:59;;46430:4;-1:-1:-1;;;;;46408:26:0;:13;:18;;;-1:-1:-1;;;;;46408:26:0;;46404:67;;46443:28;;-1:-1:-1;;;46443:28:0;;;;;;;;;;;46404:67;46484:22;11235:10;-1:-1:-1;;;;;46510:20:0;;;;:73;;-1:-1:-1;46547:36:0;46564:4;11235:10;41498:164;:::i;46547:36::-;46510:126;;;-1:-1:-1;11235:10:0;46600:20;46612:7;46600:11;:20::i;:::-;-1:-1:-1;;;;;46600:36:0;;46510:126;46484:153;;46655:17;46650:66;;46681:35;;-1:-1:-1;;;46681:35:0;;;;;;;;;;;46650:66;-1:-1:-1;;;;;46731:16:0;;46727:52;;46756:23;;-1:-1:-1;;;46756:23:0;;;;;;;;;;;46727:52;46900:35;46917:1;46921:7;46930:4;46900:8;:35::i;:::-;-1:-1:-1;;;;;47231:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;47231:31:0;;;;;;;-1:-1:-1;;47231:31:0;;;;;;;47277:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;47277:29:0;;;;;;;;;;;47357:20;;;:11;:20;;;;;;47392:18;;-1:-1:-1;;;;;;47425:49:0;;;;-1:-1:-1;;;47458:15:0;47425:49;;;;;;;;;;47748:11;;47808:24;;;;;47851:13;;47357:20;;47808:24;;47851:13;47847:384;;48061:13;;48046:11;:28;48042:174;;48099:20;;48168:28;;;;48142:54;;-1:-1:-1;;;48142:54:0;-1:-1:-1;;;;;;48142:54:0;;;-1:-1:-1;;;;;48099:20:0;;48142:54;;;;48042:174;47206:1036;;;48278:7;48274:2;-1:-1:-1;;;;;48259:27:0;48268:4;-1:-1:-1;;;;;48259:27:0;;;;;;;;;;;48297:42;46321:2026;;46217:2130;;;:::o;43299:104::-;43368:27;43378:2;43382:8;43368:27;;;;;;;;;;;;:9;:27::i;37998:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;38109:7:0;;56387:1;38158:23;;:47;;;;;38192:13;;38185:4;:20;38158:47;38154:886;;;38226:31;38260:17;;;:11;:17;;;;;;;;;38226:51;;;;;;;;;-1:-1:-1;;;;;38226:51:0;;;;-1:-1:-1;;;38226:51:0;;;;;;;;;;;-1:-1:-1;;;38226:51:0;;;;;;;;;;;;;;38296:729;;38346:14;;-1:-1:-1;;;;;38346:28:0;;38342:101;;38410:9;37998:1109;-1:-1:-1;;;37998:1109:0:o;38342:101::-;-1:-1:-1;;;38785:6:0;38830:17;;;;:11;:17;;;;;;;;;38818:29;;;;;;;;;-1:-1:-1;;;;;38818:29:0;;;;;-1:-1:-1;;;38818:29:0;;;;;;;;;;;-1:-1:-1;;;38818:29:0;;;;;;;;;;;;;38878:28;38874:109;;38946:9;37998:1109;-1:-1:-1;;;37998:1109:0:o;38874:109::-;38745:261;;;38207:833;38154:886;39068:31;;-1:-1:-1;;;39068:31:0;;;;;;;;;;;13678:191;13771:6;;;-1:-1:-1;;;;;13788:17:0;;;-1:-1:-1;;;;;;13788:17:0;;;;;;;13821:40;;13771:6;;;13788:17;13771:6;;13821:40;;13752:16;;13821:40;13741:128;13678:191;:::o;56404:188::-;56478:12;56496:8;-1:-1:-1;;;;;56496:13:0;56517:7;56496:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56477:52;;;56548:7;56540:44;;;;-1:-1:-1;;;56540:44:0;;9585:2:1;56540:44:0;;;9567:21:1;9624:2;9604:18;;;9597:30;9663:26;9643:18;;;9636:54;9707:18;;56540:44:0;9383:348:1;51962:667:0;52146:72;;-1:-1:-1;;;52146:72:0;;52125:4;;-1:-1:-1;;;;;52146:36:0;;;;;:72;;11235:10;;52197:4;;52203:7;;52212:5;;52146:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52146:72:0;;;;;;;;-1:-1:-1;;52146:72:0;;;;;;;;;;;;:::i;:::-;;;52142:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52380:13:0;;52376:235;;52426:40;;-1:-1:-1;;;52426:40:0;;;;;;;;;;;52376:235;52569:6;52563:13;52554:6;52550:2;52546:15;52539:38;52142:480;-1:-1:-1;;;;;;52265:55:0;-1:-1:-1;;;52265:55:0;;-1:-1:-1;52142:480:0;51962:667;;;;;;:::o;39705:318::-;39778:13;39809:16;39817:7;39809;:16::i;:::-;39804:59;;39834:29;;-1:-1:-1;;;39834:29:0;;;;;;;;;;;39804:59;39876:21;39900:10;:8;:10::i;:::-;39876:34;;39934:7;39928:21;39953:1;39928:26;;:87;;;;;;;;;;;;;;;;;39981:7;39990:18;:7;:16;:18::i;:::-;39964:45;;;;;;;;;:::i;43766:163::-;43889:32;43895:2;43899:8;43909:5;43916:4;43889:5;:32::i;57069:106::-;57129:13;57160:7;57153:14;;;;;:::i;8739:723::-;8795:13;9016:10;9012:53;;-1:-1:-1;;9043:10:0;;;;;;;;;;;;-1:-1:-1;;;9043:10:0;;;;;8739:723::o;9012:53::-;9090:5;9075:12;9131:78;9138:9;;9131:78;;9164:8;;;;:::i;:::-;;-1:-1:-1;9187:10:0;;-1:-1:-1;9195:2:0;9187:10;;:::i;:::-;;;9131:78;;;9219:19;9251:6;9241:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9241:17:0;;9219:39;;9269:154;9276:10;;9269:154;;9303:11;9313:1;9303:11;;:::i;:::-;;-1:-1:-1;9372:10:0;9380:2;9372:5;:10;:::i;:::-;9359:24;;:2;:24;:::i;:::-;9346:39;;9329:6;9336;9329:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9329:56:0;;;;;;;;-1:-1:-1;9400:11:0;9409:2;9400:11;;:::i;:::-;;;9269:154;;44188:1775;44327:20;44350:13;-1:-1:-1;;;;;44378:16:0;;44374:48;;44403:19;;-1:-1:-1;;;44403:19:0;;;;;;;;;;;44374:48;44437:13;44433:44;;44459:18;;-1:-1:-1;;;44459:18:0;;;;;;;;;;;44433:44;-1:-1:-1;;;;;44828:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;44887:49:0;;44828:44;;;;;;;;44887:49;;;;-1:-1:-1;;44828:44:0;;;;;;44887:49;;;;;;;;;;;;;;;;44953:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;45003:66:0;;;;-1:-1:-1;;;45053:15:0;45003:66;;;;;;;;;;44953:25;45150:23;;;45194:4;:23;;;;-1:-1:-1;;;;;;45202:13:0;;15382:19;:23;;45202:15;45190:641;;;45238:314;45269:38;;45294:12;;-1:-1:-1;;;;;45269:38:0;;;45286:1;;45269:38;;45286:1;;45269:38;45335:69;45374:1;45378:2;45382:14;;;;;;45398:5;45335:30;:69::i;:::-;45330:174;;45440:40;;-1:-1:-1;;;45440:40:0;;;;;;;;;;;45330:174;45547:3;45531:12;:19;;45238:314;;45633:12;45616:13;;:29;45612:43;;45647:8;;;45612:43;45190:641;;;45696:120;45727:40;;45752:14;;;;;-1:-1:-1;;;;;45727:40:0;;;45744:1;;45727:40;;45744:1;;45727:40;45811:3;45795:12;:19;;45696:120;;45190:641;-1:-1:-1;45845:13:0;:28;45895:60;42226:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5037:443::-;5269:3;5307:6;5301:13;5323:53;5369:6;5364:3;5357:4;5349:6;5345:17;5323:53;:::i;:::-;-1:-1:-1;;;5398:16:1;;5423:22;;;-1:-1:-1;5472:1:1;5461:13;;5037:443;-1:-1:-1;5037:443:1:o;5903:488::-;-1:-1:-1;;;;;6172:15:1;;;6154:34;;6224:15;;6219:2;6204:18;;6197:43;6271:2;6256:18;;6249:34;;;6319:3;6314:2;6299:18;;6292:31;;;6097:4;;6340:45;;6365:19;;6357:6;6340:45;:::i;:::-;6332:53;5903:488;-1:-1:-1;;;;;;5903:488:1:o;6588:219::-;6737:2;6726:9;6719:21;6700:4;6757:44;6797:2;6786:9;6782:18;6774:6;6757:44;:::i;8606:356::-;8808:2;8790:21;;;8827:18;;;8820:30;8886:34;8881:2;8866:18;;8859:62;8953:2;8938:18;;8606:356::o;10624:128::-;10664:3;10695:1;10691:6;10688:1;10685:13;10682:39;;;10701:18;;:::i;:::-;-1:-1:-1;10737:9:1;;10624:128::o;10757:120::-;10797:1;10823;10813:35;;10828:18;;:::i;:::-;-1:-1:-1;10862:9:1;;10757:120::o;10882:168::-;10922:7;10988:1;10984;10980:6;10976:14;10973:1;10970:21;10965:1;10958:9;10951:17;10947:45;10944:71;;;10995:18;;:::i;:::-;-1:-1:-1;11035:9:1;;10882:168::o;11055:125::-;11095:4;11123:1;11120;11117:8;11114:34;;;11128:18;;:::i;:::-;-1:-1:-1;11165:9:1;;11055:125::o;11185:258::-;11257:1;11267:113;11281:6;11278:1;11275:13;11267:113;;;11357:11;;;11351:18;11338:11;;;11331:39;11303:2;11296:10;11267:113;;;11398:6;11395:1;11392:13;11389:48;;;-1:-1:-1;;11433:1:1;11415:16;;11408:27;11185:258::o;11448:380::-;11527:1;11523:12;;;;11570;;;11591:61;;11645:4;11637:6;11633:17;11623:27;;11591:61;11698:2;11690:6;11687:14;11667:18;11664:38;11661:161;;;11744:10;11739:3;11735:20;11732:1;11725:31;11779:4;11776:1;11769:15;11807:4;11804:1;11797:15;11661:161;;11448:380;;;:::o;11833:135::-;11872:3;-1:-1:-1;;11893:17:1;;11890:43;;;11913:18;;:::i;:::-;-1:-1:-1;11960:1:1;11949:13;;11833:135::o;11973:112::-;12005:1;12031;12021:35;;12036:18;;:::i;:::-;-1:-1:-1;12070:9:1;;11973:112::o;12090:127::-;12151:10;12146:3;12142:20;12139:1;12132:31;12182:4;12179:1;12172:15;12206:4;12203:1;12196:15;12222:127;12283:10;12278:3;12274:20;12271:1;12264:31;12314:4;12311:1;12304:15;12338:4;12335:1;12328:15;12354:127;12415:10;12410:3;12406:20;12403:1;12396:31;12446:4;12443:1;12436:15;12470:4;12467:1;12460:15;12486:127;12547:10;12542:3;12538:20;12535:1;12528:31;12578:4;12575:1;12568:15;12602:4;12599:1;12592:15;12618:131;-1:-1:-1;;;;;;12692:32:1;;12682:43;;12672:71;;12739:1;12736;12729:12
Swarm Source
ipfs://8be76b244d5ad6e7227d51f8df531207fa67d09cc70fd123e57f7f85d8cf3427
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.