Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
1,000 AVBN
Holders
256
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 AVBNLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FellowshipArtCollection
Compiler Version
v0.8.23+commit.f704f362
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-01-24 */ // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // 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/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/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/Context.sol // OpenZeppelin Contracts (last updated v5.0.0) (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; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.20; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors { using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; mapping(uint256 tokenId => address) private _owners; mapping(address owner => uint256) private _balances; mapping(uint256 tokenId => address) private _tokenApprovals; mapping(address owner => mapping(address operator => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual returns (uint256) { if (owner == address(0)) { revert ERC721InvalidOwner(address(0)); } return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual returns (address) { return _requireOwned(tokenId); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual returns (string memory) { _requireOwned(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string.concat(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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual { _approve(to, tokenId, _msgSender()); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual returns (address) { _requireOwned(tokenId); return _getApproved(tokenId); } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here. address previousOwner = _update(to, tokenId, _msgSender()); if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual { transferFrom(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist * * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`. */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted. */ function _getApproved(uint256 tokenId) internal view virtual returns (address) { return _tokenApprovals[tokenId]; } /** * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in * particular (ignoring whether it is owned by `owner`). * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) { return spender != address(0) && (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender); } /** * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner. * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets * the `spender` for the specific `tokenId`. * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual { if (!_isAuthorized(owner, spender, tokenId)) { if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } else { revert ERC721InsufficientApproval(spender, tokenId); } } } /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that * a uint256 would ever overflow from increments when these increments are bounded to uint128 values. * * WARNING: Increasing an account's balance using this function tends to be paired with an override of the * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership * remain consistent with one another. */ function _increaseBalance(address account, uint128 value) internal virtual { unchecked { _balances[account] += value; } } /** * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update. * * The `auth` argument is optional. If the value passed is non 0, then this function will check that * `auth` is either the owner of the token, or approved to operate on the token (by the owner). * * Emits a {Transfer} event. * * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}. */ function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) { address from = _ownerOf(tokenId); // Perform (optional) operator check if (auth != address(0)) { _checkAuthorized(from, auth, tokenId); } // Execute the update if (from != address(0)) { // Clear approval. No need to re-authorize or emit the Approval event _approve(address(0), tokenId, address(0), false); unchecked { _balances[from] -= 1; } } if (to != address(0)) { unchecked { _balances[to] += 1; } } _owners[tokenId] = to; emit Transfer(from, to, tokenId); return from; } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner != address(0)) { revert ERC721InvalidSender(address(0)); } } /** * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); _checkOnERC721Received(address(0), to, tokenId, data); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal { address previousOwner = _update(address(0), tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } else if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients * are aware of the ERC721 standard to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is like {safeTransferFrom} in the sense that it invokes * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `tokenId` token must exist and be owned by `from`. * - `to` cannot be the zero address. * - `from` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId) internal { _safeTransfer(from, to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Approve `to` to operate on `tokenId` * * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is * either the owner of the token, or approved to operate on all tokens held by this owner. * * Emits an {Approval} event. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address to, uint256 tokenId, address auth) internal { _approve(to, tokenId, auth, true); } /** * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not * emitted in the context of transfers. */ function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual { // Avoid reading the owner unless necessary if (emitEvent || auth != address(0)) { address owner = _requireOwned(tokenId); // We do not use _isAuthorized because single-token approvals should not be able to call approve if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) { revert ERC721InvalidApprover(auth); } if (emitEvent) { emit Approval(owner, to, tokenId); } } _tokenApprovals[tokenId] = to; } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Requirements: * - operator can't be the address zero. * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { if (operator == address(0)) { revert ERC721InvalidOperator(operator); } _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned). * Returns the owner. * * Overrides to ownership logic should be done to {_ownerOf}. */ function _requireOwned(uint256 tokenId) internal view returns (address) { address owner = _ownerOf(tokenId); if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } return owner; } /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the * recipient doesn't accept the token transfer. 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 */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private { if (to.code.length > 0) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { if (retval != IERC721Receiver.onERC721Received.selector) { revert ERC721InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { revert ERC721InvalidReceiver(to); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } } } // 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: projects/niceaunties/art.sol // Copyright (c) 2023 Fellowship pragma solidity ^0.8.17; /// @title Token Base /// @notice Shared logic for token contracts contract FellowshipArtCollection is ERC721, Ownable { uint256 private immutable MAX_SUPPLY; address public royaltyReceiver; address public minter; address public metadataContract; uint256 public royaltyFraction; uint256 public royaltyDenominator = 100; /// @notice Count of valid NFTs tracked by this contract uint256 public totalSupply; /// @notice Return the baseURI used for computing `tokenURI` values string public baseURI; error OnlyMinter(); /// @dev This event emits when the metadata of a token is changed. Anyone aware of ERC-4906 can update cached /// attributes related to a given `tokenId`. event MetadataUpdate(uint256 tokenId); /// @dev This event emits when the metadata of a range of tokens is changed. Anyone aware of ERC-4906 can update /// cached attributes for tokens in the designated range. event BatchMetadataUpdate(uint256 fromTokenId, uint256 toTokenId); constructor( string memory name, string memory symbol, string memory baseURI_, uint256 maxSupply, address royaltyReceiver_, uint256 royaltyPercent ) ERC721(name, symbol) Ownable(msg.sender) { // CHECKS inputs require(maxSupply > 0, "Max supply must not be zero"); require(royaltyReceiver_ != address(0), "Royalty receiver must not be the zero address"); require(royaltyPercent <= 100, "Royalty fraction must not be greater than 100%"); // EFFECTS MAX_SUPPLY = maxSupply; baseURI = baseURI_; royaltyReceiver = royaltyReceiver_; royaltyFraction = royaltyPercent; } modifier onlyMinter() { if (msg.sender != minter) revert OnlyMinter(); _; } /// @inheritdoc Ownable function owner() public view virtual override(Ownable) returns (address) { return Ownable.owner(); } // MINTER FUNCTIONS /// @notice Mint an unclaimed token to the given address /// @dev Can only be called by the `minter` address /// @param to The new token owner that will receive the minted token /// @param tokenId The token being claimed. Reverts if invalid or already claimed. function mint(address to, uint256 tokenId) public onlyMinter { // CHECKS inputs require(tokenId > 0 && tokenId <= MAX_SUPPLY, "Invalid token ID"); // CHECKS + EFFECTS (not _safeMint, so no interactions) _mint(to, tokenId); // More EFFECTS unchecked { totalSupply++; } } function mintRange(address to, uint256 idStart, uint256 idEnd) external onlyMinter { require(idStart > 0 && idEnd <= MAX_SUPPLY, "Invalid token range"); require(idStart <= idEnd, "Start ID must be less than or equal to end ID"); for (uint256 tokenId = idStart; tokenId <= idEnd; tokenId++) { mint(to, tokenId); } } // OWNER FUNCTIONS /// @notice Set the `minter` address /// @dev Can only be called by the contract `owner` function setMinter(address minter_) external onlyOwner { minter = minter_; } /// @notice Set the `royaltyReceiver` address /// @dev Can only be called by the contract `owner` function setRoyaltyReceiver(address royaltyReceiver_) external onlyOwner { // CHECKS inputs require(royaltyReceiver_ != address(0), "Royalty receiver must not be the zero address"); // EFFECTS royaltyReceiver = royaltyReceiver_; } /// @notice Update the royalty fraction /// @dev Can only be called by the contract `owner` function setRoyaltyFraction(uint256 royaltyFraction_, uint256 royaltyDenominator_) external onlyOwner { // CHECKS inputss require(royaltyDenominator_ != 0, "Royalty denominator must not be zero"); require(royaltyFraction_ <= royaltyDenominator_, "Royalty fraction must not be greater than 100%"); // EFFECTS royaltyFraction = royaltyFraction_; royaltyDenominator = royaltyDenominator_; } /// @notice Update the baseURI for all metadata /// @dev Can only be called by the contract `owner`. Emits an ERC-4906 event. /// @param baseURI_ The new URI base. When specified, token URIs are created by concatenating the baseURI, /// token ID, and ".json". function updateBaseURI(string calldata baseURI_) external onlyOwner { // CHECKS inputs require(bytes(baseURI_).length > 0, "New base URI must be provided"); // EFFECTS baseURI = baseURI_; metadataContract = address(0); emit BatchMetadataUpdate(1, MAX_SUPPLY); } /// @notice Delegate all `tokenURI` calls to another contract /// @dev Can only be called by the contract `owner`. Emits an ERC-4906 event. /// @param delegate The contract that will handle `tokenURI` responses function delegateTokenURIs(address delegate) external onlyOwner { // CHECKS inputs require(delegate != address(0), "New metadata delegate must not be the zero address"); require(delegate.code.length > 0, "New metadata delegate must be a contract"); // EFFECTS baseURI = ""; metadataContract = delegate; emit BatchMetadataUpdate(1, MAX_SUPPLY); } // VIEW FUNCTIONS /// @notice The URI for the given token /// @dev Throws if `tokenId` is not valid or has not been minted function tokenURI(uint256 tokenId) public view override returns (string memory) { _requireOwned(tokenId); if (bytes(baseURI).length > 0) { return string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json")); } if (address(metadataContract) != address(0)) { return IERC721Metadata(metadataContract).tokenURI(tokenId); } revert("tokenURI not configured"); } /// @notice Calculate how much royalty is owed and to whom /// @param salePrice - the sale price of the NFT asset /// @return receiver - address of where the royalty payment should be sent /// @return royaltyAmount - the royalty payment amount for salePrice function royaltyInfo(uint256, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount) { receiver = royaltyReceiver; // Use OpenZeppelin math utils for full precision multiply and divide without overflow royaltyAmount = Math.mulDiv(salePrice, royaltyFraction, royaltyDenominator, Math.Rounding.Ceil); } /// @notice Query if a contract implements an interface /// @dev Interface identification is specified in ERC-165. This function uses less than 30,000 gas. /// @param interfaceId The interface identifier, as specified in ERC-165 /// @return `true` if the contract implements `interfaceID` and `interfaceID` is not 0xffffffff, `false` otherwise function supportsInterface(bytes4 interfaceId) public pure virtual override returns (bool) { return interfaceId == 0x80ac58cd || // ERC-721 Non-Fungible Token Standard interfaceId == 0x5b5e139f || // ERC-721 Non-Fungible Token Standard - metadata extension interfaceId == 0x2a55205a || // ERC-2981 NFT Royalty Standard interfaceId == 0x49064906 || // ERC-4906 Metadata Update Extension interfaceId == 0x7f5828d0 || // ERC-173 Contract Ownership Standard interfaceId == 0x01ffc9a7; // ERC-165 Standard Interface Detection } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"address","name":"royaltyReceiver_","type":"address"},{"internalType":"uint256","name":"royaltyPercent","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[],"name":"MathOverflowedMulDiv","type":"error"},{"inputs":[],"name":"OnlyMinter","type":"error"},{"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":false,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegate","type":"address"}],"name":"delegateTokenURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"idStart","type":"uint256"},{"internalType":"uint256","name":"idEnd","type":"uint256"}],"name":"mintRange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyFraction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter_","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"royaltyFraction_","type":"uint256"},{"internalType":"uint256","name":"royaltyDenominator_","type":"uint256"}],"name":"setRoyaltyFraction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"royaltyReceiver_","type":"address"}],"name":"setRoyaltyReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526064600b5534801562000015575f80fd5b506040516200240f3803806200240f833981016040819052620000389162000313565b3386865f6200004883826200045c565b5060016200005782826200045c565b5050506001600160a01b0381166200008957604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000948162000201565b505f8311620000e65760405162461bcd60e51b815260206004820152601b60248201527f4d617820737570706c79206d757374206e6f74206265207a65726f0000000000604482015260640162000080565b6001600160a01b038216620001545760405162461bcd60e51b815260206004820152602d60248201527f526f79616c7479207265636569766572206d757374206e6f742062652074686560448201526c207a65726f206164647265737360981b606482015260840162000080565b6064811115620001be5760405162461bcd60e51b815260206004820152602e60248201527f526f79616c7479206672616374696f6e206d757374206e6f742062652067726560448201526d61746572207468616e203130302560901b606482015260840162000080565b6080839052600d620001d185826200045c565b50600780546001600160a01b0319166001600160a01b039390931692909217909155600a55506200052892505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011262000276575f80fd5b81516001600160401b038082111562000293576200029362000252565b604051601f8301601f19908116603f01168101908282118183101715620002be57620002be62000252565b8160405283815260209250866020858801011115620002db575f80fd5b5f91505b83821015620002fe5785820183015181830184015290820190620002df565b5f602085830101528094505050505092915050565b5f805f805f8060c0878903121562000329575f80fd5b86516001600160401b038082111562000340575f80fd5b6200034e8a838b0162000266565b9750602089015191508082111562000364575f80fd5b620003728a838b0162000266565b9650604089015191508082111562000388575f80fd5b506200039789828a0162000266565b606089015160808a0151919650945090506001600160a01b0381168114620003bd575f80fd5b8092505060a087015190509295509295509295565b600181811c90821680620003e757607f821691505b6020821081036200040657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200045757805f5260205f20601f840160051c81016020851015620004335750805b601f840160051c820191505b8181101562000454575f81556001016200043f565b50505b505050565b81516001600160401b0381111562000478576200047862000252565b6200049081620004898454620003d2565b846200040c565b602080601f831160018114620004c6575f8415620004ae5750858301515b5f19600386901b1c1916600185901b17855562000520565b5f85815260208120601f198616915b82811015620004f657888601518255948401946001909101908401620004d5565b50858210156200051457878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b608051611eb9620005565f395f81816106d10152818161081101528181610ac20152610cc40152611eb95ff3fe608060405234801561000f575f80fd5b50600436106101dc575f3560e01c8063715018a611610109578063c87b56dd1161009e578063ecededad1161006e578063ecededad146103ff578063f2fde38b14610412578063fca3b5aa14610425578063fd8d7ed314610438575f80fd5b8063c87b56dd146103bd578063e7dee99f146103d0578063e985e9c5146103d9578063ea8876fa146103ec575f80fd5b806395d89b41116100d957806395d89b411461037c5780639fbc871314610384578063a22cb46514610397578063b88d4fde146103aa575f80fd5b8063715018a6146103465780638da5cb5b1461034e5780638dc251e314610356578063931688cb14610369575f80fd5b806323b872dd1161017f57806342842e0e1161014f57806342842e0e146103055780636352211e146103185780636c0360eb1461032b57806370a0823114610333575f80fd5b806323b872dd1461029a5780632a55205a146102ad57806335209821146102df57806340c10f19146102f2575f80fd5b8063081812fc116101ba578063081812fc14610248578063095ea7b31461025b578063113b98e01461027057806318160ddd14610283575f80fd5b806301ffc9a7146101e057806306fdde0314610208578063075461721461021d575b5f80fd5b6101f36101ee366004611753565b610441565b60405190151581526020015b60405180910390f35b6102106104e3565b6040516101ff91906117bb565b600854610230906001600160a01b031681565b6040516001600160a01b0390911681526020016101ff565b6102306102563660046117cd565b610572565b61026e6102693660046117ff565b610599565b005b61026e61027e366004611827565b6105a8565b61028c600c5481565b6040519081526020016101ff565b61026e6102a8366004611840565b610723565b6102c06102bb366004611879565b6107ac565b604080516001600160a01b0390931683526020830191909152016101ff565b600954610230906001600160a01b031681565b61026e6103003660046117ff565b6107da565b61026e610313366004611840565b61088a565b6102306103263660046117cd565b6108a9565b6102106108b3565b61028c610341366004611827565b61093f565b61026e610984565b610230610997565b61026e610364366004611827565b6109af565b61026e610377366004611899565b610a45565b610210610b15565b600754610230906001600160a01b031681565b61026e6103a5366004611905565b610b24565b61026e6103b83660046119aa565b610b2f565b6102106103cb3660046117cd565b610b46565b61028c600a5481565b6101f36103e7366004611a4e565b610c60565b61026e6103fa366004611a76565b610c8d565b61026e61040d366004611879565b610db4565b61026e610420366004611827565b610e89565b61026e610433366004611827565b610ec6565b61028c600b5481565b5f6380ac58cd60e01b6001600160e01b0319831614806104715750635b5e139f60e01b6001600160e01b03198316145b8061048c575063152a902d60e11b6001600160e01b03198316145b806104a75750632483248360e11b6001600160e01b03198316145b806104c257506307f5828d60e41b6001600160e01b03198316145b806104dd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60605f80546104f190611aa6565b80601f016020809104026020016040519081016040528092919081815260200182805461051d90611aa6565b80156105685780601f1061053f57610100808354040283529160200191610568565b820191905f5260205f20905b81548152906001019060200180831161054b57829003601f168201915b5050505050905090565b5f61057c82610ef0565b505f828152600460205260409020546001600160a01b03166104dd565b6105a4828233610f28565b5050565b6105b0610f35565b6001600160a01b0381166106265760405162461bcd60e51b815260206004820152603260248201527f4e6577206d657461646174612064656c6567617465206d757374206e6f7420626044820152716520746865207a65726f206164647265737360701b60648201526084015b60405180910390fd5b5f816001600160a01b03163b116106905760405162461bcd60e51b815260206004820152602860248201527f4e6577206d657461646174612064656c6567617465206d75737420626520612060448201526718dbdb9d1c9858dd60c21b606482015260840161061d565b60408051602081019091525f8152600d906106ab9082611b22565b50600980546001600160a01b0319166001600160a01b03831617905560408051600181527f000000000000000000000000000000000000000000000000000000000000000060208201527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a150565b6001600160a01b03821661074c57604051633250574960e11b81525f600482015260240161061d565b5f610758838333610f67565b9050836001600160a01b0316816001600160a01b0316146107a6576040516364283d7b60e01b81526001600160a01b038086166004830152602482018490528216604482015260640161061d565b50505050565b600754600a54600b546001600160a01b03909216915f916107d191859190600161105b565b90509250929050565b6008546001600160a01b0316331461080557604051639cdc2ed560e01b815260040160405180910390fd5b5f8111801561083457507f00000000000000000000000000000000000000000000000000000000000000008111155b6108735760405162461bcd60e51b815260206004820152601060248201526f125b9d985b1a59081d1bdad95b88125160821b604482015260640161061d565b61087d82826110aa565b5050600c80546001019055565b6108a483838360405180602001604052805f815250610b2f565b505050565b5f6104dd82610ef0565b600d80546108c090611aa6565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec90611aa6565b80156109375780601f1061090e57610100808354040283529160200191610937565b820191905f5260205f20905b81548152906001019060200180831161091a57829003601f168201915b505050505081565b5f6001600160a01b038216610969576040516322718ad960e21b81525f600482015260240161061d565b506001600160a01b03165f9081526003602052604090205490565b61098c610f35565b6109955f61110b565b565b5f6109aa6006546001600160a01b031690565b905090565b6109b7610f35565b6001600160a01b038116610a235760405162461bcd60e51b815260206004820152602d60248201527f526f79616c7479207265636569766572206d757374206e6f742062652074686560448201526c207a65726f206164647265737360981b606482015260840161061d565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610a4d610f35565b80610a9a5760405162461bcd60e51b815260206004820152601d60248201527f4e6577206261736520555249206d7573742062652070726f7669646564000000604482015260640161061d565b600d610aa7828483611be2565b50600980546001600160a01b031916905560408051600181527f000000000000000000000000000000000000000000000000000000000000000060208201527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a15050565b6060600180546104f190611aa6565b6105a433838361115c565b610b3a848484610723565b6107a6848484846111fa565b6060610b5182610ef0565b505f600d8054610b6090611aa6565b90501115610b9a57600d610b7383611320565b604051602001610b84929190611c9c565b6040516020818303038152906040529050919050565b6009546001600160a01b031615610c185760095460405163c87b56dd60e01b8152600481018490526001600160a01b039091169063c87b56dd906024015f60405180830381865afa158015610bf1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526104dd9190810190611d2f565b60405162461bcd60e51b815260206004820152601760248201527f746f6b656e555249206e6f7420636f6e66696775726564000000000000000000604482015260640161061d565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610cb857604051639cdc2ed560e01b815260040160405180910390fd5b5f82118015610ce757507f00000000000000000000000000000000000000000000000000000000000000008111155b610d295760405162461bcd60e51b8152602060048201526013602482015272496e76616c696420746f6b656e2072616e676560681b604482015260640161061d565b80821115610d8f5760405162461bcd60e51b815260206004820152602d60248201527f5374617274204944206d757374206265206c657373207468616e206f7220657160448201526c1d585b081d1bc8195b99081251609a1b606482015260840161061d565b815b8181116107a657610da284826107da565b80610dac81611dac565b915050610d91565b610dbc610f35565b805f03610e175760405162461bcd60e51b8152602060048201526024808201527f526f79616c74792064656e6f6d696e61746f72206d757374206e6f74206265206044820152637a65726f60e01b606482015260840161061d565b80821115610e7e5760405162461bcd60e51b815260206004820152602e60248201527f526f79616c7479206672616374696f6e206d757374206e6f742062652067726560448201526d61746572207468616e203130302560901b606482015260840161061d565b600a91909155600b55565b610e91610f35565b6001600160a01b038116610eba57604051631e4fbdf760e01b81525f600482015260240161061d565b610ec38161110b565b50565b610ece610f35565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b5f818152600260205260408120546001600160a01b0316806104dd57604051637e27328960e01b81526004810184905260240161061d565b6108a483838360016113b0565b33610f3e610997565b6001600160a01b0316146109955760405163118cdaa760e01b815233600482015260240161061d565b5f828152600260205260408120546001600160a01b0390811690831615610f9357610f938184866114b4565b6001600160a01b03811615610fcd57610fae5f855f806113b0565b6001600160a01b0381165f90815260036020526040902080545f190190555b6001600160a01b03851615610ffb576001600160a01b0385165f908152600360205260409020805460010190555b5f8481526002602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a490505b9392505050565b5f80611068868686611518565b9050611073836115d7565b801561108e57505f848061108957611089611dc4565b868809115b156110a15761109e600182611dd8565b90505b95945050505050565b6001600160a01b0382166110d357604051633250574960e11b81525f600482015260240161061d565b5f6110df83835f610f67565b90506001600160a01b038116156108a4576040516339e3563760e11b81525f600482015260240161061d565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03821661118e57604051630b61174360e31b81526001600160a01b038316600482015260240161061d565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383163b156107a657604051630a85bd0160e11b81526001600160a01b0384169063150b7a029061123c903390889087908790600401611deb565b6020604051808303815f875af1925050508015611276575060408051601f3d908101601f1916820190925261127391810190611e27565b60015b6112dd573d8080156112a3576040519150601f19603f3d011682016040523d82523d5f602084013e6112a8565b606091505b5080515f036112d557604051633250574960e11b81526001600160a01b038516600482015260240161061d565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b1461131957604051633250574960e11b81526001600160a01b038516600482015260240161061d565b5050505050565b60605f61132c83611603565b60010190505f8167ffffffffffffffff81111561134b5761134b61193e565b6040519080825280601f01601f191660200182016040528015611375576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461137f57509392505050565b80806113c457506001600160a01b03821615155b15611485575f6113d384610ef0565b90506001600160a01b038316158015906113ff5750826001600160a01b0316816001600160a01b031614155b801561141257506114108184610c60565b155b1561143b5760405163a9fbf51f60e01b81526001600160a01b038416600482015260240161061d565b81156114835783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b50505f90815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6114bf8383836116da565b6108a4576001600160a01b0383166114ed57604051637e27328960e01b81526004810182905260240161061d565b60405163177e802f60e01b81526001600160a01b03831660048201526024810182905260440161061d565b5f838302815f1985870982811083820303915050805f0361154c5783828161154257611542611dc4565b0492505050611054565b80841161156c5760405163227bc15360e01b815260040160405180910390fd5b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b5f60028260038111156115ec576115ec611e42565b6115f69190611e56565b60ff166001149050919050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106116415772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061166d576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061168b57662386f26fc10000830492506010015b6305f5e10083106116a3576305f5e100830492506008015b61271083106116b757612710830492506004015b606483106116c9576064830492506002015b600a83106104dd5760010192915050565b5f6001600160a01b038316158015906117365750826001600160a01b0316846001600160a01b0316148061171357506117138484610c60565b8061173657505f828152600460205260409020546001600160a01b038481169116145b949350505050565b6001600160e01b031981168114610ec3575f80fd5b5f60208284031215611763575f80fd5b81356110548161173e565b5f5b83811015611788578181015183820152602001611770565b50505f910152565b5f81518084526117a781602086016020860161176e565b601f01601f19169290920160200192915050565b602081525f6110546020830184611790565b5f602082840312156117dd575f80fd5b5035919050565b80356001600160a01b03811681146117fa575f80fd5b919050565b5f8060408385031215611810575f80fd5b611819836117e4565b946020939093013593505050565b5f60208284031215611837575f80fd5b611054826117e4565b5f805f60608486031215611852575f80fd5b61185b846117e4565b9250611869602085016117e4565b9150604084013590509250925092565b5f806040838503121561188a575f80fd5b50508035926020909101359150565b5f80602083850312156118aa575f80fd5b823567ffffffffffffffff808211156118c1575f80fd5b818501915085601f8301126118d4575f80fd5b8135818111156118e2575f80fd5b8660208285010111156118f3575f80fd5b60209290920196919550909350505050565b5f8060408385031215611916575f80fd5b61191f836117e4565b915060208301358015158114611933575f80fd5b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561197b5761197b61193e565b604052919050565b5f67ffffffffffffffff82111561199c5761199c61193e565b50601f01601f191660200190565b5f805f80608085870312156119bd575f80fd5b6119c6856117e4565b93506119d4602086016117e4565b925060408501359150606085013567ffffffffffffffff8111156119f6575f80fd5b8501601f81018713611a06575f80fd5b8035611a19611a1482611983565b611952565b818152886020838501011115611a2d575f80fd5b816020840160208301375f6020838301015280935050505092959194509250565b5f8060408385031215611a5f575f80fd5b611a68836117e4565b91506107d1602084016117e4565b5f805f60608486031215611a88575f80fd5b611a91846117e4565b95602085013595506040909401359392505050565b600181811c90821680611aba57607f821691505b602082108103611ad857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156108a457805f5260205f20601f840160051c81016020851015611b035750805b601f840160051c820191505b81811015611319575f8155600101611b0f565b815167ffffffffffffffff811115611b3c57611b3c61193e565b611b5081611b4a8454611aa6565b84611ade565b602080601f831160018114611b83575f8415611b6c5750858301515b5f19600386901b1c1916600185901b178555611bda565b5f85815260208120601f198616915b82811015611bb157888601518255948401946001909101908401611b92565b5085821015611bce57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b67ffffffffffffffff831115611bfa57611bfa61193e565b611c0e83611c088354611aa6565b83611ade565b5f601f841160018114611c3f575f8515611c285750838201355b5f19600387901b1c1916600186901b178355611319565b5f83815260208120601f198716915b82811015611c6e5786850135825560209485019460019092019101611c4e565b5086821015611c8a575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b5f808454611ca981611aa6565b60018281168015611cc15760018114611cd657611d02565b60ff1984168752821515830287019450611d02565b885f526020805f205f5b85811015611cf95781548a820152908401908201611ce0565b50505082870194505b505050508351611d1681836020880161176e565b64173539b7b760d91b9101908152600501949350505050565b5f60208284031215611d3f575f80fd5b815167ffffffffffffffff811115611d55575f80fd5b8201601f81018413611d65575f80fd5b8051611d73611a1482611983565b818152856020838501011115611d87575f80fd5b6110a182602083016020860161176e565b634e487b7160e01b5f52601160045260245ffd5b5f60018201611dbd57611dbd611d98565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b808201808211156104dd576104dd611d98565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611e1d90830184611790565b9695505050505050565b5f60208284031215611e37575f80fd5b81516110548161173e565b634e487b7160e01b5f52602160045260245ffd5b5f60ff831680611e7457634e487b7160e01b5f52601260045260245ffd5b8060ff8416069150509291505056fea264697066735822122093715e3f4b35627bc178d4a0ded758a85d22de006b2c0f04f6302c04ac7960a364736f6c6343000817003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000058eb04a8bcd0818f8965ab4cf75975eb2675abbe0000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000001a41756e7469657665727365206279204e69636561756e7469657300000000000000000000000000000000000000000000000000000000000000000000000000044156424e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101dc575f3560e01c8063715018a611610109578063c87b56dd1161009e578063ecededad1161006e578063ecededad146103ff578063f2fde38b14610412578063fca3b5aa14610425578063fd8d7ed314610438575f80fd5b8063c87b56dd146103bd578063e7dee99f146103d0578063e985e9c5146103d9578063ea8876fa146103ec575f80fd5b806395d89b41116100d957806395d89b411461037c5780639fbc871314610384578063a22cb46514610397578063b88d4fde146103aa575f80fd5b8063715018a6146103465780638da5cb5b1461034e5780638dc251e314610356578063931688cb14610369575f80fd5b806323b872dd1161017f57806342842e0e1161014f57806342842e0e146103055780636352211e146103185780636c0360eb1461032b57806370a0823114610333575f80fd5b806323b872dd1461029a5780632a55205a146102ad57806335209821146102df57806340c10f19146102f2575f80fd5b8063081812fc116101ba578063081812fc14610248578063095ea7b31461025b578063113b98e01461027057806318160ddd14610283575f80fd5b806301ffc9a7146101e057806306fdde0314610208578063075461721461021d575b5f80fd5b6101f36101ee366004611753565b610441565b60405190151581526020015b60405180910390f35b6102106104e3565b6040516101ff91906117bb565b600854610230906001600160a01b031681565b6040516001600160a01b0390911681526020016101ff565b6102306102563660046117cd565b610572565b61026e6102693660046117ff565b610599565b005b61026e61027e366004611827565b6105a8565b61028c600c5481565b6040519081526020016101ff565b61026e6102a8366004611840565b610723565b6102c06102bb366004611879565b6107ac565b604080516001600160a01b0390931683526020830191909152016101ff565b600954610230906001600160a01b031681565b61026e6103003660046117ff565b6107da565b61026e610313366004611840565b61088a565b6102306103263660046117cd565b6108a9565b6102106108b3565b61028c610341366004611827565b61093f565b61026e610984565b610230610997565b61026e610364366004611827565b6109af565b61026e610377366004611899565b610a45565b610210610b15565b600754610230906001600160a01b031681565b61026e6103a5366004611905565b610b24565b61026e6103b83660046119aa565b610b2f565b6102106103cb3660046117cd565b610b46565b61028c600a5481565b6101f36103e7366004611a4e565b610c60565b61026e6103fa366004611a76565b610c8d565b61026e61040d366004611879565b610db4565b61026e610420366004611827565b610e89565b61026e610433366004611827565b610ec6565b61028c600b5481565b5f6380ac58cd60e01b6001600160e01b0319831614806104715750635b5e139f60e01b6001600160e01b03198316145b8061048c575063152a902d60e11b6001600160e01b03198316145b806104a75750632483248360e11b6001600160e01b03198316145b806104c257506307f5828d60e41b6001600160e01b03198316145b806104dd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60605f80546104f190611aa6565b80601f016020809104026020016040519081016040528092919081815260200182805461051d90611aa6565b80156105685780601f1061053f57610100808354040283529160200191610568565b820191905f5260205f20905b81548152906001019060200180831161054b57829003601f168201915b5050505050905090565b5f61057c82610ef0565b505f828152600460205260409020546001600160a01b03166104dd565b6105a4828233610f28565b5050565b6105b0610f35565b6001600160a01b0381166106265760405162461bcd60e51b815260206004820152603260248201527f4e6577206d657461646174612064656c6567617465206d757374206e6f7420626044820152716520746865207a65726f206164647265737360701b60648201526084015b60405180910390fd5b5f816001600160a01b03163b116106905760405162461bcd60e51b815260206004820152602860248201527f4e6577206d657461646174612064656c6567617465206d75737420626520612060448201526718dbdb9d1c9858dd60c21b606482015260840161061d565b60408051602081019091525f8152600d906106ab9082611b22565b50600980546001600160a01b0319166001600160a01b03831617905560408051600181527f00000000000000000000000000000000000000000000000000000000000003e860208201527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a150565b6001600160a01b03821661074c57604051633250574960e11b81525f600482015260240161061d565b5f610758838333610f67565b9050836001600160a01b0316816001600160a01b0316146107a6576040516364283d7b60e01b81526001600160a01b038086166004830152602482018490528216604482015260640161061d565b50505050565b600754600a54600b546001600160a01b03909216915f916107d191859190600161105b565b90509250929050565b6008546001600160a01b0316331461080557604051639cdc2ed560e01b815260040160405180910390fd5b5f8111801561083457507f00000000000000000000000000000000000000000000000000000000000003e88111155b6108735760405162461bcd60e51b815260206004820152601060248201526f125b9d985b1a59081d1bdad95b88125160821b604482015260640161061d565b61087d82826110aa565b5050600c80546001019055565b6108a483838360405180602001604052805f815250610b2f565b505050565b5f6104dd82610ef0565b600d80546108c090611aa6565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec90611aa6565b80156109375780601f1061090e57610100808354040283529160200191610937565b820191905f5260205f20905b81548152906001019060200180831161091a57829003601f168201915b505050505081565b5f6001600160a01b038216610969576040516322718ad960e21b81525f600482015260240161061d565b506001600160a01b03165f9081526003602052604090205490565b61098c610f35565b6109955f61110b565b565b5f6109aa6006546001600160a01b031690565b905090565b6109b7610f35565b6001600160a01b038116610a235760405162461bcd60e51b815260206004820152602d60248201527f526f79616c7479207265636569766572206d757374206e6f742062652074686560448201526c207a65726f206164647265737360981b606482015260840161061d565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610a4d610f35565b80610a9a5760405162461bcd60e51b815260206004820152601d60248201527f4e6577206261736520555249206d7573742062652070726f7669646564000000604482015260640161061d565b600d610aa7828483611be2565b50600980546001600160a01b031916905560408051600181527f00000000000000000000000000000000000000000000000000000000000003e860208201527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a15050565b6060600180546104f190611aa6565b6105a433838361115c565b610b3a848484610723565b6107a6848484846111fa565b6060610b5182610ef0565b505f600d8054610b6090611aa6565b90501115610b9a57600d610b7383611320565b604051602001610b84929190611c9c565b6040516020818303038152906040529050919050565b6009546001600160a01b031615610c185760095460405163c87b56dd60e01b8152600481018490526001600160a01b039091169063c87b56dd906024015f60405180830381865afa158015610bf1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526104dd9190810190611d2f565b60405162461bcd60e51b815260206004820152601760248201527f746f6b656e555249206e6f7420636f6e66696775726564000000000000000000604482015260640161061d565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610cb857604051639cdc2ed560e01b815260040160405180910390fd5b5f82118015610ce757507f00000000000000000000000000000000000000000000000000000000000003e88111155b610d295760405162461bcd60e51b8152602060048201526013602482015272496e76616c696420746f6b656e2072616e676560681b604482015260640161061d565b80821115610d8f5760405162461bcd60e51b815260206004820152602d60248201527f5374617274204944206d757374206265206c657373207468616e206f7220657160448201526c1d585b081d1bc8195b99081251609a1b606482015260840161061d565b815b8181116107a657610da284826107da565b80610dac81611dac565b915050610d91565b610dbc610f35565b805f03610e175760405162461bcd60e51b8152602060048201526024808201527f526f79616c74792064656e6f6d696e61746f72206d757374206e6f74206265206044820152637a65726f60e01b606482015260840161061d565b80821115610e7e5760405162461bcd60e51b815260206004820152602e60248201527f526f79616c7479206672616374696f6e206d757374206e6f742062652067726560448201526d61746572207468616e203130302560901b606482015260840161061d565b600a91909155600b55565b610e91610f35565b6001600160a01b038116610eba57604051631e4fbdf760e01b81525f600482015260240161061d565b610ec38161110b565b50565b610ece610f35565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b5f818152600260205260408120546001600160a01b0316806104dd57604051637e27328960e01b81526004810184905260240161061d565b6108a483838360016113b0565b33610f3e610997565b6001600160a01b0316146109955760405163118cdaa760e01b815233600482015260240161061d565b5f828152600260205260408120546001600160a01b0390811690831615610f9357610f938184866114b4565b6001600160a01b03811615610fcd57610fae5f855f806113b0565b6001600160a01b0381165f90815260036020526040902080545f190190555b6001600160a01b03851615610ffb576001600160a01b0385165f908152600360205260409020805460010190555b5f8481526002602052604080822080546001600160a01b0319166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a490505b9392505050565b5f80611068868686611518565b9050611073836115d7565b801561108e57505f848061108957611089611dc4565b868809115b156110a15761109e600182611dd8565b90505b95945050505050565b6001600160a01b0382166110d357604051633250574960e11b81525f600482015260240161061d565b5f6110df83835f610f67565b90506001600160a01b038116156108a4576040516339e3563760e11b81525f600482015260240161061d565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03821661118e57604051630b61174360e31b81526001600160a01b038316600482015260240161061d565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383163b156107a657604051630a85bd0160e11b81526001600160a01b0384169063150b7a029061123c903390889087908790600401611deb565b6020604051808303815f875af1925050508015611276575060408051601f3d908101601f1916820190925261127391810190611e27565b60015b6112dd573d8080156112a3576040519150601f19603f3d011682016040523d82523d5f602084013e6112a8565b606091505b5080515f036112d557604051633250574960e11b81526001600160a01b038516600482015260240161061d565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b1461131957604051633250574960e11b81526001600160a01b038516600482015260240161061d565b5050505050565b60605f61132c83611603565b60010190505f8167ffffffffffffffff81111561134b5761134b61193e565b6040519080825280601f01601f191660200182016040528015611375576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461137f57509392505050565b80806113c457506001600160a01b03821615155b15611485575f6113d384610ef0565b90506001600160a01b038316158015906113ff5750826001600160a01b0316816001600160a01b031614155b801561141257506114108184610c60565b155b1561143b5760405163a9fbf51f60e01b81526001600160a01b038416600482015260240161061d565b81156114835783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b50505f90815260046020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6114bf8383836116da565b6108a4576001600160a01b0383166114ed57604051637e27328960e01b81526004810182905260240161061d565b60405163177e802f60e01b81526001600160a01b03831660048201526024810182905260440161061d565b5f838302815f1985870982811083820303915050805f0361154c5783828161154257611542611dc4565b0492505050611054565b80841161156c5760405163227bc15360e01b815260040160405180910390fd5b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b5f60028260038111156115ec576115ec611e42565b6115f69190611e56565b60ff166001149050919050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106116415772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061166d576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061168b57662386f26fc10000830492506010015b6305f5e10083106116a3576305f5e100830492506008015b61271083106116b757612710830492506004015b606483106116c9576064830492506002015b600a83106104dd5760010192915050565b5f6001600160a01b038316158015906117365750826001600160a01b0316846001600160a01b0316148061171357506117138484610c60565b8061173657505f828152600460205260409020546001600160a01b038481169116145b949350505050565b6001600160e01b031981168114610ec3575f80fd5b5f60208284031215611763575f80fd5b81356110548161173e565b5f5b83811015611788578181015183820152602001611770565b50505f910152565b5f81518084526117a781602086016020860161176e565b601f01601f19169290920160200192915050565b602081525f6110546020830184611790565b5f602082840312156117dd575f80fd5b5035919050565b80356001600160a01b03811681146117fa575f80fd5b919050565b5f8060408385031215611810575f80fd5b611819836117e4565b946020939093013593505050565b5f60208284031215611837575f80fd5b611054826117e4565b5f805f60608486031215611852575f80fd5b61185b846117e4565b9250611869602085016117e4565b9150604084013590509250925092565b5f806040838503121561188a575f80fd5b50508035926020909101359150565b5f80602083850312156118aa575f80fd5b823567ffffffffffffffff808211156118c1575f80fd5b818501915085601f8301126118d4575f80fd5b8135818111156118e2575f80fd5b8660208285010111156118f3575f80fd5b60209290920196919550909350505050565b5f8060408385031215611916575f80fd5b61191f836117e4565b915060208301358015158114611933575f80fd5b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561197b5761197b61193e565b604052919050565b5f67ffffffffffffffff82111561199c5761199c61193e565b50601f01601f191660200190565b5f805f80608085870312156119bd575f80fd5b6119c6856117e4565b93506119d4602086016117e4565b925060408501359150606085013567ffffffffffffffff8111156119f6575f80fd5b8501601f81018713611a06575f80fd5b8035611a19611a1482611983565b611952565b818152886020838501011115611a2d575f80fd5b816020840160208301375f6020838301015280935050505092959194509250565b5f8060408385031215611a5f575f80fd5b611a68836117e4565b91506107d1602084016117e4565b5f805f60608486031215611a88575f80fd5b611a91846117e4565b95602085013595506040909401359392505050565b600181811c90821680611aba57607f821691505b602082108103611ad857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156108a457805f5260205f20601f840160051c81016020851015611b035750805b601f840160051c820191505b81811015611319575f8155600101611b0f565b815167ffffffffffffffff811115611b3c57611b3c61193e565b611b5081611b4a8454611aa6565b84611ade565b602080601f831160018114611b83575f8415611b6c5750858301515b5f19600386901b1c1916600185901b178555611bda565b5f85815260208120601f198616915b82811015611bb157888601518255948401946001909101908401611b92565b5085821015611bce57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b67ffffffffffffffff831115611bfa57611bfa61193e565b611c0e83611c088354611aa6565b83611ade565b5f601f841160018114611c3f575f8515611c285750838201355b5f19600387901b1c1916600186901b178355611319565b5f83815260208120601f198716915b82811015611c6e5786850135825560209485019460019092019101611c4e565b5086821015611c8a575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b5f808454611ca981611aa6565b60018281168015611cc15760018114611cd657611d02565b60ff1984168752821515830287019450611d02565b885f526020805f205f5b85811015611cf95781548a820152908401908201611ce0565b50505082870194505b505050508351611d1681836020880161176e565b64173539b7b760d91b9101908152600501949350505050565b5f60208284031215611d3f575f80fd5b815167ffffffffffffffff811115611d55575f80fd5b8201601f81018413611d65575f80fd5b8051611d73611a1482611983565b818152856020838501011115611d87575f80fd5b6110a182602083016020860161176e565b634e487b7160e01b5f52601160045260245ffd5b5f60018201611dbd57611dbd611d98565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b808201808211156104dd576104dd611d98565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611e1d90830184611790565b9695505050505050565b5f60208284031215611e37575f80fd5b81516110548161173e565b634e487b7160e01b5f52602160045260245ffd5b5f60ff831680611e7457634e487b7160e01b5f52601260045260245ffd5b8060ff8416069150509291505056fea264697066735822122093715e3f4b35627bc178d4a0ded758a85d22de006b2c0f04f6302c04ac7960a364736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000058eb04a8bcd0818f8965ab4cf75975eb2675abbe0000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000001a41756e7469657665727365206279204e69636561756e7469657300000000000000000000000000000000000000000000000000000000000000000000000000044156424e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Auntieverse by Niceaunties
Arg [1] : symbol (string): AVBN
Arg [2] : baseURI_ (string):
Arg [3] : maxSupply (uint256): 1000
Arg [4] : royaltyReceiver_ (address): 0x58eb04A8bCd0818F8965AB4cf75975eB2675abbe
Arg [5] : royaltyPercent (uint256): 5
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [4] : 00000000000000000000000058eb04a8bcd0818f8965ab4cf75975eb2675abbe
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [7] : 41756e7469657665727365206279204e69636561756e74696573000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 4156424e00000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
57651:7673:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64707:614;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;64707:614:0;;;;;;;;38536:91;;;:::i;:::-;;;;;;;:::i;57792:21::-;;;;;-1:-1:-1;;;;;57792:21:0;;;;;;-1:-1:-1;;;;;1512:32:1;;;1494:51;;1482:2;1467:18;57792:21:0;1348:203:1;39708:158:0;;;;;;:::i;:::-;;:::i;39527:115::-;;;;;;:::i;:::-;;:::i;:::-;;62665:417;;;;;;:::i;:::-;;:::i;58005:26::-;;;;;;;;;2515:25:1;;;2503:2;2488:18;58005:26:0;2369:177:1;40377:588:0;;;;;;:::i;:::-;;:::i;63975:360::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3329:32:1;;;3311:51;;3393:2;3378:18;;3371:34;;;;3284:18;63975:360:0;3137:274:1;57820:31:0;;;;;-1:-1:-1;;;;;57820:31:0;;;59922:350;;;;;;:::i;:::-;;:::i;41036:134::-;;;;;;:::i;:::-;;:::i;38349:120::-;;;;;;:::i;:::-;;:::i;58113:21::-;;;:::i;38074:213::-;;;;;;:::i;:::-;;:::i;56631:103::-;;;:::i;59492:114::-;;;:::i;60991:271::-;;;;;;:::i;:::-;;:::i;62107:324::-;;;;;;:::i;:::-;;:::i;38696:95::-;;;:::i;57755:30::-;;;;;-1:-1:-1;;;;;57755:30:0;;;39938:146;;;;;;:::i;:::-;;:::i;41241:211::-;;;;;;:::i;:::-;;:::i;63230:455::-;;;;;;:::i;:::-;;:::i;57860:30::-;;;;;;40155:155;;;;;;:::i;:::-;;:::i;60284:370::-;;;;;;:::i;:::-;;:::i;61372:446::-;;;;;;:::i;:::-;;:::i;56889:220::-;;;;;;:::i;:::-;;:::i;60785:90::-;;;;;;:::i;:::-;;:::i;57897:39::-;;;;;;64707:614;64792:4;-1:-1:-1;;;;;;;;;64829:25:0;;;;:106;;-1:-1:-1;;;;;;;;;;64910:25:0;;;64829:106;:208;;;-1:-1:-1;;;;;;;;;;65012:25:0;;;64829:208;:283;;;-1:-1:-1;;;;;;;;;;65087:25:0;;;64829:283;:363;;;-1:-1:-1;;;;;;;;;;65167:25:0;;;64829:363;:444;;;-1:-1:-1;;;;;;;;;;65248:25:0;;;64829:444;64809:464;64707:614;-1:-1:-1;;64707:614:0:o;38536:91::-;38581:13;38614:5;38607:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38536:91;:::o;39708:158::-;39775:7;39795:22;39809:7;39795:13;:22::i;:::-;-1:-1:-1;42284:7:0;42311:24;;;:15;:24;;;;;;-1:-1:-1;;;;;42311:24:0;39837:21;42214:129;39527:115;39599:35;39608:2;39612:7;36325:10;39599:8;:35::i;:::-;39527:115;;:::o;62665:417::-;55842:13;:11;:13::i;:::-;-1:-1:-1;;;;;62774:22:0;::::1;62766:85;;;::::0;-1:-1:-1;;;62766:85:0;;7040:2:1;62766:85:0::1;::::0;::::1;7022:21:1::0;7079:2;7059:18;;;7052:30;7118:34;7098:18;;;7091:62;-1:-1:-1;;;7169:18:1;;;7162:48;7227:19;;62766:85:0::1;;;;;;;;;62893:1;62870:8;-1:-1:-1::0;;;;;62870:20:0::1;;:24;62862:77;;;::::0;-1:-1:-1;;;62862:77:0;;7459:2:1;62862:77:0::1;::::0;::::1;7441:21:1::0;7498:2;7478:18;;;7471:30;7537:34;7517:18;;;7510:62;-1:-1:-1;;;7588:18:1;;;7581:38;7636:19;;62862:77:0::1;7257:404:1::0;62862:77:0::1;62972:12;::::0;;::::1;::::0;::::1;::::0;;;-1:-1:-1;62972:12:0;;:7:::1;::::0;:12:::1;::::0;:7;:12:::1;:::i;:::-;-1:-1:-1::0;62995:16:0::1;:27:::0;;-1:-1:-1;;;;;;62995:27:0::1;-1:-1:-1::0;;;;;62995:27:0;::::1;;::::0;;63040:34:::1;::::0;;-1:-1:-1;10018:25:1;;63063:10:0::1;10074:2:1::0;10059:18;;10052:34;63040::0::1;::::0;9991:18:1;63040:34:0::1;;;;;;;62665:417:::0;:::o;40377:588::-;-1:-1:-1;;;;;40472:16:0;;40468:89;;40512:33;;-1:-1:-1;;;40512:33:0;;40542:1;40512:33;;;1494:51:1;1467:18;;40512:33:0;1348:203:1;40468:89:0;40778:21;40802:34;40810:2;40814:7;36325:10;40802:7;:34::i;:::-;40778:58;;40868:4;-1:-1:-1;;;;;40851:21:0;:13;-1:-1:-1;;;;;40851:21:0;;40847:111;;40896:50;;-1:-1:-1;;;40896:50:0;;-1:-1:-1;;;;;10355:15:1;;;40896:50:0;;;10337:34:1;10387:18;;;10380:34;;;10450:15;;10430:18;;;10423:43;10272:18;;40896:50:0;10097:375:1;40847:111:0;40457:508;40377:588;;;:::o;63975:360::-;64110:15;;64271;;64288:18;;-1:-1:-1;;;;;64110:15:0;;;;64047:16;;64248:79;;64260:9;;64271:15;64110;64248:11;:79::i;:::-;64232:95;;63975:360;;;;;:::o;59922:350::-;59408:6;;-1:-1:-1;;;;;59408:6:0;59394:10;:20;59390:45;;59423:12;;-1:-1:-1;;;59423:12:0;;;;;;;;;;;59390:45;60038:1:::1;60028:7;:11;:36;;;;;60054:10;60043:7;:21;;60028:36;60020:65;;;::::0;-1:-1:-1;;;60020:65:0;;10679:2:1;60020:65:0::1;::::0;::::1;10661:21:1::0;10718:2;10698:18;;;10691:30;-1:-1:-1;;;10737:18:1;;;10730:46;10793:18;;60020:65:0::1;10477:340:1::0;60020:65:0::1;60161:18;60167:2;60171:7;60161:5;:18::i;:::-;-1:-1:-1::0;;60240:11:0::1;:13:::0;;::::1;;::::0;;59922:350::o;41036:134::-;41123:39;41140:4;41146:2;41150:7;41123:39;;;;;;;;;;;;:16;:39::i;:::-;41036:134;;;:::o;38349:120::-;38412:7;38439:22;38453:7;38439:13;:22::i;58113:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38074:213::-;38137:7;-1:-1:-1;;;;;38161:19:0;;38157:89;;38204:30;;-1:-1:-1;;;38204:30:0;;38231:1;38204:30;;;1494:51:1;1467:18;;38204:30:0;1348:203:1;38157:89:0;-1:-1:-1;;;;;;38263:16:0;;;;;:9;:16;;;;;;;38074:213::o;56631:103::-;55842:13;:11;:13::i;:::-;56696:30:::1;56723:1;56696:18;:30::i;:::-;56631:103::o:0;59492:114::-;59556:7;59583:15;56029:6;;-1:-1:-1;;;;;56029:6:0;;55956:87;59583:15;59576:22;;59492:114;:::o;60991:271::-;55842:13;:11;:13::i;:::-;-1:-1:-1;;;;;61109:30:0;::::1;61101:88;;;::::0;-1:-1:-1;;;61101:88:0;;11024:2:1;61101:88:0::1;::::0;::::1;11006:21:1::0;11063:2;11043:18;;;11036:30;11102:34;11082:18;;;11075:62;-1:-1:-1;;;11153:18:1;;;11146:43;11206:19;;61101:88:0::1;10822:409:1::0;61101:88:0::1;61220:15;:34:::0;;-1:-1:-1;;;;;;61220:34:0::1;-1:-1:-1::0;;;;;61220:34:0;;;::::1;::::0;;;::::1;::::0;;60991:271::o;62107:324::-;55842:13;:11;:13::i;:::-;62220:26;62212:68:::1;;;::::0;-1:-1:-1;;;62212:68:0;;11438:2:1;62212:68:0::1;::::0;::::1;11420:21:1::0;11477:2;11457:18;;;11450:30;11516:31;11496:18;;;11489:59;11565:18;;62212:68:0::1;11236:353:1::0;62212:68:0::1;62313:7;:18;62323:8:::0;;62313:7;:18:::1;:::i;:::-;-1:-1:-1::0;62342:16:0::1;:29:::0;;-1:-1:-1;;;;;;62342:29:0::1;::::0;;62389:34:::1;::::0;;-1:-1:-1;10018:25:1;;62412:10:0::1;10074:2:1::0;10059:18;;10052:34;62389::0::1;::::0;9991:18:1;62389:34:0::1;;;;;;;62107:324:::0;;:::o;38696:95::-;38743:13;38776:7;38769:14;;;;;:::i;39938:146::-;40024:52;36325:10;40057:8;40067;40024:18;:52::i;41241:211::-;41355:31;41368:4;41374:2;41378:7;41355:12;:31::i;:::-;41397:47;41420:4;41426:2;41430:7;41439:4;41397:22;:47::i;63230:455::-;63295:13;63321:22;63335:7;63321:13;:22::i;:::-;;63384:1;63366:7;63360:21;;;;;:::i;:::-;;;:25;63356:134;;;63433:7;63442:25;63459:7;63442:16;:25::i;:::-;63416:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63402:76;;63230:455;;;:::o;63356:134::-;63514:16;;-1:-1:-1;;;;;63514:16:0;63506:39;63502:130;;63585:16;;63569:51;;-1:-1:-1;;;63569:51:0;;;;;2515:25:1;;;-1:-1:-1;;;;;63585:16:0;;;;63569:42;;2488:18:1;;63569:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;63569:51:0;;;;;;;;;;;;:::i;63502:130::-;63644:33;;-1:-1:-1;;;63644:33:0;;14845:2:1;63644:33:0;;;14827:21:1;14884:2;14864:18;;;14857:30;14923:25;14903:18;;;14896:53;14966:18;;63644:33:0;14643:347:1;40155:155:0;-1:-1:-1;;;;;40267:25:0;;;40243:4;40267:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40155:155::o;60284:370::-;59408:6;;-1:-1:-1;;;;;59408:6:0;59394:10;:20;59390:45;;59423:12;;-1:-1:-1;;;59423:12:0;;;;;;;;;;;59390:45;60396:1:::1;60386:7;:11;:34;;;;;60410:10;60401:5;:19;;60386:34;60378:66;;;::::0;-1:-1:-1;;;60378:66:0;;15197:2:1;60378:66:0::1;::::0;::::1;15179:21:1::0;15236:2;15216:18;;;15209:30;-1:-1:-1;;;15255:18:1;;;15248:49;15314:18;;60378:66:0::1;14995:343:1::0;60378:66:0::1;60474:5;60463:7;:16;;60455:74;;;::::0;-1:-1:-1;;;60455:74:0;;15545:2:1;60455:74:0::1;::::0;::::1;15527:21:1::0;15584:2;15564:18;;;15557:30;15623:34;15603:18;;;15596:62;-1:-1:-1;;;15674:18:1;;;15667:43;15727:19;;60455:74:0::1;15343:409:1::0;60455:74:0::1;60565:7:::0;60542:105:::1;60585:5;60574:7;:16;60542:105;;60618:17;60623:2;60627:7;60618:4;:17::i;:::-;60592:9:::0;::::1;::::0;::::1;:::i;:::-;;;;60542:105;;61372:446:::0;55842:13;:11;:13::i;:::-;61520:19:::1;61543:1;61520:24:::0;61512:73:::1;;;::::0;-1:-1:-1;;;61512:73:0;;16231:2:1;61512:73:0::1;::::0;::::1;16213:21:1::0;16270:2;16250:18;;;16243:30;16309:34;16289:18;;;16282:62;-1:-1:-1;;;16360:18:1;;;16353:34;16404:19;;61512:73:0::1;16029:400:1::0;61512:73:0::1;61624:19;61604:16;:39;;61596:98;;;::::0;-1:-1:-1;;;61596:98:0;;16636:2:1;61596:98:0::1;::::0;::::1;16618:21:1::0;16675:2;16655:18;;;16648:30;16714:34;16694:18;;;16687:62;-1:-1:-1;;;16765:18:1;;;16758:44;16819:19;;61596:98:0::1;16434:410:1::0;61596:98:0::1;61725:15;:34:::0;;;;61770:18:::1;:40:::0;61372:446::o;56889:220::-;55842:13;:11;:13::i;:::-;-1:-1:-1;;;;;56974:22:0;::::1;56970:93;;57020:31;::::0;-1:-1:-1;;;57020:31:0;;57048:1:::1;57020:31;::::0;::::1;1494:51:1::0;1467:18;;57020:31:0::1;1348:203:1::0;56970:93:0::1;57073:28;57092:8;57073:18;:28::i;:::-;56889:220:::0;:::o;60785:90::-;55842:13;:11;:13::i;:::-;60851:6:::1;:16:::0;;-1:-1:-1;;;;;;60851:16:0::1;-1:-1:-1::0;;;;;60851:16:0;;;::::1;::::0;;;::::1;::::0;;60785:90::o;52683:247::-;52746:7;42069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42069:16:0;;52810:90;;52857:31;;-1:-1:-1;;;52857:31:0;;;;;2515:25:1;;;2488:18;;52857:31:0;2369:177:1;50915:122:0;50996:33;51005:2;51009:7;51018:4;51024;50996:8;:33::i;56121:166::-;36325:10;56181:7;:5;:7::i;:::-;-1:-1:-1;;;;;56181:23:0;;56177:103;;56228:40;;-1:-1:-1;;;56228:40:0;;36325:10;56228:40;;;1494:51:1;1467:18;;56228:40:0;1348:203:1;45176:824:0;45262:7;42069:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42069:16:0;;;;45377:18;;;45373:88;;45412:37;45429:4;45435;45441:7;45412:16;:37::i;:::-;-1:-1:-1;;;;;45508:18:0;;;45504:263;;45626:48;45643:1;45647:7;45664:1;45668:5;45626:8;:48::i;:::-;-1:-1:-1;;;;;45720:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;45720:20:0;;;45504:263;-1:-1:-1;;;;;45783:16:0;;;45779:111;;-1:-1:-1;;;;;45845:13:0;;;;;;:9;:13;;;;;:18;;45862:1;45845:18;;;45779:111;45902:16;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;45902:21:0;-1:-1:-1;;;;;45902:21:0;;;;;;;;;45941:27;;45902:16;;45941:27;;;;;;;45988:4;-1:-1:-1;45176:824:0;;;;;;:::o;16352:308::-;16453:7;16473:14;16490:25;16497:1;16500;16503:11;16490:6;:25::i;:::-;16473:42;;16530:26;16547:8;16530:16;:26::i;:::-;:59;;;;;16588:1;16573:11;16560:25;;;;;:::i;:::-;16570:1;16567;16560:25;:29;16530:59;16526:103;;;16606:11;16616:1;16606:11;;:::i;:::-;;;16526:103;16646:6;16352:308;-1:-1:-1;;;;;16352:308:0:o;46336:335::-;-1:-1:-1;;;;;46404:16:0;;46400:89;;46444:33;;-1:-1:-1;;;46444:33:0;;46474:1;46444:33;;;1494:51:1;1467:18;;46444:33:0;1348:203:1;46400:89:0;46499:21;46523:32;46531:2;46535:7;46552:1;46523:7;:32::i;:::-;46499:56;-1:-1:-1;;;;;;46570:27:0;;;46566:98;;46621:31;;-1:-1:-1;;;46621:31:0;;46649:1;46621:31;;;1494:51:1;1467:18;;46621:31:0;1348:203:1;57269:191:0;57362:6;;;-1:-1:-1;;;;;57379:17:0;;;-1:-1:-1;;;;;;57379:17:0;;;;;;;57412:40;;57362:6;;;57379:17;57362:6;;57412:40;;57343:16;;57412:40;57332:128;57269:191;:::o;52122:318::-;-1:-1:-1;;;;;52230:22:0;;52226:93;;52276:31;;-1:-1:-1;;;52276:31:0;;-1:-1:-1;;;;;1512:32:1;;52276:31:0;;;1494:51:1;1467:18;;52276:31:0;1348:203:1;52226:93:0;-1:-1:-1;;;;;52329:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;52329:46:0;;;;;;;;;;52391:41;;540::1;;;52391::0;;513:18:1;52391:41:0;;;;;;;52122:318;;;:::o;53480:799::-;-1:-1:-1;;;;;53597:14:0;;;:18;53593:679;;53636:71;;-1:-1:-1;;;53636:71:0;;-1:-1:-1;;;;;53636:36:0;;;;;:71;;36325:10;;53687:4;;53693:7;;53702:4;;53636:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53636:71:0;;;;;;;;-1:-1:-1;;53636:71:0;;;;;;;;;;;;:::i;:::-;;;53632:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53950:6;:13;53967:1;53950:18;53946:300;;54000:25;;-1:-1:-1;;;54000:25:0;;-1:-1:-1;;;;;1512:32:1;;54000:25:0;;;1494:51:1;1467:18;;54000:25:0;1348:203:1;53946:300:0;54196:6;54190:13;54181:6;54177:2;54173:15;54166:38;53632:629;-1:-1:-1;;;;;;53755:51:0;;-1:-1:-1;;;53755:51:0;53751:132;;53838:25;;-1:-1:-1;;;53838:25:0;;-1:-1:-1;;;;;1512:32:1;;53838:25:0;;;1494:51:1;1467:18;;53838:25:0;1348:203:1;53751:132:0;53708:190;53480:799;;;;:::o;24225:718::-;24281:13;24332:14;24349:17;24360:5;24349:10;:17::i;:::-;24369:1;24349:21;24332:38;;24385:20;24419:6;24408:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24408:18:0;-1:-1:-1;24385:41:0;-1:-1:-1;24550:28:0;;;24566:2;24550:28;24607:290;-1:-1:-1;;24639:5:0;-1:-1:-1;;;24776:2:0;24765:14;;24760:32;24639:5;24747:46;24839:2;24830:11;;;-1:-1:-1;24860:21:0;24607:290;24860:21;-1:-1:-1;24918:6:0;24225:718;-1:-1:-1;;;24225:718:0:o;51225:678::-;51387:9;:31;;;-1:-1:-1;;;;;;51400:18:0;;;;51387:31;51383:471;;;51435:13;51451:22;51465:7;51451:13;:22::i;:::-;51435:38;-1:-1:-1;;;;;;51604:18:0;;;;;;:35;;;51635:4;-1:-1:-1;;;;;51626:13:0;:5;-1:-1:-1;;;;;51626:13:0;;;51604:35;:69;;;;;51644:29;51661:5;51668:4;51644:16;:29::i;:::-;51643:30;51604:69;51600:144;;;51701:27;;-1:-1:-1;;;51701:27:0;;-1:-1:-1;;;;;1512:32:1;;51701:27:0;;;1494:51:1;1467:18;;51701:27:0;1348:203:1;51600:144:0;51764:9;51760:83;;;51819:7;51815:2;-1:-1:-1;;;;;51799:28:0;51808:5;-1:-1:-1;;;;;51799:28:0;;;;;;;;;;;51760:83;51420:434;51383:471;-1:-1:-1;;51866:24:0;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;51866:29:0;-1:-1:-1;;;;;51866:29:0;;;;;;;;;;51225:678::o;43383:376::-;43496:38;43510:5;43517:7;43526;43496:13;:38::i;:::-;43491:261;;-1:-1:-1;;;;;43555:19:0;;43551:190;;43602:31;;-1:-1:-1;;;43602:31:0;;;;;2515:25:1;;;2488:18;;43602:31:0;2369:177:1;43551:190:0;43681:44;;-1:-1:-1;;;43681:44:0;;-1:-1:-1;;;;;3329:32:1;;43681:44:0;;;3311:51:1;3378:18;;;3371:34;;;3284:18;;43681:44:0;3137:274:1;12020:4195:0;12102:14;12470:5;;;12102:14;-1:-1:-1;;12474:1:0;12470;12645:20;12719:5;12715:2;12712:13;12704:5;12700:2;12696:14;12692:34;12683:43;;;12825:5;12834:1;12825:10;12821:373;;13167:11;13159:5;:19;;;;;:::i;:::-;;13152:26;;;;;;12821:373;13318:5;13303:11;:20;13299:90;;13351:22;;-1:-1:-1;;;13351:22:0;;;;;;;;;;;13299:90;13651:17;13789:11;13786:1;13783;13776:25;14199:12;14229:15;;;14214:31;;14351:22;;;;;15091:1;15072;:15;;15071:21;;15328;;;15324:25;;15313:36;15398:21;;;15394:25;;15383:36;15469:21;;;15465:25;;15454:36;15540:21;;;15536:25;;15525:36;15611:21;;;15607:25;;15596:36;15683:21;;;15679:25;;;15668:36;14602:12;;;;14598:23;;;14623:1;14594:31;13906:20;;;13895:32;;;14718:12;;;;13954:21;;;;14452:16;;;;14709:21;;;;16153:15;;;;;-1:-1:-1;;12020:4195:0;;;;;:::o;23499:124::-;23567:4;23609:1;23597:8;23591:15;;;;;;;;:::i;:::-;:19;;;;:::i;:::-;:24;;23614:1;23591:24;23584:31;;23499:124;;;:::o;20629:948::-;20682:7;;-1:-1:-1;;;20760:17:0;;20756:106;;-1:-1:-1;;;20798:17:0;;;-1:-1:-1;20844:2:0;20834:12;20756:106;20889:8;20880:5;:17;20876:106;;20927:8;20918:17;;;-1:-1:-1;20964:2:0;20954:12;20876:106;21009:8;21000:5;:17;20996:106;;21047:8;21038:17;;;-1:-1:-1;21084:2:0;21074:12;20996:106;21129:7;21120:5;:16;21116:103;;21166:7;21157:16;;;-1:-1:-1;21202:1:0;21192:11;21116:103;21246:7;21237:5;:16;21233:103;;21283:7;21274:16;;;-1:-1:-1;21319:1:0;21309:11;21233:103;21363:7;21354:5;:16;21350:103;;21400:7;21391:16;;;-1:-1:-1;21436:1:0;21426:11;21350:103;21480:7;21471:5;:16;21467:68;;21518:1;21508:11;21563:6;20629:948;-1:-1:-1;;20629:948:0:o;42663:276::-;42766:4;-1:-1:-1;;;;;42803:21:0;;;;;;:128;;;42851:7;-1:-1:-1;;;;;42842:16:0;:5;-1:-1:-1;;;;;42842:16:0;;:52;;;;42862:32;42879:5;42886:7;42862:16;:32::i;:::-;42842:88;;;-1:-1:-1;42284:7:0;42311:24;;;:15;:24;;;;;;-1:-1:-1;;;;;42898:32:0;;;42311:24;;42898:32;42842:88;42783:148;42663:276;-1:-1:-1;;;;42663:276: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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1556:180::-;1615:6;1668:2;1656:9;1647:7;1643:23;1639:32;1636:52;;;1684:1;1681;1674:12;1636:52;-1:-1:-1;1707:23:1;;1556:180;-1:-1:-1;1556:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:186::-;2237:6;2290:2;2278:9;2269:7;2265:23;2261:32;2258:52;;;2306:1;2303;2296:12;2258:52;2329:29;2348:9;2329:29;:::i;2551:328::-;2628:6;2636;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2736:29;2755:9;2736:29;:::i;:::-;2726:39;;2784:38;2818:2;2807:9;2803:18;2784:38;:::i;:::-;2774:48;;2869:2;2858:9;2854:18;2841:32;2831:42;;2551:328;;;;;:::o;2884:248::-;2952:6;2960;3013:2;3001:9;2992:7;2988:23;2984:32;2981:52;;;3029:1;3026;3019:12;2981:52;-1:-1:-1;;3052:23:1;;;3122:2;3107:18;;;3094:32;;-1:-1:-1;2884:248:1:o;3416:592::-;3487:6;3495;3548:2;3536:9;3527:7;3523:23;3519:32;3516:52;;;3564:1;3561;3554:12;3516:52;3604:9;3591:23;3633:18;3674:2;3666:6;3663:14;3660:34;;;3690:1;3687;3680:12;3660:34;3728:6;3717:9;3713:22;3703:32;;3773:7;3766:4;3762:2;3758:13;3754:27;3744:55;;3795:1;3792;3785:12;3744:55;3835:2;3822:16;3861:2;3853:6;3850:14;3847:34;;;3877:1;3874;3867:12;3847:34;3922:7;3917:2;3908:6;3904:2;3900:15;3896:24;3893:37;3890:57;;;3943:1;3940;3933:12;3890:57;3974:2;3966:11;;;;;3996:6;;-1:-1:-1;3416:592:1;;-1:-1:-1;;;;3416:592:1:o;4013:347::-;4078:6;4086;4139:2;4127:9;4118:7;4114:23;4110:32;4107:52;;;4155:1;4152;4145:12;4107:52;4178:29;4197:9;4178:29;:::i;:::-;4168:39;;4257:2;4246:9;4242:18;4229:32;4304:5;4297:13;4290:21;4283:5;4280:32;4270:60;;4326:1;4323;4316:12;4270:60;4349:5;4339:15;;;4013:347;;;;;:::o;4365:127::-;4426:10;4421:3;4417:20;4414:1;4407:31;4457:4;4454:1;4447:15;4481:4;4478:1;4471:15;4497:275;4568:2;4562:9;4633:2;4614:13;;-1:-1:-1;;4610:27:1;4598:40;;4668:18;4653:34;;4689:22;;;4650:62;4647:88;;;4715:18;;:::i;:::-;4751:2;4744:22;4497:275;;-1:-1:-1;4497:275:1:o;4777:186::-;4825:4;4858:18;4850:6;4847:30;4844:56;;;4880:18;;:::i;:::-;-1:-1:-1;4946:2:1;4925:15;-1:-1:-1;;4921:29:1;4952:4;4917:40;;4777:186::o;4968:888::-;5063:6;5071;5079;5087;5140:3;5128:9;5119:7;5115:23;5111:33;5108:53;;;5157:1;5154;5147:12;5108:53;5180:29;5199:9;5180:29;:::i;:::-;5170:39;;5228:38;5262:2;5251:9;5247:18;5228:38;:::i;:::-;5218:48;;5313:2;5302:9;5298:18;5285:32;5275:42;;5368:2;5357:9;5353:18;5340:32;5395:18;5387:6;5384:30;5381:50;;;5427:1;5424;5417:12;5381:50;5450:22;;5503:4;5495:13;;5491:27;-1:-1:-1;5481:55:1;;5532:1;5529;5522:12;5481:55;5568:2;5555:16;5593:48;5609:31;5637:2;5609:31;:::i;:::-;5593:48;:::i;:::-;5664:2;5657:5;5650:17;5704:7;5699:2;5694;5690;5686:11;5682:20;5679:33;5676:53;;;5725:1;5722;5715:12;5676:53;5780:2;5775;5771;5767:11;5762:2;5755:5;5751:14;5738:45;5824:1;5819:2;5814;5807:5;5803:14;5799:23;5792:34;5845:5;5835:15;;;;;4968:888;;;;;;;:::o;5861:260::-;5929:6;5937;5990:2;5978:9;5969:7;5965:23;5961:32;5958:52;;;6006:1;6003;5996:12;5958:52;6029:29;6048:9;6029:29;:::i;:::-;6019:39;;6077:38;6111:2;6100:9;6096:18;6077:38;:::i;6126:322::-;6203:6;6211;6219;6272:2;6260:9;6251:7;6247:23;6243:32;6240:52;;;6288:1;6285;6278:12;6240:52;6311:29;6330:9;6311:29;:::i;:::-;6301:39;6387:2;6372:18;;6359:32;;-1:-1:-1;6438:2:1;6423:18;;;6410:32;;6126:322;-1:-1:-1;;;6126:322:1:o;6453:380::-;6532:1;6528:12;;;;6575;;;6596:61;;6650:4;6642:6;6638:17;6628:27;;6596:61;6703:2;6695:6;6692:14;6672:18;6669:38;6666:161;;6749:10;6744:3;6740:20;6737:1;6730:31;6784:4;6781:1;6774:15;6812:4;6809:1;6802:15;6666:161;;6453:380;;;:::o;7792:518::-;7894:2;7889:3;7886:11;7883:421;;;7930:5;7927:1;7920:16;7974:4;7971:1;7961:18;8044:2;8032:10;8028:19;8025:1;8021:27;8015:4;8011:38;8080:4;8068:10;8065:20;8062:47;;;-1:-1:-1;8103:4:1;8062:47;8158:2;8153:3;8149:12;8146:1;8142:20;8136:4;8132:31;8122:41;;8213:81;8231:2;8224:5;8221:13;8213:81;;;8290:1;8276:16;;8257:1;8246:13;8213:81;;8486:1345;8612:3;8606:10;8639:18;8631:6;8628:30;8625:56;;;8661:18;;:::i;:::-;8690:97;8780:6;8740:38;8772:4;8766:11;8740:38;:::i;:::-;8734:4;8690:97;:::i;:::-;8842:4;;8899:2;8888:14;;8916:1;8911:663;;;;9618:1;9635:6;9632:89;;;-1:-1:-1;9687:19:1;;;9681:26;9632:89;-1:-1:-1;;8443:1:1;8439:11;;;8435:24;8431:29;8421:40;8467:1;8463:11;;;8418:57;9734:81;;8881:944;;8911:663;7739:1;7732:14;;;7776:4;7763:18;;-1:-1:-1;;8947:20:1;;;9065:236;9079:7;9076:1;9073:14;9065:236;;;9168:19;;;9162:26;9147:42;;9260:27;;;;9228:1;9216:14;;;;9095:19;;9065:236;;;9069:3;9329:6;9320:7;9317:19;9314:201;;;9390:19;;;9384:26;-1:-1:-1;;9473:1:1;9469:14;;;9485:3;9465:24;9461:37;9457:42;9442:58;9427:74;;9314:201;;;9561:1;9552:6;9549:1;9545:14;9541:22;9535:4;9528:36;8881:944;;;;;8486:1345;;:::o;11594:1198::-;11718:18;11713:3;11710:27;11707:53;;;11740:18;;:::i;:::-;11769:94;11859:3;11819:38;11851:4;11845:11;11819:38;:::i;:::-;11813:4;11769:94;:::i;:::-;11889:1;11914:2;11909:3;11906:11;11931:1;11926:608;;;;12578:1;12595:3;12592:93;;;-1:-1:-1;12651:19:1;;;12638:33;12592:93;-1:-1:-1;;8443:1:1;8439:11;;;8435:24;8431:29;8421:40;8467:1;8463:11;;;8418:57;12698:78;;11899:887;;11926:608;7739:1;7732:14;;;7776:4;7763:18;;-1:-1:-1;;11962:17:1;;;12077:229;12091:7;12088:1;12085:14;12077:229;;;12180:19;;;12167:33;12152:49;;12287:4;12272:20;;;;12240:1;12228:14;;;;12107:12;12077:229;;;12081:3;12334;12325:7;12322:16;12319:159;;;12458:1;12454:6;12448:3;12442;12439:1;12435:11;12431:21;12427:34;12423:39;12410:9;12405:3;12401:19;12388:33;12384:79;12376:6;12369:95;12319:159;;;12521:1;12515:3;12512:1;12508:11;12504:19;12498:4;12491:33;11899:887;;11594:1198;;;:::o;12797:1188::-;13074:3;13103:1;13136:6;13130:13;13166:36;13192:9;13166:36;:::i;:::-;13221:1;13238:17;;;13264:133;;;;13411:1;13406:358;;;;13231:533;;13264:133;-1:-1:-1;;13297:24:1;;13285:37;;13370:14;;13363:22;13351:35;;13342:45;;;-1:-1:-1;13264:133:1;;13406:358;13437:6;13434:1;13427:17;13467:4;13512;13509:1;13499:18;13539:1;13553:165;13567:6;13564:1;13561:13;13553:165;;;13645:14;;13632:11;;;13625:35;13688:16;;;;13582:10;;13553:165;;;13557:3;;;13747:6;13742:3;13738:16;13731:23;;13231:533;;;;;13795:6;13789:13;13811:68;13870:8;13865:3;13858:4;13850:6;13846:17;13811:68;:::i;:::-;-1:-1:-1;;;13901:18:1;;13928:22;;;13977:1;13966:13;;12797:1188;-1:-1:-1;;;;12797:1188:1:o;13990:648::-;14070:6;14123:2;14111:9;14102:7;14098:23;14094:32;14091:52;;;14139:1;14136;14129:12;14091:52;14172:9;14166:16;14205:18;14197:6;14194:30;14191:50;;;14237:1;14234;14227:12;14191:50;14260:22;;14313:4;14305:13;;14301:27;-1:-1:-1;14291:55:1;;14342:1;14339;14332:12;14291:55;14371:2;14365:9;14396:48;14412:31;14440:2;14412:31;:::i;14396:48::-;14467:2;14460:5;14453:17;14507:7;14502:2;14497;14493;14489:11;14485:20;14482:33;14479:53;;;14528:1;14525;14518:12;14479:53;14541:67;14605:2;14600;14593:5;14589:14;14584:2;14580;14576:11;14541:67;:::i;15757:127::-;15818:10;15813:3;15809:20;15806:1;15799:31;15849:4;15846:1;15839:15;15873:4;15870:1;15863:15;15889:135;15928:3;15949:17;;;15946:43;;15969:18;;:::i;:::-;-1:-1:-1;16016:1:1;16005:13;;15889:135::o;16849:127::-;16910:10;16905:3;16901:20;16898:1;16891:31;16941:4;16938:1;16931:15;16965:4;16962:1;16955:15;16981:125;17046:9;;;17067:10;;;17064:36;;;17080:18;;:::i;17111:489::-;-1:-1:-1;;;;;17380:15:1;;;17362:34;;17432:15;;17427:2;17412:18;;17405:43;17479:2;17464:18;;17457:34;;;17527:3;17522:2;17507:18;;17500:31;;;17305:4;;17548:46;;17574:19;;17566:6;17548:46;:::i;:::-;17540:54;17111:489;-1:-1:-1;;;;;;17111:489:1:o;17605:249::-;17674:6;17727:2;17715:9;17706:7;17702:23;17698:32;17695:52;;;17743:1;17740;17733:12;17695:52;17775:9;17769:16;17794:30;17818:5;17794:30;:::i;17859:127::-;17920:10;17915:3;17911:20;17908:1;17901:31;17951:4;17948:1;17941:15;17975:4;17972:1;17965:15;17991:254;18021:1;18055:4;18052:1;18048:12;18079:3;18069:134;;18125:10;18120:3;18116:20;18113:1;18106:31;18160:4;18157:1;18150:15;18188:4;18185:1;18178:15;18069:134;18235:3;18228:4;18225:1;18221:12;18217:22;18212:27;;;17991:254;;;;:::o
Swarm Source
ipfs://93715e3f4b35627bc178d4a0ded758a85d22de006b2c0f04f6302c04ac7960a3
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.