ERC-721
Overview
Max Total Supply
8 PrintMaking NFT
Holders
5
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 PrintMaking NFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
PrintMakingNFT
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-05-09 */ // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @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 or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * 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. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @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`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.20; /** * @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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; /** * @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); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; /** * @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`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 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 address zero. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.20; /** * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.20; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ 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 subtraction of two unsigned integers, with an overflow flag. */ 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. */ 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. */ 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. */ 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 largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; 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_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: ERC721A.sol // Creators: locationtba.eth, 2pmflow.eth pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 1;//0; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (isContract(to)) { 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("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } function isContract(address account) public view returns (bool) { // extcodesize > 0 is contract addr uint size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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: HJN2.sol /* ============================================== PrintMakingNFT ============================================== */ pragma solidity >=0.8.9 <0.9.0; /** * @title PrintMakingNFT */ library MerkleProof { function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } // Sorted Pair Hash function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? keccak256(abi.encodePacked(a, b)) : keccak256(abi.encodePacked(b, a)); } } contract PrintMakingNFT is ERC721A, Ownable { using Strings for uint256; bool public publicMintEnabled = false; bool public wlMintStep1Enabled = false; bool public wlMintStep2Enabled = false; uint256 public Price = 0 ether; uint256 public TotalNum = 500; string private _baseURIextended = "ipfs://Qmbp5LkhFTjVxxedeWhCUX5vv8a9BshZvu5QLpXDmKCcgg/"; bytes32 public wlroot1 = ""; // bytes32 public wlroot2 = ""; // mapping(address => bool) public listClaimed; // constructor() ERC721A("PrintMaking NFT", "PrintMaking NFT", 500) Ownable(msg.sender) {} function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { string memory currentBaseURI = _baseURI(); return string( abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json") ); } function setBaseURI(string memory baseURI_) external onlyOwner { _baseURIextended = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } function setRoot(bytes32 mroot,uint256 step) public onlyOwner { if (step ==1){ wlroot1 = mroot; } if (step == 2){ wlroot2 = mroot; } } function setPrice(uint256 newPrice) public onlyOwner { Price = newPrice; } function setPublicMint(bool enable) public onlyOwner { publicMintEnabled = enable; } function setWlMint(bool enable,uint256 step) public onlyOwner { if (step == 1){ wlMintStep1Enabled = enable; }else if (step == 2){ wlMintStep2Enabled = enable; } } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract!"); _; } function wlmint1(bytes32[] calldata proof) external callerIsUser { require(wlMintStep1Enabled, "The whitelist sale is not enabled!"); require(totalSupply() + 1 <= TotalNum, "already mint out"); require(!listClaimed[msg.sender], "Already minted!"); // require(_verify(wlroot1,_leaf(msg.sender), proof), "Invalid merkle proof"); // listClaimed[msg.sender] = true; // _safeMint(msg.sender, 1); } function wlmint2(bytes32[] calldata proof) external callerIsUser { require(wlMintStep2Enabled, "The whitelist sale is not enabled!"); require(totalSupply() + 1 <= TotalNum, "already mint out"); require(!listClaimed[msg.sender], "Already minted!"); // require(_verify(wlroot2,_leaf(msg.sender), proof), "Invalid merkle proof"); // listClaimed[msg.sender] = true; // _safeMint(msg.sender, 1); } function _leaf(address account) internal pure returns (bytes32) { return keccak256(abi.encodePacked(account)); } function _verify(bytes32 root,bytes32 leaf, bytes32[] memory proof) internal pure returns (bool) { return MerkleProof.verify(proof, root, leaf); } function mint() external payable callerIsUser { require(publicMintEnabled, "The whitelist sale is not enabled!"); require(totalSupply() + 1 <= TotalNum, "already mint out"); _safeMint(msg.sender, 1); } function airdrop(address _to, uint256 numberOfTokens) external onlyOwner { require(totalSupply() + numberOfTokens <= TotalNum, "already mint out"); _safeMint(_to, numberOfTokens); } function withdraw() public onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TotalNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"listClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"publicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"setPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"mroot","type":"bytes32"},{"internalType":"uint256","name":"step","type":"uint256"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"},{"internalType":"uint256","name":"step","type":"uint256"}],"name":"setWlMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMintStep1Enabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMintStep2Enabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"wlmint1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"wlmint2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlroot1","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlroot2","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60015f90815560078190556008805462ffffff60a01b191690556009556101f4600a55610100604052603660a0818152906128a960c039600b9061004390826101e3565b505f600c555f600d55348015610057575f80fd5b50604080518082018252600f8082526e141c9a5b9d13585ada5b99c8139195608a1b602080840182905284518086019095529184529083015233916101f46100a3565b60405180910390fd5b60016100af84826101e3565b5060026100bc83826101e3565b5060805250506001600160a01b0381166100eb57604051631e4fbdf760e01b81525f600482015260240161009a565b6100f4816100fa565b506102a2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061017357607f821691505b60208210810361019157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156101de57805f5260205f20601f840160051c810160208510156101bc5750805b601f840160051c820191505b818110156101db575f81556001016101c8565b50505b505050565b81516001600160401b038111156101fc576101fc61014b565b6102108161020a845461015f565b84610197565b602080601f831160018114610243575f841561022c5750858301515b5f19600386901b1c1916600185901b17855561029a565b5f85815260208120601f198616915b8281101561027157888601518255948401946001909101908401610252565b508582101561028e57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b6080516125e16102c85f395f81816116d6015281816117000152611aee01526125e15ff3fe608060405260043610610228575f3560e01c8063715018a611610129578063b88d4fde116100a8578063d7224ba01161006d578063d7224ba01461061b578063e2b9e12814610630578063e985e9c51461065e578063edbe2a21146106a5578063f2fde38b146106c4575f80fd5b8063b88d4fde14610589578063c36b2a3c146105a8578063c62dd15c146105c8578063c87b56dd146105dd578063d3dd752f146105fc575f80fd5b806395d89b41116100ee57806395d89b41146105175780639dfde2011461052b578063a22cb46514610540578063b2d5fb471461055f578063b6b7d94414610574575f80fd5b8063715018a6146104895780637b57422f1461049d5780638ba4cc3c146104bc5780638da5cb5b146104db57806391b7f5ed146104f8575f80fd5b806323b872dd116101b557806355f804b31161017a57806355f804b3146103ed578063612c941b1461040c5780636352211e1461042b5780636c7b04191461044a57806370a082311461046a575f80fd5b806323b872dd1461035d5780632f745c591461037c5780633ccfd60b1461039b57806342842e0e146103af5780634f6ccce7146103ce575f80fd5b80630e2d56cf116101fb5780630e2d56cf146102d95780630f4161aa146102f85780631249c58b14610318578063162790551461032057806318160ddd14610340575f80fd5b806301ffc9a71461022c57806306fdde0314610260578063081812fc14610281578063095ea7b3146102b8575b5f80fd5b348015610237575f80fd5b5061024b610246366004611ea8565b6106e3565b60405190151581526020015b60405180910390f35b34801561026b575f80fd5b5061027461074f565b6040516102579190611ef1565b34801561028c575f80fd5b506102a061029b366004611f03565b6107df565b6040516001600160a01b039091168152602001610257565b3480156102c3575f80fd5b506102d76102d2366004611f35565b61086c565b005b3480156102e4575f80fd5b506102d76102f3366004611f6c565b610982565b348015610303575f80fd5b5060085461024b90600160a01b900460ff1681565b6102d76109a8565b34801561032b575f80fd5b5061024b61033a366004611f85565b3b151590565b34801561034b575f80fd5b505f545b604051908152602001610257565b348015610368575f80fd5b506102d7610377366004611f9e565b610a2b565b348015610387575f80fd5b5061034f610396366004611f35565b610a36565b3480156103a6575f80fd5b506102d7610b95565b3480156103ba575f80fd5b506102d76103c9366004611f9e565b610c5b565b3480156103d9575f80fd5b5061034f6103e8366004611f03565b610c75565b3480156103f8575f80fd5b506102d761040736600461205e565b610cd6565b348015610417575f80fd5b506102d76104263660046120a3565b610cee565b348015610436575f80fd5b506102a0610445366004611f03565b610d40565b348015610455575f80fd5b5060085461024b90600160a81b900460ff1681565b348015610475575f80fd5b5061034f610484366004611f85565b610d51565b348015610494575f80fd5b506102d7610de0565b3480156104a8575f80fd5b506102d76104b73660046120bd565b610df1565b3480156104c7575f80fd5b506102d76104d6366004611f35565b610f68565b3480156104e6575f80fd5b506008546001600160a01b03166102a0565b348015610503575f80fd5b506102d7610512366004611f03565b610fae565b348015610522575f80fd5b50610274610fbb565b348015610536575f80fd5b5061034f60095481565b34801561054b575f80fd5b506102d761055a36600461212c565b610fca565b34801561056a575f80fd5b5061034f600c5481565b34801561057f575f80fd5b5061034f600a5481565b348015610594575f80fd5b506102d76105a336600461215d565b61108d565b3480156105b3575f80fd5b5060085461024b90600160b01b900460ff1681565b3480156105d3575f80fd5b5061034f600d5481565b3480156105e8575f80fd5b506102746105f7366004611f03565b6110c6565b348015610607575f80fd5b506102d76106163660046120bd565b611105565b348015610626575f80fd5b5061034f60075481565b34801561063b575f80fd5b5061024b61064a366004611f85565b600e6020525f908152604090205460ff1681565b348015610669575f80fd5b5061024b6106783660046121d4565b6001600160a01b039182165f90815260066020908152604080832093909416825291909152205460ff1690565b3480156106b0575f80fd5b506102d76106bf3660046121fc565b6111db565b3480156106cf575f80fd5b506102d76106de366004611f85565b6111ff565b5f6001600160e01b031982166380ac58cd60e01b148061071357506001600160e01b03198216635b5e139f60e01b145b8061072e57506001600160e01b0319821663780e9d6360e01b145b8061074957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461075e9061221c565b80601f016020809104026020016040519081016040528092919081815260200182805461078a9061221c565b80156107d55780601f106107ac576101008083540402835291602001916107d5565b820191905f5260205f20905b8154815290600101906020018083116107b857829003601f168201915b5050505050905090565b5f6107ea825f541190565b6108515760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b505f908152600560205260409020546001600160a01b031690565b5f61087682610d40565b9050806001600160a01b0316836001600160a01b0316036108e45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610848565b336001600160a01b038216148061090057506109008133610678565b6109725760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610848565b61097d838383611239565b505050565b61098a611294565b60088054911515600160a01b0260ff60a01b19909216919091179055565b3233146109c75760405162461bcd60e51b815260040161084890612254565b600854600160a01b900460ff166109f05760405162461bcd60e51b81526004016108489061228b565b600a545f54610a009060016122e1565b1115610a1e5760405162461bcd60e51b8152600401610848906122f4565b610a293360016112c1565b565b61097d8383836112da565b5f610a4083610d51565b8210610a995760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610848565b5f80549080805b83811015610b35575f818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610af257805192505b876001600160a01b0316836001600160a01b031603610b2c57868403610b1e5750935061074992505050565b83610b288161231e565b9450505b50600101610aa0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610848565b610b9d611294565b6040515f90339047908381818185875af1925050503d805f8114610bdc576040519150601f19603f3d011682016040523d82523d5f602084013e610be1565b606091505b5050905080610c585760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610848565b50565b61097d83838360405180602001604052805f81525061108d565b5f80548210610cd25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610848565b5090565b610cde611294565b600b610cea8282612381565b5050565b610cf6611294565b80600103610d1b5760088054831515600160a81b0260ff60a81b199091161790555050565b80600203610cea5760088054831515600160b01b0260ff60b01b199091161790555050565b5f610d4a82611657565b5192915050565b5f6001600160a01b038216610dbc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610848565b506001600160a01b03165f908152600460205260409020546001600160801b031690565b610de8611294565b610a295f6117fd565b323314610e105760405162461bcd60e51b815260040161084890612254565b600854600160b01b900460ff16610e395760405162461bcd60e51b81526004016108489061228b565b600a545f54610e499060016122e1565b1115610e675760405162461bcd60e51b8152600401610848906122f4565b335f908152600e602052604090205460ff1615610eb85760405162461bcd60e51b815260206004820152600f60248201526e416c7265616479206d696e7465642160881b6044820152606401610848565b610eff600d54610ec73361184e565b8484808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525061188c92505050565b610f425760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610848565b335f818152600e60205260409020805460ff19166001908117909155610cea91906112c1565b610f70611294565b600a5481610f7c5f5490565b610f8691906122e1565b1115610fa45760405162461bcd60e51b8152600401610848906122f4565b610cea82826112c1565b610fb6611294565b600955565b60606002805461075e9061221c565b336001600160a01b038316036110225760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610848565b335f8181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110988484846112da565b6110a4848484846118a0565b6110c05760405162461bcd60e51b81526004016108489061243d565b50505050565b60605f6110d1611994565b9050806110dd846119a3565b6040516020016110ee9291906124a7565b604051602081830303815290604052915050919050565b3233146111245760405162461bcd60e51b815260040161084890612254565b600854600160a81b900460ff1661114d5760405162461bcd60e51b81526004016108489061228b565b600a545f5461115d9060016122e1565b111561117b5760405162461bcd60e51b8152600401610848906122f4565b335f908152600e602052604090205460ff16156111cc5760405162461bcd60e51b815260206004820152600f60248201526e416c7265616479206d696e7465642160881b6044820152606401610848565b610eff600c54610ec73361184e565b6111e3611294565b806001036111f157600c8290555b80600203610cea5750600d55565b611207611294565b6001600160a01b03811661123057604051631e4fbdf760e01b81525f6004820152602401610848565b610c58816117fd565b5f8281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610a295760405163118cdaa760e01b8152336004820152602401610848565b610cea828260405180602001604052805f815250611a33565b5f6112e482611657565b80519091505f906001600160a01b0316336001600160a01b0316148061131a57503361130f846107df565b6001600160a01b0316145b8061132c5750815161132c9033610678565b9050806113965760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610848565b846001600160a01b0316825f01516001600160a01b0316146114095760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610848565b6001600160a01b03841661146d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610848565b61147b5f84845f0151611239565b6001600160a01b0385165f9081526004602052604081208054600192906114ac9084906001600160801b03166124d1565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386165f90815260046020526040812080546001945090926114f7918591166124f8565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff42811660208085019182525f8981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561157e8460016122e1565b5f818152600360205260409020549091506001600160a01b031661160d576115a6815f541190565b1561160d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081525f878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091525f8082526020820152611674825f541190565b6116d35760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610848565b5f7f00000000000000000000000000000000000000000000000000000000000000008310611733576117257f000000000000000000000000000000000000000000000000000000000000000084612518565b6117309060016122e1565b90505b825b81811061179c575f818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561178957949350505050565b50806117948161252b565b915050611735565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610848565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6040516bffffffffffffffffffffffff19606083901b1660208201525f90603401604051602081830303815290604052805190602001209050919050565b5f611898828585611cfc565b949350505050565b5f833b1561198957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118da903390899088908890600401612540565b6020604051808303815f875af1925050508015611914575060408051601f3d908101601f191682019092526119119181019061257c565b60015b61196f573d808015611941576040519150601f19603f3d011682016040523d82523d5f602084013e611946565b606091505b5080515f036119675760405162461bcd60e51b81526004016108489061243d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611898565b506001949350505050565b6060600b805461075e9061221c565b60605f6119af83611d11565b60010190505f8167ffffffffffffffff8111156119ce576119ce611fd7565b6040519080825280601f01601f1916602001820160405280156119f8576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611a0257509392505050565b5f546001600160a01b038416611a955760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610848565b611a9f815f541190565b15611aec5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610848565b7f0000000000000000000000000000000000000000000000000000000000000000831115611b675760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610848565b6001600160a01b0384165f908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611bc29087906124f8565b6001600160801b03168152602001858360200151611be091906124f8565b6001600160801b039081169091526001600160a01b038088165f8181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611cf25760405182906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cc15f8884886118a0565b611cdd5760405162461bcd60e51b81526004016108489061243d565b81611ce78161231e565b925050600101611c76565b505f81905561164f565b5f82611d088584611de8565b14949350505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611d4f5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611d7b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611d9957662386f26fc10000830492506010015b6305f5e1008310611db1576305f5e100830492506008015b6127108310611dc557612710830492506004015b60648310611dd7576064830492506002015b600a83106107495760010192915050565b5f81815b8451811015611e2257611e1882868381518110611e0b57611e0b612597565b6020026020010151611e2a565b9150600101611dec565b509392505050565b5f818310611e6157604080516020810184905290810184905260600160405160208183030381529060405280519060200120611e8c565b6040805160208101859052908101839052606001604051602081830303815290604052805190602001205b9392505050565b6001600160e01b031981168114610c58575f80fd5b5f60208284031215611eb8575f80fd5b8135611e8c81611e93565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f611e8c6020830184611ec3565b5f60208284031215611f13575f80fd5b5035919050565b80356001600160a01b0381168114611f30575f80fd5b919050565b5f8060408385031215611f46575f80fd5b611f4f83611f1a565b946020939093013593505050565b80358015158114611f30575f80fd5b5f60208284031215611f7c575f80fd5b611e8c82611f5d565b5f60208284031215611f95575f80fd5b611e8c82611f1a565b5f805f60608486031215611fb0575f80fd5b611fb984611f1a565b9250611fc760208501611f1a565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561200557612005611fd7565b604051601f8501601f19908116603f0116810190828211818310171561202d5761202d611fd7565b81604052809350858152868686011115612045575f80fd5b858560208301375f602087830101525050509392505050565b5f6020828403121561206e575f80fd5b813567ffffffffffffffff811115612084575f80fd5b8201601f81018413612094575f80fd5b61189884823560208401611feb565b5f80604083850312156120b4575f80fd5b611f4f83611f5d565b5f80602083850312156120ce575f80fd5b823567ffffffffffffffff808211156120e5575f80fd5b818501915085601f8301126120f8575f80fd5b813581811115612106575f80fd5b8660208260051b850101111561211a575f80fd5b60209290920196919550909350505050565b5f806040838503121561213d575f80fd5b61214683611f1a565b915061215460208401611f5d565b90509250929050565b5f805f8060808587031215612170575f80fd5b61217985611f1a565b935061218760208601611f1a565b925060408501359150606085013567ffffffffffffffff8111156121a9575f80fd5b8501601f810187136121b9575f80fd5b6121c887823560208401611feb565b91505092959194509250565b5f80604083850312156121e5575f80fd5b6121ee83611f1a565b915061215460208401611f1a565b5f806040838503121561220d575f80fd5b50508035926020909101359150565b600181811c9082168061223057607f821691505b60208210810361224e57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252601f908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163742100604082015260600190565b60208082526022908201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604082015261642160f01b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610749576107496122cd565b60208082526010908201526f185b1c9958591e481b5a5b9d081bdd5d60821b604082015260600190565b5f6001820161232f5761232f6122cd565b5060010190565b601f82111561097d57805f5260205f20601f840160051c8101602085101561235b5750805b601f840160051c820191505b8181101561237a575f8155600101612367565b5050505050565b815167ffffffffffffffff81111561239b5761239b611fd7565b6123af816123a9845461221c565b84612336565b602080601f8311600181146123e2575f84156123cb5750858301515b5f19600386901b1c1916600185901b17855561164f565b5f85815260208120601f198616915b82811015612410578886015182559484019460019091019084016123f1565b508582101561242d57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b5f81518060208401855e5f93019283525090919050565b5f6124bb6124b58386612490565b84612490565b64173539b7b760d91b8152600501949350505050565b6001600160801b038281168282160390808211156124f1576124f16122cd565b5092915050565b6001600160801b038181168382160190808211156124f1576124f16122cd565b81810381811115610749576107496122cd565b5f81612539576125396122cd565b505f190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061257290830184611ec3565b9695505050505050565b5f6020828403121561258c575f80fd5b8151611e8c81611e93565b634e487b7160e01b5f52603260045260245ffdfea264697066735822122039b368894f1b3e15b7c1c59ae549e77b27b7281326d100920854dce1c914389764736f6c63430008190033697066733a2f2f516d6270354c6b6846546a56787865646557684355583576763861394273685a767535514c7058446d4b436367672f
Deployed Bytecode
0x608060405260043610610228575f3560e01c8063715018a611610129578063b88d4fde116100a8578063d7224ba01161006d578063d7224ba01461061b578063e2b9e12814610630578063e985e9c51461065e578063edbe2a21146106a5578063f2fde38b146106c4575f80fd5b8063b88d4fde14610589578063c36b2a3c146105a8578063c62dd15c146105c8578063c87b56dd146105dd578063d3dd752f146105fc575f80fd5b806395d89b41116100ee57806395d89b41146105175780639dfde2011461052b578063a22cb46514610540578063b2d5fb471461055f578063b6b7d94414610574575f80fd5b8063715018a6146104895780637b57422f1461049d5780638ba4cc3c146104bc5780638da5cb5b146104db57806391b7f5ed146104f8575f80fd5b806323b872dd116101b557806355f804b31161017a57806355f804b3146103ed578063612c941b1461040c5780636352211e1461042b5780636c7b04191461044a57806370a082311461046a575f80fd5b806323b872dd1461035d5780632f745c591461037c5780633ccfd60b1461039b57806342842e0e146103af5780634f6ccce7146103ce575f80fd5b80630e2d56cf116101fb5780630e2d56cf146102d95780630f4161aa146102f85780631249c58b14610318578063162790551461032057806318160ddd14610340575f80fd5b806301ffc9a71461022c57806306fdde0314610260578063081812fc14610281578063095ea7b3146102b8575b5f80fd5b348015610237575f80fd5b5061024b610246366004611ea8565b6106e3565b60405190151581526020015b60405180910390f35b34801561026b575f80fd5b5061027461074f565b6040516102579190611ef1565b34801561028c575f80fd5b506102a061029b366004611f03565b6107df565b6040516001600160a01b039091168152602001610257565b3480156102c3575f80fd5b506102d76102d2366004611f35565b61086c565b005b3480156102e4575f80fd5b506102d76102f3366004611f6c565b610982565b348015610303575f80fd5b5060085461024b90600160a01b900460ff1681565b6102d76109a8565b34801561032b575f80fd5b5061024b61033a366004611f85565b3b151590565b34801561034b575f80fd5b505f545b604051908152602001610257565b348015610368575f80fd5b506102d7610377366004611f9e565b610a2b565b348015610387575f80fd5b5061034f610396366004611f35565b610a36565b3480156103a6575f80fd5b506102d7610b95565b3480156103ba575f80fd5b506102d76103c9366004611f9e565b610c5b565b3480156103d9575f80fd5b5061034f6103e8366004611f03565b610c75565b3480156103f8575f80fd5b506102d761040736600461205e565b610cd6565b348015610417575f80fd5b506102d76104263660046120a3565b610cee565b348015610436575f80fd5b506102a0610445366004611f03565b610d40565b348015610455575f80fd5b5060085461024b90600160a81b900460ff1681565b348015610475575f80fd5b5061034f610484366004611f85565b610d51565b348015610494575f80fd5b506102d7610de0565b3480156104a8575f80fd5b506102d76104b73660046120bd565b610df1565b3480156104c7575f80fd5b506102d76104d6366004611f35565b610f68565b3480156104e6575f80fd5b506008546001600160a01b03166102a0565b348015610503575f80fd5b506102d7610512366004611f03565b610fae565b348015610522575f80fd5b50610274610fbb565b348015610536575f80fd5b5061034f60095481565b34801561054b575f80fd5b506102d761055a36600461212c565b610fca565b34801561056a575f80fd5b5061034f600c5481565b34801561057f575f80fd5b5061034f600a5481565b348015610594575f80fd5b506102d76105a336600461215d565b61108d565b3480156105b3575f80fd5b5060085461024b90600160b01b900460ff1681565b3480156105d3575f80fd5b5061034f600d5481565b3480156105e8575f80fd5b506102746105f7366004611f03565b6110c6565b348015610607575f80fd5b506102d76106163660046120bd565b611105565b348015610626575f80fd5b5061034f60075481565b34801561063b575f80fd5b5061024b61064a366004611f85565b600e6020525f908152604090205460ff1681565b348015610669575f80fd5b5061024b6106783660046121d4565b6001600160a01b039182165f90815260066020908152604080832093909416825291909152205460ff1690565b3480156106b0575f80fd5b506102d76106bf3660046121fc565b6111db565b3480156106cf575f80fd5b506102d76106de366004611f85565b6111ff565b5f6001600160e01b031982166380ac58cd60e01b148061071357506001600160e01b03198216635b5e139f60e01b145b8061072e57506001600160e01b0319821663780e9d6360e01b145b8061074957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461075e9061221c565b80601f016020809104026020016040519081016040528092919081815260200182805461078a9061221c565b80156107d55780601f106107ac576101008083540402835291602001916107d5565b820191905f5260205f20905b8154815290600101906020018083116107b857829003601f168201915b5050505050905090565b5f6107ea825f541190565b6108515760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b505f908152600560205260409020546001600160a01b031690565b5f61087682610d40565b9050806001600160a01b0316836001600160a01b0316036108e45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610848565b336001600160a01b038216148061090057506109008133610678565b6109725760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610848565b61097d838383611239565b505050565b61098a611294565b60088054911515600160a01b0260ff60a01b19909216919091179055565b3233146109c75760405162461bcd60e51b815260040161084890612254565b600854600160a01b900460ff166109f05760405162461bcd60e51b81526004016108489061228b565b600a545f54610a009060016122e1565b1115610a1e5760405162461bcd60e51b8152600401610848906122f4565b610a293360016112c1565b565b61097d8383836112da565b5f610a4083610d51565b8210610a995760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610848565b5f80549080805b83811015610b35575f818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610af257805192505b876001600160a01b0316836001600160a01b031603610b2c57868403610b1e5750935061074992505050565b83610b288161231e565b9450505b50600101610aa0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610848565b610b9d611294565b6040515f90339047908381818185875af1925050503d805f8114610bdc576040519150601f19603f3d011682016040523d82523d5f602084013e610be1565b606091505b5050905080610c585760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610848565b50565b61097d83838360405180602001604052805f81525061108d565b5f80548210610cd25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610848565b5090565b610cde611294565b600b610cea8282612381565b5050565b610cf6611294565b80600103610d1b5760088054831515600160a81b0260ff60a81b199091161790555050565b80600203610cea5760088054831515600160b01b0260ff60b01b199091161790555050565b5f610d4a82611657565b5192915050565b5f6001600160a01b038216610dbc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610848565b506001600160a01b03165f908152600460205260409020546001600160801b031690565b610de8611294565b610a295f6117fd565b323314610e105760405162461bcd60e51b815260040161084890612254565b600854600160b01b900460ff16610e395760405162461bcd60e51b81526004016108489061228b565b600a545f54610e499060016122e1565b1115610e675760405162461bcd60e51b8152600401610848906122f4565b335f908152600e602052604090205460ff1615610eb85760405162461bcd60e51b815260206004820152600f60248201526e416c7265616479206d696e7465642160881b6044820152606401610848565b610eff600d54610ec73361184e565b8484808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525061188c92505050565b610f425760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610848565b335f818152600e60205260409020805460ff19166001908117909155610cea91906112c1565b610f70611294565b600a5481610f7c5f5490565b610f8691906122e1565b1115610fa45760405162461bcd60e51b8152600401610848906122f4565b610cea82826112c1565b610fb6611294565b600955565b60606002805461075e9061221c565b336001600160a01b038316036110225760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610848565b335f8181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110988484846112da565b6110a4848484846118a0565b6110c05760405162461bcd60e51b81526004016108489061243d565b50505050565b60605f6110d1611994565b9050806110dd846119a3565b6040516020016110ee9291906124a7565b604051602081830303815290604052915050919050565b3233146111245760405162461bcd60e51b815260040161084890612254565b600854600160a81b900460ff1661114d5760405162461bcd60e51b81526004016108489061228b565b600a545f5461115d9060016122e1565b111561117b5760405162461bcd60e51b8152600401610848906122f4565b335f908152600e602052604090205460ff16156111cc5760405162461bcd60e51b815260206004820152600f60248201526e416c7265616479206d696e7465642160881b6044820152606401610848565b610eff600c54610ec73361184e565b6111e3611294565b806001036111f157600c8290555b80600203610cea5750600d55565b611207611294565b6001600160a01b03811661123057604051631e4fbdf760e01b81525f6004820152602401610848565b610c58816117fd565b5f8281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610a295760405163118cdaa760e01b8152336004820152602401610848565b610cea828260405180602001604052805f815250611a33565b5f6112e482611657565b80519091505f906001600160a01b0316336001600160a01b0316148061131a57503361130f846107df565b6001600160a01b0316145b8061132c5750815161132c9033610678565b9050806113965760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610848565b846001600160a01b0316825f01516001600160a01b0316146114095760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610848565b6001600160a01b03841661146d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610848565b61147b5f84845f0151611239565b6001600160a01b0385165f9081526004602052604081208054600192906114ac9084906001600160801b03166124d1565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386165f90815260046020526040812080546001945090926114f7918591166124f8565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff42811660208085019182525f8981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561157e8460016122e1565b5f818152600360205260409020549091506001600160a01b031661160d576115a6815f541190565b1561160d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081525f878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091525f8082526020820152611674825f541190565b6116d35760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610848565b5f7f00000000000000000000000000000000000000000000000000000000000001f48310611733576117257f00000000000000000000000000000000000000000000000000000000000001f484612518565b6117309060016122e1565b90505b825b81811061179c575f818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561178957949350505050565b50806117948161252b565b915050611735565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610848565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6040516bffffffffffffffffffffffff19606083901b1660208201525f90603401604051602081830303815290604052805190602001209050919050565b5f611898828585611cfc565b949350505050565b5f833b1561198957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118da903390899088908890600401612540565b6020604051808303815f875af1925050508015611914575060408051601f3d908101601f191682019092526119119181019061257c565b60015b61196f573d808015611941576040519150601f19603f3d011682016040523d82523d5f602084013e611946565b606091505b5080515f036119675760405162461bcd60e51b81526004016108489061243d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611898565b506001949350505050565b6060600b805461075e9061221c565b60605f6119af83611d11565b60010190505f8167ffffffffffffffff8111156119ce576119ce611fd7565b6040519080825280601f01601f1916602001820160405280156119f8576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611a0257509392505050565b5f546001600160a01b038416611a955760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610848565b611a9f815f541190565b15611aec5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610848565b7f00000000000000000000000000000000000000000000000000000000000001f4831115611b675760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610848565b6001600160a01b0384165f908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611bc29087906124f8565b6001600160801b03168152602001858360200151611be091906124f8565b6001600160801b039081169091526001600160a01b038088165f8181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611cf25760405182906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611cc15f8884886118a0565b611cdd5760405162461bcd60e51b81526004016108489061243d565b81611ce78161231e565b925050600101611c76565b505f81905561164f565b5f82611d088584611de8565b14949350505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611d4f5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611d7b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611d9957662386f26fc10000830492506010015b6305f5e1008310611db1576305f5e100830492506008015b6127108310611dc557612710830492506004015b60648310611dd7576064830492506002015b600a83106107495760010192915050565b5f81815b8451811015611e2257611e1882868381518110611e0b57611e0b612597565b6020026020010151611e2a565b9150600101611dec565b509392505050565b5f818310611e6157604080516020810184905290810184905260600160405160208183030381529060405280519060200120611e8c565b6040805160208101859052908101839052606001604051602081830303815290604052805190602001205b9392505050565b6001600160e01b031981168114610c58575f80fd5b5f60208284031215611eb8575f80fd5b8135611e8c81611e93565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f611e8c6020830184611ec3565b5f60208284031215611f13575f80fd5b5035919050565b80356001600160a01b0381168114611f30575f80fd5b919050565b5f8060408385031215611f46575f80fd5b611f4f83611f1a565b946020939093013593505050565b80358015158114611f30575f80fd5b5f60208284031215611f7c575f80fd5b611e8c82611f5d565b5f60208284031215611f95575f80fd5b611e8c82611f1a565b5f805f60608486031215611fb0575f80fd5b611fb984611f1a565b9250611fc760208501611f1a565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561200557612005611fd7565b604051601f8501601f19908116603f0116810190828211818310171561202d5761202d611fd7565b81604052809350858152868686011115612045575f80fd5b858560208301375f602087830101525050509392505050565b5f6020828403121561206e575f80fd5b813567ffffffffffffffff811115612084575f80fd5b8201601f81018413612094575f80fd5b61189884823560208401611feb565b5f80604083850312156120b4575f80fd5b611f4f83611f5d565b5f80602083850312156120ce575f80fd5b823567ffffffffffffffff808211156120e5575f80fd5b818501915085601f8301126120f8575f80fd5b813581811115612106575f80fd5b8660208260051b850101111561211a575f80fd5b60209290920196919550909350505050565b5f806040838503121561213d575f80fd5b61214683611f1a565b915061215460208401611f5d565b90509250929050565b5f805f8060808587031215612170575f80fd5b61217985611f1a565b935061218760208601611f1a565b925060408501359150606085013567ffffffffffffffff8111156121a9575f80fd5b8501601f810187136121b9575f80fd5b6121c887823560208401611feb565b91505092959194509250565b5f80604083850312156121e5575f80fd5b6121ee83611f1a565b915061215460208401611f1a565b5f806040838503121561220d575f80fd5b50508035926020909101359150565b600181811c9082168061223057607f821691505b60208210810361224e57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252601f908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163742100604082015260600190565b60208082526022908201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604082015261642160f01b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610749576107496122cd565b60208082526010908201526f185b1c9958591e481b5a5b9d081bdd5d60821b604082015260600190565b5f6001820161232f5761232f6122cd565b5060010190565b601f82111561097d57805f5260205f20601f840160051c8101602085101561235b5750805b601f840160051c820191505b8181101561237a575f8155600101612367565b5050505050565b815167ffffffffffffffff81111561239b5761239b611fd7565b6123af816123a9845461221c565b84612336565b602080601f8311600181146123e2575f84156123cb5750858301515b5f19600386901b1c1916600185901b17855561164f565b5f85815260208120601f198616915b82811015612410578886015182559484019460019091019084016123f1565b508582101561242d57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b5f81518060208401855e5f93019283525090919050565b5f6124bb6124b58386612490565b84612490565b64173539b7b760d91b8152600501949350505050565b6001600160801b038281168282160390808211156124f1576124f16122cd565b5092915050565b6001600160801b038181168382160190808211156124f1576124f16122cd565b81810381811115610749576107496122cd565b5f81612539576125396122cd565b505f190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061257290830184611ec3565b9695505050505050565b5f6020828403121561258c575f80fd5b8151611e8c81611e93565b634e487b7160e01b5f52603260045260245ffdfea264697066735822122039b368894f1b3e15b7c1c59ae549e77b27b7281326d100920854dce1c914389764736f6c63430008190033
Deployed Bytecode Sourcemap
57450:3961:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40761:370;;;;;;;;;;-1:-1:-1;40761:370:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;40761:370:0;;;;;;;;42487:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44012:204::-;;;;;;;;;;-1:-1:-1;44012:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1482:32:1;;;1464:51;;1452:2;1437:18;44012:204:0;1318:203:1;43575:379:0;;;;;;;;;;-1:-1:-1;43575:379:0;;;;;:::i;:::-;;:::i;:::-;;58974:98;;;;;;;;;;-1:-1:-1;58974:98:0;;;;;:::i;:::-;;:::i;57535:37::-;;;;;;;;;;-1:-1:-1;57535:37:0;;;;-1:-1:-1;;;57535:37:0;;;;;;60703:233;;;:::i;51846:246::-;;;;;;;;;;-1:-1:-1;51846:246:0;;;;;:::i;:::-;52026:20;52078:8;;;51846:246;39325:94;;;;;;;;;;-1:-1:-1;39378:7:0;39401:12;39325:94;;;2650:25:1;;;2638:2;2623:18;39325:94:0;2504:177:1;44862:142:0;;;;;;;;;;-1:-1:-1;44862:142:0;;;;;:::i;:::-;;:::i;39953:744::-;;;;;;;;;;-1:-1:-1;39953:744:0;;;;;:::i;:::-;;:::i;61158:250::-;;;;;;;;;;;;;:::i;45067:157::-;;;;;;;;;;-1:-1:-1;45067:157:0;;;;;:::i;:::-;;:::i;39488:177::-;;;;;;;;;;-1:-1:-1;39488:177:0;;;;;:::i;:::-;;:::i;58409:109::-;;;;;;;;;;-1:-1:-1;58409:109:0;;;;;:::i;:::-;;:::i;59080:221::-;;;;;;;;;;-1:-1:-1;59080:221:0;;;;;:::i;:::-;;:::i;42310:118::-;;;;;;;;;;-1:-1:-1;42310:118:0;;;;;:::i;:::-;;:::i;57579:38::-;;;;;;;;;;-1:-1:-1;57579:38:0;;;;-1:-1:-1;;;57579:38:0;;;;;;41187:211;;;;;;;;;;-1:-1:-1;41187:211:0;;;;;:::i;:::-;;:::i;55571:103::-;;;;;;;;;;;;;:::i;59900:453::-;;;;;;;;;;-1:-1:-1;59900:453:0;;;;;:::i;:::-;;:::i;60946:204::-;;;;;;;;;;-1:-1:-1;60946:204:0;;;;;:::i;:::-;;:::i;54896:87::-;;;;;;;;;;-1:-1:-1;54969:6:0;;-1:-1:-1;;;;;54969:6:0;54896:87;;58878:88;;;;;;;;;;-1:-1:-1;58878:88:0;;;;;:::i;:::-;;:::i;42642:98::-;;;;;;;;;;;;;:::i;57669:30::-;;;;;;;;;;;;;;;;44280:274;;;;;;;;;;-1:-1:-1;44280:274:0;;;;;:::i;:::-;;:::i;57846:27::-;;;;;;;;;;;;;;;;57706:29;;;;;;;;;;;;;;;;45287:311;;;;;;;;;;-1:-1:-1;45287:311:0;;;;;:::i;:::-;;:::i;57624:38::-;;;;;;;;;;-1:-1:-1;57624:38:0;;;;-1:-1:-1;;;57624:38:0;;;;;;57883:27;;;;;;;;;;;;;;;;58070:331;;;;;;;;;;-1:-1:-1;58070:331:0;;;;;:::i;:::-;;:::i;59439:453::-;;;;;;;;;;-1:-1:-1;59439:453:0;;;;;:::i;:::-;;:::i;49618:43::-;;;;;;;;;;;;;;;;57920;;;;;;;;;;-1:-1:-1;57920:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;44617:186;;;;;;;;;;-1:-1:-1;44617:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;44762:25:0;;;44739:4;44762:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44617:186;58651:219;;;;;;;;;;-1:-1:-1;58651:219:0;;;;;:::i;:::-;;:::i;55829:220::-;;;;;;;;;;-1:-1:-1;55829:220:0;;;;;:::i;:::-;;:::i;40761:370::-;40888:4;-1:-1:-1;;;;;;40918:40:0;;-1:-1:-1;;;40918:40:0;;:99;;-1:-1:-1;;;;;;;40969:48:0;;-1:-1:-1;;;40969:48:0;40918:99;:160;;;-1:-1:-1;;;;;;;41028:50:0;;-1:-1:-1;;;41028:50:0;40918:160;:207;;;-1:-1:-1;;;;;;;;;;9323:40:0;;;41089:36;40904:221;40761:370;-1:-1:-1;;40761:370:0:o;42487:94::-;42541:13;42570:5;42563:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42487:94;:::o;44012:204::-;44080:7;44104:16;44112:7;45894:4;45924:12;-1:-1:-1;45914:22:0;45837:105;44104:16;44096:74;;;;-1:-1:-1;;;44096:74:0;;7335:2:1;44096:74:0;;;7317:21:1;7374:2;7354:18;;;7347:30;7413:34;7393:18;;;7386:62;-1:-1:-1;;;7464:18:1;;;7457:43;7517:19;;44096:74:0;;;;;;;;;-1:-1:-1;44186:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44186:24:0;;44012:204::o;43575:379::-;43644:13;43660:24;43676:7;43660:15;:24::i;:::-;43644:40;;43705:5;-1:-1:-1;;;;;43699:11:0;:2;-1:-1:-1;;;;;43699:11:0;;43691:58;;;;-1:-1:-1;;;43691:58:0;;7749:2:1;43691:58:0;;;7731:21:1;7788:2;7768:18;;;7761:30;7827:34;7807:18;;;7800:62;-1:-1:-1;;;7878:18:1;;;7871:32;7920:19;;43691:58:0;7547:398:1;43691:58:0;37122:10;-1:-1:-1;;;;;43774:21:0;;;;:62;;-1:-1:-1;43799:37:0;43816:5;37122:10;44617:186;:::i;43799:37::-;43758:153;;;;-1:-1:-1;;;43758:153:0;;8152:2:1;43758:153:0;;;8134:21:1;8191:2;8171:18;;;8164:30;8230:34;8210:18;;;8203:62;8301:27;8281:18;;;8274:55;8346:19;;43758:153:0;7950:421:1;43758:153:0;43920:28;43929:2;43933:7;43942:5;43920:8;:28::i;:::-;43637:317;43575:379;;:::o;58974:98::-;54782:13;:11;:13::i;:::-;59038:17:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;59038:26:0::1;-1:-1:-1::0;;;;59038:26:0;;::::1;::::0;;;::::1;::::0;;58974:98::o;60703:233::-;59352:9;59365:10;59352:23;59344:67;;;;-1:-1:-1;;;59344:67:0;;;;;;;:::i;:::-;60768:17:::1;::::0;-1:-1:-1;;;60768:17:0;::::1;;;60760:64;;;;-1:-1:-1::0;;;60760:64:0::1;;;;;;;:::i;:::-;60864:8;::::0;39378:7;39401:12;60843:17:::1;::::0;60859:1:::1;60843:17;:::i;:::-;:29;;60835:58;;;;-1:-1:-1::0;;;60835:58:0::1;;;;;;;:::i;:::-;60904:24;60914:10;60926:1;60904:9;:24::i;:::-;60703:233::o:0;44862:142::-;44970:28;44980:4;44986:2;44990:7;44970:9;:28::i;39953:744::-;40062:7;40097:16;40107:5;40097:9;:16::i;:::-;40089:5;:24;40081:71;;;;-1:-1:-1;;;40081:71:0;;9948:2:1;40081:71:0;;;9930:21:1;9987:2;9967:18;;;9960:30;10026:34;10006:18;;;9999:62;-1:-1:-1;;;10077:18:1;;;10070:32;10119:19;;40081:71:0;9746:398:1;40081:71:0;40159:22;39401:12;;;40159:22;;40279:350;40303:14;40299:1;:18;40279:350;;;40333:31;40367:14;;;:11;:14;;;;;;;;;40333:48;;;;;;;;;-1:-1:-1;;;;;40333:48:0;;;;;-1:-1:-1;;;40333:48:0;;;;;;;;;;;;40394:28;40390:89;;40455:14;;;-1:-1:-1;40390:89:0;40512:5;-1:-1:-1;;;;;40491:26:0;:17;-1:-1:-1;;;;;40491:26:0;;40487:135;;40549:5;40534:11;:20;40530:59;;-1:-1:-1;40576:1:0;-1:-1:-1;40569:8:0;;-1:-1:-1;;;40569:8:0;40530:59;40599:13;;;;:::i;:::-;;;;40487:135;-1:-1:-1;40319:3:0;;40279:350;;;-1:-1:-1;40635:56:0;;-1:-1:-1;;;40635:56:0;;10491:2:1;40635:56:0;;;10473:21:1;10530:2;10510:18;;;10503:30;10569:34;10549:18;;;10542:62;-1:-1:-1;;;10620:18:1;;;10613:44;10674:19;;40635:56:0;10289:410:1;61158:250:0;54782:13;:11;:13::i;:::-;61225:49:::1;::::0;61207:12:::1;::::0;61225:10:::1;::::0;61248:21:::1;::::0;61207:12;61225:49;61207:12;61225:49;61248:21;61225:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61206:68;;;61307:7;61285:115;;;::::0;-1:-1:-1;;;61285:115:0;;11116:2:1;61285:115:0::1;::::0;::::1;11098:21:1::0;11155:2;11135:18;;;11128:30;11194:34;11174:18;;;11167:62;11265:28;11245:18;;;11238:56;11311:19;;61285:115:0::1;10914:422:1::0;61285:115:0::1;61195:213;61158:250::o:0;45067:157::-;45179:39;45196:4;45202:2;45206:7;45179:39;;;;;;;;;;;;:16;:39::i;39488:177::-;39555:7;39401:12;;39579:5;:21;39571:69;;;;-1:-1:-1;;;39571:69:0;;11543:2:1;39571:69:0;;;11525:21:1;11582:2;11562:18;;;11555:30;11621:34;11601:18;;;11594:62;-1:-1:-1;;;11672:18:1;;;11665:33;11715:19;;39571:69:0;11341:399:1;39571:69:0;-1:-1:-1;39654:5:0;39488:177::o;58409:109::-;54782:13;:11;:13::i;:::-;58483:16:::1;:27;58502:8:::0;58483:16;:27:::1;:::i;:::-;;58409:109:::0;:::o;59080:221::-;54782:13;:11;:13::i;:::-;59157:4:::1;59165:1;59157:9:::0;59153:141:::1;;59182:18;:27:::0;;;::::1;;-1:-1:-1::0;;;59182:27:0::1;-1:-1:-1::0;;;;59182:27:0;;::::1;;::::0;;58483::::1;58409:109:::0;:::o;59153:141::-:1;59230:4;59238:1;59230:9:::0;59226:68:::1;;59255:18;:27:::0;;;::::1;;-1:-1:-1::0;;;59255:27:0::1;-1:-1:-1::0;;;;59255:27:0;;::::1;;::::0;;59080:221;;:::o;42310:118::-;42374:7;42397:20;42409:7;42397:11;:20::i;:::-;:25;;42310:118;-1:-1:-1;;42310:118:0:o;41187:211::-;41251:7;-1:-1:-1;;;;;41275:19:0;;41267:75;;;;-1:-1:-1;;;41267:75:0;;14117:2:1;41267:75:0;;;14099:21:1;14156:2;14136:18;;;14129:30;14195:34;14175:18;;;14168:62;-1:-1:-1;;;14246:18:1;;;14239:41;14297:19;;41267:75:0;13915:407:1;41267:75:0;-1:-1:-1;;;;;;41364:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;41364:27:0;;41187:211::o;55571:103::-;54782:13;:11;:13::i;:::-;55636:30:::1;55663:1;55636:18;:30::i;59900:453::-:0;59352:9;59365:10;59352:23;59344:67;;;;-1:-1:-1;;;59344:67:0;;;;;;;:::i;:::-;59984:18:::1;::::0;-1:-1:-1;;;59984:18:0;::::1;;;59976:65;;;;-1:-1:-1::0;;;59976:65:0::1;;;;;;;:::i;:::-;60081:8;::::0;39378:7;39401:12;60060:17:::1;::::0;60076:1:::1;60060:17;:::i;:::-;:29;;60052:58;;;;-1:-1:-1::0;;;60052:58:0::1;;;;;;;:::i;:::-;60142:10;60130:23;::::0;;;:11:::1;:23;::::0;;;;;::::1;;60129:24;60121:52;;;::::0;-1:-1:-1;;;60121:52:0;;14529:2:1;60121:52:0::1;::::0;::::1;14511:21:1::0;14568:2;14548:18;;;14541:30;-1:-1:-1;;;14587:18:1;;;14580:45;14642:18;;60121:52:0::1;14327:339:1::0;60121:52:0::1;60195:41;60203:7;;60211:17;60217:10;60211:5;:17::i;:::-;60230:5;;60195:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;60195:7:0::1;::::0;-1:-1:-1;;;60195:41:0:i:1;:::-;60187:74;;;::::0;-1:-1:-1;;;60187:74:0;;14873:2:1;60187:74:0::1;::::0;::::1;14855:21:1::0;14912:2;14892:18;;;14885:30;-1:-1:-1;;;14931:18:1;;;14924:50;14991:18;;60187:74:0::1;14671:344:1::0;60187:74:0::1;60289:10;60277:23;::::0;;;:11:::1;:23;::::0;;;;:30;;-1:-1:-1;;60277:30:0::1;60303:4;60277:30:::0;;::::1;::::0;;;60321:24:::1;::::0;60289:10;60321:9:::1;:24::i;60946:204::-:0;54782:13;:11;:13::i;:::-;61072:8:::1;;61054:14;61038:13;39378:7:::0;39401:12;;39325:94;61038:13:::1;:30;;;;:::i;:::-;:42;;61030:71;;;;-1:-1:-1::0;;;61030:71:0::1;;;;;;;:::i;:::-;61112:30;61122:3;61127:14;61112:9;:30::i;58878:88::-:0;54782:13;:11;:13::i;:::-;58942:5:::1;:16:::0;58878:88::o;42642:98::-;42698:13;42727:7;42720:14;;;;;:::i;44280:274::-;37122:10;-1:-1:-1;;;;;44371:24:0;;;44363:63;;;;-1:-1:-1;;;44363:63:0;;15222:2:1;44363:63:0;;;15204:21:1;15261:2;15241:18;;;15234:30;15300:28;15280:18;;;15273:56;15346:18;;44363:63:0;15020:350:1;44363:63:0;37122:10;44435:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;44435:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;44435:53:0;;;;;;;;;;44500:48;;540:41:1;;;44435:42:0;;37122:10;44500:48;;513:18:1;44500:48:0;;;;;;;44280:274;;:::o;45287:311::-;45424:28;45434:4;45440:2;45444:7;45424:9;:28::i;:::-;45475:48;45498:4;45504:2;45508:7;45517:5;45475:22;:48::i;:::-;45459:133;;;;-1:-1:-1;;;45459:133:0;;;;;;;:::i;:::-;45287:311;;;;:::o;58070:331::-;58189:13;58219:28;58250:10;:8;:10::i;:::-;58219:41;;58333:14;58349:19;:8;:17;:19::i;:::-;58316:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58271:122;;;58070:331;;;:::o;59439:453::-;59352:9;59365:10;59352:23;59344:67;;;;-1:-1:-1;;;59344:67:0;;;;;;;:::i;:::-;59523:18:::1;::::0;-1:-1:-1;;;59523:18:0;::::1;;;59515:65;;;;-1:-1:-1::0;;;59515:65:0::1;;;;;;;:::i;:::-;59620:8;::::0;39378:7;39401:12;59599:17:::1;::::0;59615:1:::1;59599:17;:::i;:::-;:29;;59591:58;;;;-1:-1:-1::0;;;59591:58:0::1;;;;;;;:::i;:::-;59681:10;59669:23;::::0;;;:11:::1;:23;::::0;;;;;::::1;;59668:24;59660:52;;;::::0;-1:-1:-1;;;59660:52:0;;14529:2:1;59660:52:0::1;::::0;::::1;14511:21:1::0;14568:2;14548:18;;;14541:30;-1:-1:-1;;;14587:18:1;;;14580:45;14642:18;;59660:52:0::1;14327:339:1::0;59660:52:0::1;59734:41;59742:7;;59750:17;59756:10;59750:5;:17::i;58651:219::-:0;54782:13;:11;:13::i;:::-;58728:4:::1;58735:1;58728:8:::0;58724:65:::1;;58752:7;:15:::0;;;58724:65:::1;58811:4;58819:1;58811:9:::0;58807:56:::1;;-1:-1:-1::0;58836:7:0::1;:15:::0;58651:219::o;55829:220::-;54782:13;:11;:13::i;:::-;-1:-1:-1;;;;;55914:22:0;::::1;55910:93;;55960:31;::::0;-1:-1:-1;;;55960:31:0;;55988:1:::1;55960:31;::::0;::::1;1464:51:1::0;1437:18;;55960:31:0::1;1318:203:1::0;55910:93:0::1;56013:28;56032:8;56013:18;:28::i;49440:172::-:0;49537:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;49537:29:0;-1:-1:-1;;;;;49537:29:0;;;;;;;;;49578:28;;49537:24;;49578:28;;;;;;;49440:172;;;:::o;55061:166::-;54969:6;;-1:-1:-1;;;;;54969:6:0;37122:10;55121:23;55117:103;;55168:40;;-1:-1:-1;;;55168:40:0;;37122:10;55168:40;;;1464:51:1;1437:18;;55168:40:0;1318:203:1;45948:98:0;46013:27;46023:2;46027:8;46013:27;;;;;;;;;;;;:9;:27::i;47805:1529::-;47902:35;47940:20;47952:7;47940:11;:20::i;:::-;48011:18;;47902:58;;-1:-1:-1;47969:22:0;;-1:-1:-1;;;;;47995:34:0;37122:10;-1:-1:-1;;;;;47995:34:0;;:81;;;-1:-1:-1;37122:10:0;48040:20;48052:7;48040:11;:20::i;:::-;-1:-1:-1;;;;;48040:36:0;;47995:81;:142;;;-1:-1:-1;48104:18:0;;48087:50;;37122:10;44617:186;:::i;48087:50::-;47969:169;;48163:17;48147:101;;;;-1:-1:-1;;;48147:101:0;;16644:2:1;48147:101:0;;;16626:21:1;16683:2;16663:18;;;16656:30;16722:34;16702:18;;;16695:62;-1:-1:-1;;;16773:18:1;;;16766:48;16831:19;;48147:101:0;16442:414:1;48147:101:0;48295:4;-1:-1:-1;;;;;48273:26:0;:13;:18;;;-1:-1:-1;;;;;48273:26:0;;48257:98;;;;-1:-1:-1;;;48257:98:0;;17063:2:1;48257:98:0;;;17045:21:1;17102:2;17082:18;;;17075:30;17141:34;17121:18;;;17114:62;-1:-1:-1;;;17192:18:1;;;17185:36;17238:19;;48257:98:0;16861:402:1;48257:98:0;-1:-1:-1;;;;;48370:16:0;;48362:66;;;;-1:-1:-1;;;48362:66:0;;17470:2:1;48362:66:0;;;17452:21:1;17509:2;17489:18;;;17482:30;17548:34;17528:18;;;17521:62;-1:-1:-1;;;17599:18:1;;;17592:35;17644:19;;48362:66:0;17268:401:1;48362:66:0;48537:49;48554:1;48558:7;48567:13;:18;;;48537:8;:49::i;:::-;-1:-1:-1;;;;;48595:18:0;;;;;;:12;:18;;;;;:31;;48625:1;;48595:18;:31;;48625:1;;-1:-1:-1;;;;;48595:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;48595:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48633:16:0;;-1:-1:-1;48633:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;48633:16:0;;:29;;-1:-1:-1;;48633:29:0;;:::i;:::-;;;-1:-1:-1;;;;;48633:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48692:43:0;;;;;;;;-1:-1:-1;;;;;48692:43:0;;;;;;48718:15;48692:43;;;;;;;;;-1:-1:-1;48669:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;48669:66:0;-1:-1:-1;;;;;;48669:66:0;;;;;;;;;;;48985:11;48681:7;-1:-1:-1;48985:11:0;:::i;:::-;49048:1;49007:24;;;:11;:24;;;;;:29;48963:33;;-1:-1:-1;;;;;;49007:29:0;49003:236;;49065:20;49073:11;45894:4;45924:12;-1:-1:-1;45914:22:0;45837:105;49065:20;49061:171;;;49125:97;;;;;;;;49152:18;;-1:-1:-1;;;;;49125:97:0;;;;;;49183:28;;;;49125:97;;;;;;;;;;-1:-1:-1;49098:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;49098:124:0;-1:-1:-1;;;;;;49098:124:0;;;;;;;;;;;;49061:171;49271:7;49267:2;-1:-1:-1;;;;;49252:27:0;49261:4;-1:-1:-1;;;;;49252:27:0;;;;;;;;;;;49286:42;47895:1439;;;47805:1529;;;:::o;41650:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;41767:16:0;41775:7;45894:4;45924:12;-1:-1:-1;45914:22:0;45837:105;41767:16;41759:71;;;;-1:-1:-1;;;41759:71:0;;18283:2:1;41759:71:0;;;18265:21:1;18322:2;18302:18;;;18295:30;18361:34;18341:18;;;18334:62;-1:-1:-1;;;18412:18:1;;;18405:40;18462:19;;41759:71:0;18081:406:1;41759:71:0;41839:26;41887:12;41876:7;:23;41872:93;;41931:22;41941:12;41931:7;:22;:::i;:::-;:26;;41956:1;41931:26;:::i;:::-;41910:47;;41872:93;41993:7;41973:212;42010:18;42002:4;:26;41973:212;;42047:31;42081:17;;;:11;:17;;;;;;;;;42047:51;;;;;;;;;-1:-1:-1;;;;;42047:51:0;;;;;-1:-1:-1;;;42047:51:0;;;;;;;;;;;;42111:28;42107:71;;42159:9;41650:606;-1:-1:-1;;;;41650:606:0:o;42107:71::-;-1:-1:-1;42030:6:0;;;;:::i;:::-;;;;41973:212;;;-1:-1:-1;42193:57:0;;-1:-1:-1;;;42193:57:0;;18968:2:1;42193:57:0;;;18950:21:1;19007:2;18987:18;;;18980:30;19046:34;19026:18;;;19019:62;-1:-1:-1;;;19097:18:1;;;19090:45;19152:19;;42193:57:0;18766:411:1;56209:191:0;56302:6;;;-1:-1:-1;;;;;56319:17:0;;;-1:-1:-1;;;;;;56319:17:0;;;;;;;56352:40;;56302:6;;;56319:17;56302:6;;56352:40;;56283:16;;56352:40;56272:128;56209:191;:::o;60363:126::-;60455:25;;-1:-1:-1;;19331:2:1;19327:15;;;19323:53;60455:25:0;;;19311:66:1;60418:7:0;;19393:12:1;;60455:25:0;;;;;;;;;;;;60445:36;;;;;;60438:43;;60363:126;;;:::o;60497:192::-;60615:4;60644:37;60663:5;60670:4;60676;60644:18;:37::i;:::-;60637:44;60497:192;-1:-1:-1;;;;60497:192:0:o;51151:689::-;51288:4;52026:20;;52078:8;51301:534;;51343:72;;-1:-1:-1;;;51343:72:0;;-1:-1:-1;;;;;51343:36:0;;;;;:72;;37122:10;;51394:4;;51400:7;;51409:5;;51343:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51343:72:0;;;;;;;;-1:-1:-1;;51343:72:0;;;;;;;;;;;;:::i;:::-;;;51330:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51574:6;:13;51591:1;51574:18;51570:215;;51607:61;;-1:-1:-1;;;51607:61:0;;;;;;;:::i;51570:215::-;51753:6;51747:13;51738:6;51734:2;51730:15;51723:38;51330:464;-1:-1:-1;;;;;;51465:55:0;-1:-1:-1;;;51465:55:0;;-1:-1:-1;51458:62:0;;51301:534;-1:-1:-1;51823:4:0;51151:689;;;;;;:::o;58526:117::-;58586:13;58619:16;58612:23;;;;;:::i;33812:718::-;33868:13;33919:14;33936:17;33947:5;33936:10;:17::i;:::-;33956:1;33936:21;33919:38;;33972:20;34006:6;33995:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33995:18:0;-1:-1:-1;33972:41:0;-1:-1:-1;34137:28:0;;;34153:2;34137:28;34194:290;-1:-1:-1;;34226:5:0;-1:-1:-1;;;34363:2:0;34352:14;;34347:32;34226:5;34334:46;34426:2;34417:11;;;-1:-1:-1;34447:21:0;34194:290;34447:21;-1:-1:-1;34505:6:0;33812:718;-1:-1:-1;;;33812:718:0:o;46301:1272::-;46406:20;46429:12;-1:-1:-1;;;;;46456:16:0;;46448:62;;;;-1:-1:-1;;;46448:62:0;;20509:2:1;46448:62:0;;;20491:21:1;20548:2;20528:18;;;20521:30;20587:34;20567:18;;;20560:62;-1:-1:-1;;;20638:18:1;;;20631:31;20679:19;;46448:62:0;20307:397:1;46448:62:0;46647:21;46655:12;45894:4;45924:12;-1:-1:-1;45914:22:0;45837:105;46647:21;46646:22;46638:64;;;;-1:-1:-1;;;46638:64:0;;20911:2:1;46638:64:0;;;20893:21:1;20950:2;20930:18;;;20923:30;20989:31;20969:18;;;20962:59;21038:18;;46638:64:0;20709:353:1;46638:64:0;46729:12;46717:8;:24;;46709:71;;;;-1:-1:-1;;;46709:71:0;;21269:2:1;46709:71:0;;;21251:21:1;21308:2;21288:18;;;21281:30;21347:34;21327:18;;;21320:62;-1:-1:-1;;;21398:18:1;;;21391:32;21440:19;;46709:71:0;21067:398:1;46709:71:0;-1:-1:-1;;;;;46892:16:0;;46859:30;46892:16;;;:12;:16;;;;;;;;;46859:49;;;;;;;;;-1:-1:-1;;;;;46859:49:0;;;;;-1:-1:-1;;;46859:49:0;;;;;;;;;;;46934:119;;;;;;;;46954:19;;46859:49;;46934:119;;;46954:39;;46984:8;;46954:39;:::i;:::-;-1:-1:-1;;;;;46934:119:0;;;;;47037:8;47002:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;46934:119:0;;;;;;-1:-1:-1;;;;;46915:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;46915:138:0;;;;;;;;;;;;47088:43;;;;;;;;;;;47114:15;47088:43;;;;;;;;47060:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;47060:71:0;-1:-1:-1;;;;;;47060:71:0;;;;;;;;;;;;;;;;;;47072:12;;47184:281;47208:8;47204:1;:12;47184:281;;;47237:38;;47262:12;;-1:-1:-1;;;;;47237:38:0;;;47254:1;;47237:38;;47254:1;;47237:38;47302:59;47333:1;47337:2;47341:12;47355:5;47302:22;:59::i;:::-;47284:150;;;;-1:-1:-1;;;47284:150:0;;;;;;;:::i;:::-;47443:14;;;;:::i;:::-;;-1:-1:-1;;47218:3:0;;47184:281;;;-1:-1:-1;47473:12:0;:27;;;47507:60;45287:311;56660:190;56785:4;56838;56809:25;56822:5;56829:4;56809:12;:25::i;:::-;:33;;56660:190;-1:-1:-1;;;;56660:190:0:o;30216:948::-;30269:7;;-1:-1:-1;;;30347:17:0;;30343:106;;-1:-1:-1;;;30385:17:0;;;-1:-1:-1;30431:2:0;30421:12;30343:106;30476:8;30467:5;:17;30463:106;;30514:8;30505:17;;;-1:-1:-1;30551:2:0;30541:12;30463:106;30596:8;30587:5;:17;30583:106;;30634:8;30625:17;;;-1:-1:-1;30671:2:0;30661:12;30583:106;30716:7;30707:5;:16;30703:103;;30753:7;30744:16;;;-1:-1:-1;30789:1:0;30779:11;30703:103;30833:7;30824:5;:16;30820:103;;30870:7;30861:16;;;-1:-1:-1;30906:1:0;30896:11;30820:103;30950:7;30941:5;:16;30937:103;;30987:7;30978:16;;;-1:-1:-1;31023:1:0;31013:11;30937:103;31067:7;31058:5;:16;31054:68;;31105:1;31095:11;31150:6;30216:948;-1:-1:-1;;30216:948:0:o;56858:328::-;56968:7;57016:4;56968:7;57031:118;57055:5;:12;57051:1;:16;57031:118;;;57104:33;57114:12;57128:5;57134:1;57128:8;;;;;;;;:::i;:::-;;;;;;;57104:9;:33::i;:::-;57089:48;-1:-1:-1;57069:3:0;;57031:118;;;-1:-1:-1;57166:12:0;56858:328;-1:-1:-1;;;56858:328:0:o;57219:222::-;57282:7;57326:1;57322;:5;:111;;57410:22;;;;;;21759:19:1;;;21794:12;;;21787:28;;;21831:12;;57410:22:0;;;;;;;;;;;;57400:33;;;;;;57322:111;;;57357:22;;;;;;21759:19:1;;;21794:12;;;21787:28;;;21831:12;;57357:22:0;;;;;;;;;;;;57347:33;;;;;;57322:111;57302:131;57219:222;-1:-1:-1;;;57219:222:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:300::-;645:3;683:5;677:12;710:6;705:3;698:19;766:6;759:4;752:5;748:16;741:4;736:3;732:14;726:47;818:1;811:4;802:6;797:3;793:16;789:27;782:38;881:4;874:2;870:7;865:2;857:6;853:15;849:29;844:3;840:39;836:50;829:57;;;592:300;;;;:::o;897:231::-;1046:2;1035:9;1028:21;1009:4;1066:56;1118:2;1107:9;1103:18;1095:6;1066:56;:::i;1133:180::-;1192:6;1245:2;1233:9;1224:7;1220:23;1216:32;1213:52;;;1261:1;1258;1251:12;1213:52;-1:-1:-1;1284:23:1;;1133:180;-1:-1:-1;1133:180:1:o;1526:173::-;1594:20;;-1:-1:-1;;;;;1643:31:1;;1633:42;;1623:70;;1689:1;1686;1679:12;1623:70;1526:173;;;:::o;1704:254::-;1772:6;1780;1833:2;1821:9;1812:7;1808:23;1804:32;1801:52;;;1849:1;1846;1839:12;1801:52;1872:29;1891:9;1872:29;:::i;:::-;1862:39;1948:2;1933:18;;;;1920:32;;-1:-1:-1;;;1704:254:1:o;1963:160::-;2028:20;;2084:13;;2077:21;2067:32;;2057:60;;2113:1;2110;2103:12;2128:180;2184:6;2237:2;2225:9;2216:7;2212:23;2208:32;2205:52;;;2253:1;2250;2243:12;2205:52;2276:26;2292:9;2276:26;:::i;2313:186::-;2372:6;2425:2;2413:9;2404:7;2400:23;2396:32;2393:52;;;2441:1;2438;2431:12;2393:52;2464:29;2483:9;2464:29;:::i;2686:328::-;2763:6;2771;2779;2832:2;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2871:29;2890:9;2871:29;:::i;:::-;2861:39;;2919:38;2953:2;2942:9;2938:18;2919:38;:::i;:::-;2909:48;;3004:2;2993:9;2989:18;2976:32;2966:42;;2686:328;;;;;:::o;3019:127::-;3080:10;3075:3;3071:20;3068:1;3061:31;3111:4;3108:1;3101:15;3135:4;3132:1;3125:15;3151:632;3216:5;3246:18;3287:2;3279:6;3276:14;3273:40;;;3293:18;;:::i;:::-;3368:2;3362:9;3336:2;3422:15;;-1:-1:-1;;3418:24:1;;;3444:2;3414:33;3410:42;3398:55;;;3468:18;;;3488:22;;;3465:46;3462:72;;;3514:18;;:::i;:::-;3554:10;3550:2;3543:22;3583:6;3574:15;;3613:6;3605;3598:22;3653:3;3644:6;3639:3;3635:16;3632:25;3629:45;;;3670:1;3667;3660:12;3629:45;3720:6;3715:3;3708:4;3700:6;3696:17;3683:44;3775:1;3768:4;3759:6;3751;3747:19;3743:30;3736:41;;;;3151:632;;;;;:::o;3788:451::-;3857:6;3910:2;3898:9;3889:7;3885:23;3881:32;3878:52;;;3926:1;3923;3916:12;3878:52;3966:9;3953:23;3999:18;3991:6;3988:30;3985:50;;;4031:1;4028;4021:12;3985:50;4054:22;;4107:4;4099:13;;4095:27;-1:-1:-1;4085:55:1;;4136:1;4133;4126:12;4085:55;4159:74;4225:7;4220:2;4207:16;4202:2;4198;4194:11;4159:74;:::i;4244:248::-;4309:6;4317;4370:2;4358:9;4349:7;4345:23;4341:32;4338:52;;;4386:1;4383;4376:12;4338:52;4409:26;4425:9;4409:26;:::i;4497:615::-;4583:6;4591;4644:2;4632:9;4623:7;4619:23;4615:32;4612:52;;;4660:1;4657;4650:12;4612:52;4700:9;4687:23;4729:18;4770:2;4762:6;4759:14;4756:34;;;4786:1;4783;4776:12;4756:34;4824:6;4813:9;4809:22;4799:32;;4869:7;4862:4;4858:2;4854:13;4850:27;4840:55;;4891:1;4888;4881:12;4840:55;4931:2;4918:16;4957:2;4949:6;4946:14;4943:34;;;4973:1;4970;4963:12;4943:34;5026:7;5021:2;5011:6;5008:1;5004:14;5000:2;4996:23;4992:32;4989:45;4986:65;;;5047:1;5044;5037:12;4986:65;5078:2;5070:11;;;;;5100:6;;-1:-1:-1;4497:615:1;;-1:-1:-1;;;;4497:615:1:o;5117:254::-;5182:6;5190;5243:2;5231:9;5222:7;5218:23;5214:32;5211:52;;;5259:1;5256;5249:12;5211:52;5282:29;5301:9;5282:29;:::i;:::-;5272:39;;5330:35;5361:2;5350:9;5346:18;5330:35;:::i;:::-;5320:45;;5117:254;;;;;:::o;5558:667::-;5653:6;5661;5669;5677;5730:3;5718:9;5709:7;5705:23;5701:33;5698:53;;;5747:1;5744;5737:12;5698:53;5770:29;5789:9;5770:29;:::i;:::-;5760:39;;5818:38;5852:2;5841:9;5837:18;5818:38;:::i;:::-;5808:48;;5903:2;5892:9;5888:18;5875:32;5865:42;;5958:2;5947:9;5943:18;5930:32;5985:18;5977:6;5974:30;5971:50;;;6017:1;6014;6007:12;5971:50;6040:22;;6093:4;6085:13;;6081:27;-1:-1:-1;6071:55:1;;6122:1;6119;6112:12;6071:55;6145:74;6211:7;6206:2;6193:16;6188:2;6184;6180:11;6145:74;:::i;:::-;6135:84;;;5558:667;;;;;;;:::o;6230:260::-;6298:6;6306;6359:2;6347:9;6338:7;6334:23;6330:32;6327:52;;;6375:1;6372;6365:12;6327:52;6398:29;6417:9;6398:29;:::i;:::-;6388:39;;6446:38;6480:2;6469:9;6465:18;6446:38;:::i;6495:248::-;6563:6;6571;6624:2;6612:9;6603:7;6599:23;6595:32;6592:52;;;6640:1;6637;6630:12;6592:52;-1:-1:-1;;6663:23:1;;;6733:2;6718:18;;;6705:32;;-1:-1:-1;6495:248:1:o;6748:380::-;6827:1;6823:12;;;;6870;;;6891:61;;6945:4;6937:6;6933:17;6923:27;;6891:61;6998:2;6990:6;6987:14;6967:18;6964:38;6961:161;;7044:10;7039:3;7035:20;7032:1;7025:31;7079:4;7076:1;7069:15;7107:4;7104:1;7097:15;6961:161;;6748:380;;;:::o;8376:355::-;8578:2;8560:21;;;8617:2;8597:18;;;8590:30;8656:33;8651:2;8636:18;;8629:61;8722:2;8707:18;;8376:355::o;8736:398::-;8938:2;8920:21;;;8977:2;8957:18;;;8950:30;9016:34;9011:2;8996:18;;8989:62;-1:-1:-1;;;9082:2:1;9067:18;;9060:32;9124:3;9109:19;;8736:398::o;9139:127::-;9200:10;9195:3;9191:20;9188:1;9181:31;9231:4;9228:1;9221:15;9255:4;9252:1;9245:15;9271:125;9336:9;;;9357:10;;;9354:36;;;9370:18;;:::i;9401:340::-;9603:2;9585:21;;;9642:2;9622:18;;;9615:30;-1:-1:-1;;;9676:2:1;9661:18;;9654:46;9732:2;9717:18;;9401:340::o;10149:135::-;10188:3;10209:17;;;10206:43;;10229:18;;:::i;:::-;-1:-1:-1;10276:1:1;10265:13;;10149:135::o;11871:518::-;11973:2;11968:3;11965:11;11962:421;;;12009:5;12006:1;11999:16;12053:4;12050:1;12040:18;12123:2;12111:10;12107:19;12104:1;12100:27;12094:4;12090:38;12159:4;12147:10;12144:20;12141:47;;;-1:-1:-1;12182:4:1;12141:47;12237:2;12232:3;12228:12;12225:1;12221:20;12215:4;12211:31;12201:41;;12292:81;12310:2;12303:5;12300:13;12292:81;;;12369:1;12355:16;;12336:1;12325:13;12292:81;;;12296:3;;11871:518;;;:::o;12565:1345::-;12691:3;12685:10;12718:18;12710:6;12707:30;12704:56;;;12740:18;;:::i;:::-;12769:97;12859:6;12819:38;12851:4;12845:11;12819:38;:::i;:::-;12813:4;12769:97;:::i;:::-;12921:4;;12978:2;12967:14;;12995:1;12990:663;;;;13697:1;13714:6;13711:89;;;-1:-1:-1;13766:19:1;;;13760:26;13711:89;-1:-1:-1;;12522:1:1;12518:11;;;12514:24;12510:29;12500:40;12546:1;12542:11;;;12497:57;13813:81;;12960:944;;12990:663;11818:1;11811:14;;;11855:4;11842:18;;-1:-1:-1;;13026:20:1;;;13144:236;13158:7;13155:1;13152:14;13144:236;;;13247:19;;;13241:26;13226:42;;13339:27;;;;13307:1;13295:14;;;;13174:19;;13144:236;;;13148:3;13408:6;13399:7;13396:19;13393:201;;;13469:19;;;13463:26;-1:-1:-1;;13552:1:1;13548:14;;;13564:3;13544:24;13540:37;13536:42;13521:58;13506:74;;13393:201;-1:-1:-1;;;;;13640:1:1;13624:14;;;13620:22;13607:36;;-1:-1:-1;12565:1345:1:o;15375:415::-;15577:2;15559:21;;;15616:2;15596:18;;;15589:30;15655:34;15650:2;15635:18;;15628:62;-1:-1:-1;;;15721:2:1;15706:18;;15699:49;15780:3;15765:19;;15375:415::o;15795:212::-;15837:3;15875:5;15869:12;15919:6;15912:4;15905:5;15901:16;15896:3;15890:36;15981:1;15945:16;;15970:13;;;-1:-1:-1;15945:16:1;;15795:212;-1:-1:-1;15795:212:1:o;16012:425::-;16292:3;16320:57;16346:30;16372:3;16364:6;16346:30;:::i;:::-;16338:6;16320:57;:::i;:::-;-1:-1:-1;;;16386:19:1;;16429:1;16421:10;;16012:425;-1:-1:-1;;;;16012:425:1:o;17674:200::-;-1:-1:-1;;;;;17810:10:1;;;17798;;;17794:27;;17833:12;;;17830:38;;;17848:18;;:::i;:::-;17830:38;17674:200;;;;:::o;17879:197::-;-1:-1:-1;;;;;18001:10:1;;;18013;;;17997:27;;18036:11;;;18033:37;;;18050:18;;:::i;18492:128::-;18559:9;;;18580:11;;;18577:37;;;18594:18;;:::i;18625:136::-;18664:3;18692:5;18682:39;;18701:18;;:::i;:::-;-1:-1:-1;;;18737:18:1;;18625:136::o;19416:500::-;-1:-1:-1;;;;;19685:15:1;;;19667:34;;19737:15;;19732:2;19717:18;;19710:43;19784:2;19769:18;;19762:34;;;19832:3;19827:2;19812:18;;19805:31;;;19610:4;;19853:57;;19890:19;;19882:6;19853:57;:::i;:::-;19845:65;19416:500;-1:-1:-1;;;;;;19416:500:1:o;19921:249::-;19990:6;20043:2;20031:9;20022:7;20018:23;20014:32;20011:52;;;20059:1;20056;20049:12;20011:52;20091:9;20085:16;20110:30;20134:5;20110:30;:::i;21470:127::-;21531:10;21526:3;21522:20;21519:1;21512:31;21562:4;21559:1;21552:15;21586:4;21583:1;21576:15
Swarm Source
ipfs://39b368894f1b3e15b7c1c59ae549e77b27b7281326d100920854dce1c9143897
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.