ERC-721
Overview
Max Total Supply
4,444 EC
Holders
1,066
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 ECLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EverythingCat
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-19 */ // File: operator-filter-registry/src/lib/Constants.sol pragma solidity ^0.8.17; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; // File: operator-filter-registry/src/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address registrantToSubscribe) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address addr) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address addr) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); } // File: operator-filter-registry/src/OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. * Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract OperatorFilterer { /// @dev Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS); /// @dev The constructor that is called when the contract is being deployed. constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: operator-filter-registry/src/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @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 up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (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; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 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. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); 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 (rounding == Rounding.Up && 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 down. * * 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * 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 10, 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 + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @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) { 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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); 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); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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 { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @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 payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns 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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/e.sol // ERC721A Contracts v4.2.3 pragma solidity ^0.8.17; contract EverythingCat is ERC721A, DefaultOperatorFilterer, Ownable{ using Strings for uint256; uint256 public constant MAX_SUPPLY = 4444; uint256 public mintPrice = 0.001 ether; uint256 public maxBalance = 5; uint256 public maxMint = 5; bool public _isSaleActive = false; bool public _revealed = true; string baseURI; string public notRevealedUri; string public baseExtension = ".json"; mapping(uint256 => string) private _tokenURIs; constructor(string memory initBaseURI, string memory initNotRevealedUri) ERC721A("ET-Cat", "EC") { setBaseURI(initBaseURI); setNotRevealedURI(initNotRevealedUri); } function mintPublic(uint256 tokenQuantity) public payable { require(_isSaleActive, "Sale must be active to mint NFT"); require(tokenQuantity <= maxMint, "Mint too many tokens at a time"); require( balanceOf(msg.sender) + tokenQuantity <= maxBalance, "Sale would exceed max balance" ); require( totalSupply() + tokenQuantity <= MAX_SUPPLY, "Sale would exceed max supply" ); require(tokenQuantity * mintPrice <= msg.value, "Not enough ether"); _safeMint(msg.sender, tokenQuantity); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "URI query for nonexistent token" ); if (_revealed == false) { return notRevealedUri; } string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); if (bytes(base).length == 0) { return _tokenURI; } if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return string(abi.encodePacked(base, tokenId.toString(), baseExtension)); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function flipSaleActive() public onlyOwner { _isSaleActive = !_isSaleActive; } function flipReveal() public onlyOwner { _revealed = !_revealed; } function mintOwner() public onlyOwner { _safeMint(msg.sender, 1); } function setMintPrice(uint256 _mintPrice) public onlyOwner { mintPrice = _mintPrice; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setMaxBalance(uint256 _maxBalance) public onlyOwner { maxBalance = _maxBalance; } function setMaxMint(uint256 _maxMint) public onlyOwner { maxMint = _maxMint; } function withdraw(address to) public onlyOwner { uint256 balance = address(this).balance; payable(to).transfer(balance); } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"string","name":"initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleActive","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":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBalance","type":"uint256"}],"name":"setMaxBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
66038d7ea4c680006009556005600a819055600b819055600c805461ffff191661010017905560c0604052608090815264173539b7b760d91b60a052600f906200004a9082620003f0565b503480156200005857600080fd5b506040516200236d3803806200236d8339810160408190526200007b916200056b565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600681526020016511550b50d85d60d21b81525060405180604001604052806002815260200161454360f01b8152508160029081620000dd9190620003f0565b506003620000ec8282620003f0565b506000805550506daaeb6d7670e522a718067333cd4e3b15620002385780156200018657604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200016757600080fd5b505af11580156200017c573d6000803e3d6000fd5b5050505062000238565b6001600160a01b03821615620001d75760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200014c565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200021e57600080fd5b505af115801562000233573d6000803e3d6000fd5b505050505b506200024690503362000264565b6200025182620002b6565b6200025c81620002d2565b5050620005d5565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002c0620002ea565b600d620002ce8282620003f0565b5050565b620002dc620002ea565b600e620002ce8282620003f0565b6008546001600160a01b03163314620003495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200037657607f821691505b6020821081036200039757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003eb57600081815260208120601f850160051c81016020861015620003c65750805b601f850160051c820191505b81811015620003e757828155600101620003d2565b5050505b505050565b81516001600160401b038111156200040c576200040c6200034b565b62000424816200041d845462000361565b846200039d565b602080601f8311600181146200045c5760008415620004435750858301515b600019600386901b1c1916600185901b178555620003e7565b600085815260208120601f198616915b828110156200048d578886015182559484019460019091019084016200046c565b5085821015620004ac5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f830112620004ce57600080fd5b81516001600160401b0380821115620004eb57620004eb6200034b565b604051601f8301601f19908116603f011681019082821181831017156200051657620005166200034b565b816040528381526020925086838588010111156200053357600080fd5b600091505b8382101562000557578582018301518183018401529082019062000538565b600093810190920192909252949350505050565b600080604083850312156200057f57600080fd5b82516001600160401b03808211156200059757600080fd5b620005a586838701620004bc565b93506020850151915080821115620005bc57600080fd5b50620005cb85828601620004bc565b9150509250929050565b611d8880620005e56000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063c6682862116100ab578063e985e9c51161006f578063e985e9c5146105a3578063efd0cbf9146105c3578063f2c4ce1e146105d6578063f2fde38b146105f6578063f4a0a5281461061657600080fd5b8063c668286214610524578063c87b56dd14610539578063cecb06d014610559578063da3ef23f1461056e578063de8b51e11461058e57600080fd5b80638da5cb5b116100f25780638da5cb5b1461049e57806395d89b41146104bc5780639d51d9b7146104d1578063a22cb465146104f1578063b88d4fde1461051157600080fd5b806370a082311461043d578063715018a61461045d57806373ad468a146104725780637501f7411461048857600080fd5b806341f43434116101a657806355f804b31161017557806355f804b3146103ae5780636352211e146103ce5780636817c76c146103ee5780636ebeac85146104045780637080d6fc1461042357600080fd5b806341f434341461033957806342842e0e1461035b57806351cff8d91461036e578063547520fe1461038e57600080fd5b8063095ea7b3116101ed578063095ea7b3146102c357806318160ddd146102d857806323b872dd146102fb57806332cb6b0c1461030e5780633b84d9c61461032457600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063081c8c44146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461178d565b610636565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610688565b60405161024b91906117fa565b34801561028257600080fd5b5061029661029136600461180d565b61071a565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b5061026961075e565b6102d66102d1366004611842565b6107ec565b005b3480156102e457600080fd5b50600154600054035b60405190815260200161024b565b6102d661030936600461186c565b610805565b34801561031a57600080fd5b506102ed61115c81565b34801561033057600080fd5b506102d6610830565b34801561034557600080fd5b506102966daaeb6d7670e522a718067333cd4e81565b6102d661036936600461186c565b610855565b34801561037a57600080fd5b506102d66103893660046118a8565b61087a565b34801561039a57600080fd5b506102d66103a936600461180d565b6108ba565b3480156103ba57600080fd5b506102d66103c936600461194f565b6108c7565b3480156103da57600080fd5b506102966103e936600461180d565b6108df565b3480156103fa57600080fd5b506102ed60095481565b34801561041057600080fd5b50600c5461023f90610100900460ff1681565b34801561042f57600080fd5b50600c5461023f9060ff1681565b34801561044957600080fd5b506102ed6104583660046118a8565b6108ea565b34801561046957600080fd5b506102d6610939565b34801561047e57600080fd5b506102ed600a5481565b34801561049457600080fd5b506102ed600b5481565b3480156104aa57600080fd5b506008546001600160a01b0316610296565b3480156104c857600080fd5b5061026961094d565b3480156104dd57600080fd5b506102d66104ec36600461180d565b61095c565b3480156104fd57600080fd5b506102d661050c3660046119a6565b610969565b6102d661051f3660046119dd565b61097d565b34801561053057600080fd5b506102696109aa565b34801561054557600080fd5b5061026961055436600461180d565b6109b7565b34801561056557600080fd5b506102d6610bbe565b34801561057a57600080fd5b506102d661058936600461194f565b610bd1565b34801561059a57600080fd5b506102d6610be5565b3480156105af57600080fd5b5061023f6105be366004611a59565b610c01565b6102d66105d136600461180d565b610c2f565b3480156105e257600080fd5b506102d66105f136600461194f565b610dfe565b34801561060257600080fd5b506102d66106113660046118a8565b610e12565b34801561062257600080fd5b506102d661063136600461180d565b610e88565b60006301ffc9a760e01b6001600160e01b03198316148061066757506380ac58cd60e01b6001600160e01b03198316145b806106825750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461069790611a8c565b80601f01602080910402602001604051908101604052809291908181526020018280546106c390611a8c565b80156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b5050505050905090565b600061072582610e95565b610742576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600e805461076b90611a8c565b80601f016020809104026020016040519081016040528092919081815260200182805461079790611a8c565b80156107e45780601f106107b9576101008083540402835291602001916107e4565b820191906000526020600020905b8154815290600101906020018083116107c757829003601f168201915b505050505081565b816107f681610ebc565b6108008383610f75565b505050565b826001600160a01b038116331461081f5761081f33610ebc565b61082a848484611015565b50505050565b6108386111ae565b600c805461ff001981166101009182900460ff1615909102179055565b826001600160a01b038116331461086f5761086f33610ebc565b61082a848484611208565b6108826111ae565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610800573d6000803e3d6000fd5b6108c26111ae565b600b55565b6108cf6111ae565b600d6108db8282611b0c565b5050565b600061068282611223565b60006001600160a01b038216610913576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6109416111ae565b61094b6000611291565b565b60606003805461069790611a8c565b6109646111ae565b600a55565b8161097381610ebc565b61080083836112e3565b836001600160a01b03811633146109975761099733610ebc565b6109a38585858561134f565b5050505050565b600f805461076b90611a8c565b60606109c282610e95565b610a135760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b600c54610100900460ff161515600003610ab957600e8054610a3490611a8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6090611a8c565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b50505050509050919050565b60008281526010602052604081208054610ad290611a8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90611a8c565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b505050505090506000610b5c611393565b90508051600003610b6e575092915050565b815115610ba0578082604051602001610b88929190611bcc565b60405160208183030381529060405292505050919050565b80610baa856113a2565b600f604051602001610b8893929190611bfb565b610bc66111ae565b61094b336001611435565b610bd96111ae565b600f6108db8282611b0c565b610bed6111ae565b600c805460ff19811660ff90911615179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600c5460ff16610c815760405162461bcd60e51b815260206004820152601f60248201527f53616c65206d7573742062652061637469766520746f206d696e74204e4654006044820152606401610a0a565b600b54811115610cd35760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420746f6f206d616e7920746f6b656e7320617420612074696d6500006044820152606401610a0a565b600a5481610ce0336108ea565b610cea9190611cb1565b1115610d385760405162461bcd60e51b815260206004820152601d60248201527f53616c6520776f756c6420657863656564206d61782062616c616e63650000006044820152606401610a0a565b61115c81610d496001546000540390565b610d539190611cb1565b1115610da15760405162461bcd60e51b815260206004820152601c60248201527f53616c6520776f756c6420657863656564206d617820737570706c79000000006044820152606401610a0a565b3460095482610db09190611cc4565b1115610df15760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b41032ba3432b960811b6044820152606401610a0a565b610dfb3382611435565b50565b610e066111ae565b600e6108db8282611b0c565b610e1a6111ae565b6001600160a01b038116610e7f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a0a565b610dfb81611291565b610e906111ae565b600955565b6000805482108015610682575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b15610dfb57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4d9190611cdb565b610dfb57604051633b79c77360e21b81526001600160a01b0382166004820152602401610a0a565b6000610f80826108df565b9050336001600160a01b03821614610fb957610f9c8133610c01565b610fb9576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061102082611223565b9050836001600160a01b0316816001600160a01b0316146110535760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176110a0576110838633610c01565b6110a057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166110c757604051633a954ecd60e21b815260040160405180910390fd5b80156110d257600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611164576001840160008181526004602052604081205490036111625760005481146111625760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b0316331461094b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a0a565b6108008383836040518060200160405280600081525061097d565b6000816000548110156112785760008181526004602052604081205490600160e01b82169003611276575b8060000361126f57506000190160008181526004602052604090205461124e565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61135a848484610805565b6001600160a01b0383163b1561082a576113768484848461144f565b61082a576040516368d2bf6b60e11b815260040160405180910390fd5b6060600d805461069790611a8c565b606060006113af8361153b565b600101905060008167ffffffffffffffff8111156113cf576113cf6118c3565b6040519080825280601f01601f1916602001820160405280156113f9576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461140357509392505050565b6108db828260405180602001604052806000815250611613565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611484903390899088908890600401611cf8565b6020604051808303816000875af19250505080156114bf575060408051601f3d908101601f191682019092526114bc91810190611d35565b60015b61151d573d8080156114ed576040519150601f19603f3d011682016040523d82523d6000602084013e6114f2565b606091505b508051600003611515576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061157a5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106115a6576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106115c457662386f26fc10000830492506010015b6305f5e10083106115dc576305f5e100830492506008015b61271083106115f057612710830492506004015b60648310611602576064830492506002015b600a83106106825760010192915050565b61161d8383611679565b6001600160a01b0383163b15610800576000548281035b611647600086838060010194508661144f565b611664576040516368d2bf6b60e11b815260040160405180910390fd5b8181106116345781600054146109a357600080fd5b600080549082900361169e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461174d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611715565b508160000361176e57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b031981168114610dfb57600080fd5b60006020828403121561179f57600080fd5b813561126f81611777565b60005b838110156117c55781810151838201526020016117ad565b50506000910152565b600081518084526117e68160208601602086016117aa565b601f01601f19169290920160200192915050565b60208152600061126f60208301846117ce565b60006020828403121561181f57600080fd5b5035919050565b80356001600160a01b038116811461183d57600080fd5b919050565b6000806040838503121561185557600080fd5b61185e83611826565b946020939093013593505050565b60008060006060848603121561188157600080fd5b61188a84611826565b925061189860208501611826565b9150604084013590509250925092565b6000602082840312156118ba57600080fd5b61126f82611826565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118f4576118f46118c3565b604051601f8501601f19908116603f0116810190828211818310171561191c5761191c6118c3565b8160405280935085815286868601111561193557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561196157600080fd5b813567ffffffffffffffff81111561197857600080fd5b8201601f8101841361198957600080fd5b611533848235602084016118d9565b8015158114610dfb57600080fd5b600080604083850312156119b957600080fd5b6119c283611826565b915060208301356119d281611998565b809150509250929050565b600080600080608085870312156119f357600080fd5b6119fc85611826565b9350611a0a60208601611826565b925060408501359150606085013567ffffffffffffffff811115611a2d57600080fd5b8501601f81018713611a3e57600080fd5b611a4d878235602084016118d9565b91505092959194509250565b60008060408385031215611a6c57600080fd5b611a7583611826565b9150611a8360208401611826565b90509250929050565b600181811c90821680611aa057607f821691505b602082108103611ac057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561080057600081815260208120601f850160051c81016020861015611aed5750805b601f850160051c820191505b818110156111a657828155600101611af9565b815167ffffffffffffffff811115611b2657611b266118c3565b611b3a81611b348454611a8c565b84611ac6565b602080601f831160018114611b6f5760008415611b575750858301515b600019600386901b1c1916600185901b1785556111a6565b600085815260208120601f198616915b82811015611b9e57888601518255948401946001909101908401611b7f565b5085821015611bbc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351611bde8184602088016117aa565b835190830190611bf28183602088016117aa565b01949350505050565b600084516020611c0e8285838a016117aa565b855191840191611c218184848a016117aa565b8554920191600090611c3281611a8c565b60018281168015611c4a5760018114611c5f57611c8b565b60ff1984168752821515830287019450611c8b565b896000528560002060005b84811015611c8357815489820152908301908701611c6a565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561068257610682611c9b565b808202811582820484141761068257610682611c9b565b600060208284031215611ced57600080fd5b815161126f81611998565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d2b908301846117ce565b9695505050505050565b600060208284031215611d4757600080fd5b815161126f8161177756fea26469706673582212201a3883dd9ef8a27c77985801ca7c787fc158d202ba5b824b469e913b9285f3f164736f6c634300081100330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c806370a0823111610123578063c6682862116100ab578063e985e9c51161006f578063e985e9c5146105a3578063efd0cbf9146105c3578063f2c4ce1e146105d6578063f2fde38b146105f6578063f4a0a5281461061657600080fd5b8063c668286214610524578063c87b56dd14610539578063cecb06d014610559578063da3ef23f1461056e578063de8b51e11461058e57600080fd5b80638da5cb5b116100f25780638da5cb5b1461049e57806395d89b41146104bc5780639d51d9b7146104d1578063a22cb465146104f1578063b88d4fde1461051157600080fd5b806370a082311461043d578063715018a61461045d57806373ad468a146104725780637501f7411461048857600080fd5b806341f43434116101a657806355f804b31161017557806355f804b3146103ae5780636352211e146103ce5780636817c76c146103ee5780636ebeac85146104045780637080d6fc1461042357600080fd5b806341f434341461033957806342842e0e1461035b57806351cff8d91461036e578063547520fe1461038e57600080fd5b8063095ea7b3116101ed578063095ea7b3146102c357806318160ddd146102d857806323b872dd146102fb57806332cb6b0c1461030e5780633b84d9c61461032457600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063081c8c44146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461178d565b610636565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610688565b60405161024b91906117fa565b34801561028257600080fd5b5061029661029136600461180d565b61071a565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b5061026961075e565b6102d66102d1366004611842565b6107ec565b005b3480156102e457600080fd5b50600154600054035b60405190815260200161024b565b6102d661030936600461186c565b610805565b34801561031a57600080fd5b506102ed61115c81565b34801561033057600080fd5b506102d6610830565b34801561034557600080fd5b506102966daaeb6d7670e522a718067333cd4e81565b6102d661036936600461186c565b610855565b34801561037a57600080fd5b506102d66103893660046118a8565b61087a565b34801561039a57600080fd5b506102d66103a936600461180d565b6108ba565b3480156103ba57600080fd5b506102d66103c936600461194f565b6108c7565b3480156103da57600080fd5b506102966103e936600461180d565b6108df565b3480156103fa57600080fd5b506102ed60095481565b34801561041057600080fd5b50600c5461023f90610100900460ff1681565b34801561042f57600080fd5b50600c5461023f9060ff1681565b34801561044957600080fd5b506102ed6104583660046118a8565b6108ea565b34801561046957600080fd5b506102d6610939565b34801561047e57600080fd5b506102ed600a5481565b34801561049457600080fd5b506102ed600b5481565b3480156104aa57600080fd5b506008546001600160a01b0316610296565b3480156104c857600080fd5b5061026961094d565b3480156104dd57600080fd5b506102d66104ec36600461180d565b61095c565b3480156104fd57600080fd5b506102d661050c3660046119a6565b610969565b6102d661051f3660046119dd565b61097d565b34801561053057600080fd5b506102696109aa565b34801561054557600080fd5b5061026961055436600461180d565b6109b7565b34801561056557600080fd5b506102d6610bbe565b34801561057a57600080fd5b506102d661058936600461194f565b610bd1565b34801561059a57600080fd5b506102d6610be5565b3480156105af57600080fd5b5061023f6105be366004611a59565b610c01565b6102d66105d136600461180d565b610c2f565b3480156105e257600080fd5b506102d66105f136600461194f565b610dfe565b34801561060257600080fd5b506102d66106113660046118a8565b610e12565b34801561062257600080fd5b506102d661063136600461180d565b610e88565b60006301ffc9a760e01b6001600160e01b03198316148061066757506380ac58cd60e01b6001600160e01b03198316145b806106825750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461069790611a8c565b80601f01602080910402602001604051908101604052809291908181526020018280546106c390611a8c565b80156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b5050505050905090565b600061072582610e95565b610742576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600e805461076b90611a8c565b80601f016020809104026020016040519081016040528092919081815260200182805461079790611a8c565b80156107e45780601f106107b9576101008083540402835291602001916107e4565b820191906000526020600020905b8154815290600101906020018083116107c757829003601f168201915b505050505081565b816107f681610ebc565b6108008383610f75565b505050565b826001600160a01b038116331461081f5761081f33610ebc565b61082a848484611015565b50505050565b6108386111ae565b600c805461ff001981166101009182900460ff1615909102179055565b826001600160a01b038116331461086f5761086f33610ebc565b61082a848484611208565b6108826111ae565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610800573d6000803e3d6000fd5b6108c26111ae565b600b55565b6108cf6111ae565b600d6108db8282611b0c565b5050565b600061068282611223565b60006001600160a01b038216610913576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6109416111ae565b61094b6000611291565b565b60606003805461069790611a8c565b6109646111ae565b600a55565b8161097381610ebc565b61080083836112e3565b836001600160a01b03811633146109975761099733610ebc565b6109a38585858561134f565b5050505050565b600f805461076b90611a8c565b60606109c282610e95565b610a135760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b600c54610100900460ff161515600003610ab957600e8054610a3490611a8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6090611a8c565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b50505050509050919050565b60008281526010602052604081208054610ad290611a8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90611a8c565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b505050505090506000610b5c611393565b90508051600003610b6e575092915050565b815115610ba0578082604051602001610b88929190611bcc565b60405160208183030381529060405292505050919050565b80610baa856113a2565b600f604051602001610b8893929190611bfb565b610bc66111ae565b61094b336001611435565b610bd96111ae565b600f6108db8282611b0c565b610bed6111ae565b600c805460ff19811660ff90911615179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600c5460ff16610c815760405162461bcd60e51b815260206004820152601f60248201527f53616c65206d7573742062652061637469766520746f206d696e74204e4654006044820152606401610a0a565b600b54811115610cd35760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420746f6f206d616e7920746f6b656e7320617420612074696d6500006044820152606401610a0a565b600a5481610ce0336108ea565b610cea9190611cb1565b1115610d385760405162461bcd60e51b815260206004820152601d60248201527f53616c6520776f756c6420657863656564206d61782062616c616e63650000006044820152606401610a0a565b61115c81610d496001546000540390565b610d539190611cb1565b1115610da15760405162461bcd60e51b815260206004820152601c60248201527f53616c6520776f756c6420657863656564206d617820737570706c79000000006044820152606401610a0a565b3460095482610db09190611cc4565b1115610df15760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b41032ba3432b960811b6044820152606401610a0a565b610dfb3382611435565b50565b610e066111ae565b600e6108db8282611b0c565b610e1a6111ae565b6001600160a01b038116610e7f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a0a565b610dfb81611291565b610e906111ae565b600955565b6000805482108015610682575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b15610dfb57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4d9190611cdb565b610dfb57604051633b79c77360e21b81526001600160a01b0382166004820152602401610a0a565b6000610f80826108df565b9050336001600160a01b03821614610fb957610f9c8133610c01565b610fb9576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061102082611223565b9050836001600160a01b0316816001600160a01b0316146110535760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176110a0576110838633610c01565b6110a057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166110c757604051633a954ecd60e21b815260040160405180910390fd5b80156110d257600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611164576001840160008181526004602052604081205490036111625760005481146111625760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b0316331461094b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a0a565b6108008383836040518060200160405280600081525061097d565b6000816000548110156112785760008181526004602052604081205490600160e01b82169003611276575b8060000361126f57506000190160008181526004602052604090205461124e565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61135a848484610805565b6001600160a01b0383163b1561082a576113768484848461144f565b61082a576040516368d2bf6b60e11b815260040160405180910390fd5b6060600d805461069790611a8c565b606060006113af8361153b565b600101905060008167ffffffffffffffff8111156113cf576113cf6118c3565b6040519080825280601f01601f1916602001820160405280156113f9576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461140357509392505050565b6108db828260405180602001604052806000815250611613565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611484903390899088908890600401611cf8565b6020604051808303816000875af19250505080156114bf575060408051601f3d908101601f191682019092526114bc91810190611d35565b60015b61151d573d8080156114ed576040519150601f19603f3d011682016040523d82523d6000602084013e6114f2565b606091505b508051600003611515576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061157a5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106115a6576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106115c457662386f26fc10000830492506010015b6305f5e10083106115dc576305f5e100830492506008015b61271083106115f057612710830492506004015b60648310611602576064830492506002015b600a83106106825760010192915050565b61161d8383611679565b6001600160a01b0383163b15610800576000548281035b611647600086838060010194508661144f565b611664576040516368d2bf6b60e11b815260040160405180910390fd5b8181106116345781600054146109a357600080fd5b600080549082900361169e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461174d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611715565b508160000361176e57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b031981168114610dfb57600080fd5b60006020828403121561179f57600080fd5b813561126f81611777565b60005b838110156117c55781810151838201526020016117ad565b50506000910152565b600081518084526117e68160208601602086016117aa565b601f01601f19169290920160200192915050565b60208152600061126f60208301846117ce565b60006020828403121561181f57600080fd5b5035919050565b80356001600160a01b038116811461183d57600080fd5b919050565b6000806040838503121561185557600080fd5b61185e83611826565b946020939093013593505050565b60008060006060848603121561188157600080fd5b61188a84611826565b925061189860208501611826565b9150604084013590509250925092565b6000602082840312156118ba57600080fd5b61126f82611826565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118f4576118f46118c3565b604051601f8501601f19908116603f0116810190828211818310171561191c5761191c6118c3565b8160405280935085815286868601111561193557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561196157600080fd5b813567ffffffffffffffff81111561197857600080fd5b8201601f8101841361198957600080fd5b611533848235602084016118d9565b8015158114610dfb57600080fd5b600080604083850312156119b957600080fd5b6119c283611826565b915060208301356119d281611998565b809150509250929050565b600080600080608085870312156119f357600080fd5b6119fc85611826565b9350611a0a60208601611826565b925060408501359150606085013567ffffffffffffffff811115611a2d57600080fd5b8501601f81018713611a3e57600080fd5b611a4d878235602084016118d9565b91505092959194509250565b60008060408385031215611a6c57600080fd5b611a7583611826565b9150611a8360208401611826565b90509250929050565b600181811c90821680611aa057607f821691505b602082108103611ac057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561080057600081815260208120601f850160051c81016020861015611aed5750805b601f850160051c820191505b818110156111a657828155600101611af9565b815167ffffffffffffffff811115611b2657611b266118c3565b611b3a81611b348454611a8c565b84611ac6565b602080601f831160018114611b6f5760008415611b575750858301515b600019600386901b1c1916600185901b1785556111a6565b600085815260208120601f198616915b82811015611b9e57888601518255948401946001909101908401611b7f565b5085821015611bbc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351611bde8184602088016117aa565b835190830190611bf28183602088016117aa565b01949350505050565b600084516020611c0e8285838a016117aa565b855191840191611c218184848a016117aa565b8554920191600090611c3281611a8c565b60018281168015611c4a5760018114611c5f57611c8b565b60ff1984168752821515830287019450611c8b565b896000528560002060005b84811015611c8357815489820152908301908701611c6a565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561068257610682611c9b565b808202811582820484141761068257610682611c9b565b600060208284031215611ced57600080fd5b815161126f81611998565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d2b908301846117ce565b9695505050505050565b600060208284031215611d4757600080fd5b815161126f8161177756fea26469706673582212201a3883dd9ef8a27c77985801ca7c787fc158d202ba5b824b469e913b9285f3f164736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initBaseURI (string):
Arg [1] : initNotRevealedUri (string):
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
81412:4311:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48284:639;;;;;;;;;;-1:-1:-1;48284:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;48284:639:0;;;;;;;;49186:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55677:218::-;;;;;;;;;;-1:-1:-1;55677:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;55677:218:0;1533:203:1;81782:28:0;;;;;;;;;;;;;:::i;84950:165::-;;;;;;:::i;:::-;;:::i;:::-;;44937:323;;;;;;;;;;-1:-1:-1;45211:12:0;;44998:7;45195:13;:28;44937:323;;;2324:25:1;;;2312:2;2297:18;44937:323:0;2178:177:1;85123:171:0;;;;;;:::i;:::-;;:::i;81520:41::-;;;;;;;;;;;;81557:4;81520:41;;83822:80;;;;;;;;;;;;;:::i;7735:143::-;;;;;;;;;;;;151:42;7735:143;;85302:179;;;;;;:::i;:::-;;:::i;84612:145::-;;;;;;;;;;-1:-1:-1;84612:145:0;;;;;:::i;:::-;;:::i;84512:92::-;;;;;;;;;;-1:-1:-1;84512:92:0;;;;;:::i;:::-;;:::i;83610:104::-;;;;;;;;;;-1:-1:-1;83610:104:0;;;;;:::i;:::-;;:::i;50579:152::-;;;;;;;;;;-1:-1:-1;50579:152:0;;;;;:::i;:::-;;:::i;81568:38::-;;;;;;;;;;;;;;;;81726:28;;;;;;;;;;-1:-1:-1;81726:28:0;;;;;;;;;;;81685:33;;;;;;;;;;-1:-1:-1;81685:33:0;;;;;;;;46121:233;;;;;;;;;;-1:-1:-1;46121:233:0;;;;;:::i;:::-;;:::i;29063:103::-;;;;;;;;;;;;;:::i;81614:29::-;;;;;;;;;;;;;;;;81651:26;;;;;;;;;;;;;;;;28415:87;;;;;;;;;;-1:-1:-1;28488:6:0;;-1:-1:-1;;;;;28488:6:0;28415:87;;49362:104;;;;;;;;;;;;;:::i;84400:::-;;;;;;;;;;-1:-1:-1;84400:104:0;;;;;:::i;:::-;;:::i;84766:176::-;;;;;;;;;;-1:-1:-1;84766:176:0;;;;;:::i;:::-;;:::i;85489:229::-;;;;;;:::i;:::-;;:::i;81817:37::-;;;;;;;;;;;;;:::i;82746:740::-;;;;;;;;;;-1:-1:-1;82746:740:0;;;;;:::i;:::-;;:::i;83910:81::-;;;;;;;;;;;;;:::i;84241:151::-;;;;;;;;;;-1:-1:-1;84241:151:0;;;;;:::i;:::-;;:::i;83722:92::-;;;;;;;;;;;;;:::i;56626:164::-;;;;;;;;;;-1:-1:-1;56626:164:0;;;;;:::i;:::-;;:::i;82126:612::-;;;;;;:::i;:::-;;:::i;84107:126::-;;;;;;;;;;-1:-1:-1;84107:126:0;;;;;:::i;:::-;;:::i;29321:201::-;;;;;;;;;;-1:-1:-1;29321:201:0;;;;;:::i;:::-;;:::i;83999:100::-;;;;;;;;;;-1:-1:-1;83999:100:0;;;;;:::i;:::-;;:::i;48284:639::-;48369:4;-1:-1:-1;;;;;;;;;48693:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;48770:25:0;;;48693:102;:179;;;-1:-1:-1;;;;;;;;;;48847:25:0;;;48693:179;48673:199;48284:639;-1:-1:-1;;48284:639:0:o;49186:100::-;49240:13;49273:5;49266:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49186:100;:::o;55677:218::-;55753:7;55778:16;55786:7;55778;:16::i;:::-;55773:64;;55803:34;;-1:-1:-1;;;55803:34:0;;;;;;;;;;;55773:64;-1:-1:-1;55857:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;55857:30:0;;55677:218::o;81782:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;84950:165::-;85054:8;9517:30;9538:8;9517:20;:30::i;:::-;85075:32:::1;85089:8;85099:7;85075:13;:32::i;:::-;84950:165:::0;;;:::o;85123:171::-;85232:4;-1:-1:-1;;;;;9243:18:0;;9251:10;9243:18;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;85249:37:::1;85268:4;85274:2;85278:7;85249:18;:37::i;:::-;85123:171:::0;;;;:::o;83822:80::-;28301:13;:11;:13::i;:::-;83885:9:::1;::::0;;-1:-1:-1;;83872:22:0;::::1;83885:9;::::0;;;::::1;;;83884:10;83872:22:::0;;::::1;;::::0;;83822:80::o;85302:179::-;85415:4;-1:-1:-1;;;;;9243:18:0;;9251:10;9243:18;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;85432:41:::1;85455:4;85461:2;85465:7;85432:22;:41::i;84612:145::-:0;28301:13;:11;:13::i;:::-;84720:29:::1;::::0;84688:21:::1;::::0;-1:-1:-1;;;;;84720:20:0;::::1;::::0;:29;::::1;;;::::0;84688:21;;84670:15:::1;84720:29:::0;84670:15;84720:29;84688:21;84720:20;:29;::::1;;;;;;;;;;;;;::::0;::::1;;;;84512:92:::0;28301:13;:11;:13::i;:::-;84578:7:::1;:18:::0;84512:92::o;83610:104::-;28301:13;:11;:13::i;:::-;83685:7:::1;:21;83695:11:::0;83685:7;:21:::1;:::i;:::-;;83610:104:::0;:::o;50579:152::-;50651:7;50694:27;50713:7;50694:18;:27::i;46121:233::-;46193:7;-1:-1:-1;;;;;46217:19:0;;46213:60;;46245:28;;-1:-1:-1;;;46245:28:0;;;;;;;;;;;46213:60;-1:-1:-1;;;;;;46291:25:0;;;;;:18;:25;;;;;;40280:13;46291:55;;46121:233::o;29063:103::-;28301:13;:11;:13::i;:::-;29128:30:::1;29155:1;29128:18;:30::i;:::-;29063:103::o:0;49362:104::-;49418:13;49451:7;49444:14;;;;;:::i;84400:104::-;28301:13;:11;:13::i;:::-;84472:10:::1;:24:::0;84400:104::o;84766:176::-;84870:8;9517:30;9538:8;9517:20;:30::i;:::-;84891:43:::1;84915:8;84925;84891:23;:43::i;85489:229::-:0;85642:4;-1:-1:-1;;;;;9243:18:0;;9251:10;9243:18;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;85663:47:::1;85686:4;85692:2;85696:7;85705:4;85663:22;:47::i;:::-;85489:229:::0;;;;;:::o;81817:37::-;;;;;;;:::i;82746:740::-;82864:13;82917:16;82925:7;82917;:16::i;:::-;82895:97;;;;-1:-1:-1;;;82895:97:0;;8519:2:1;82895:97:0;;;8501:21:1;8558:2;8538:18;;;8531:30;8597:33;8577:18;;;8570:61;8648:18;;82895:97:0;;;;;;;;;83009:9;;;;;;;:18;;83022:5;83009:18;83005:72;;83051:14;83044:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82746:740;;;:::o;83005:72::-;83089:23;83115:19;;;:10;:19;;;;;83089:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83145:18;83166:10;:8;:10::i;:::-;83145:31;;83199:4;83193:18;83215:1;83193:23;83189:72;;-1:-1:-1;83240:9:0;82746:740;-1:-1:-1;;82746:740:0:o;83189:72::-;83277:23;;:27;83273:108;;83352:4;83358:9;83335:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;83321:48;;;;82746:740;;;:::o;83273:108::-;83437:4;83443:18;:7;:16;:18::i;:::-;83463:13;83420:57;;;;;;;;;;:::i;83910:81::-;28301:13;:11;:13::i;:::-;83959:24:::1;83969:10;83981:1;83959:9;:24::i;84241:151::-:0;28301:13;:11;:13::i;:::-;84351::::1;:33;84367:17:::0;84351:13;:33:::1;:::i;83722:92::-:0;28301:13;:11;:13::i;:::-;83793::::1;::::0;;-1:-1:-1;;83776:30:0;::::1;83793:13;::::0;;::::1;83792:14;83776:30;::::0;;83722:92::o;56626:164::-;-1:-1:-1;;;;;56747:25:0;;;56723:4;56747:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;56626:164::o;82126:612::-;82203:13;;;;82195:57;;;;-1:-1:-1;;;82195:57:0;;10641:2:1;82195:57:0;;;10623:21:1;10680:2;10660:18;;;10653:30;10719:33;10699:18;;;10692:61;10770:18;;82195:57:0;10439:355:1;82195:57:0;82288:7;;82271:13;:24;;82263:67;;;;-1:-1:-1;;;82263:67:0;;11001:2:1;82263:67:0;;;10983:21:1;11040:2;11020:18;;;11013:30;11079:32;11059:18;;;11052:60;11129:18;;82263:67:0;10799:354:1;82263:67:0;82405:10;;82388:13;82363:21;82373:10;82363:9;:21::i;:::-;:38;;;;:::i;:::-;:52;;82341:132;;;;-1:-1:-1;;;82341:132:0;;11622:2:1;82341:132:0;;;11604:21:1;11661:2;11641:18;;;11634:30;11700:31;11680:18;;;11673:59;11749:18;;82341:132:0;11420:353:1;82341:132:0;81557:4;82522:13;82506;45211:12;;44998:7;45195:13;:28;;44937:323;82506:13;:29;;;;:::i;:::-;:43;;82484:121;;;;-1:-1:-1;;;82484:121:0;;11980:2:1;82484:121:0;;;11962:21:1;12019:2;11999:18;;;11992:30;12058;12038:18;;;12031:58;12106:18;;82484:121:0;11778:352:1;82484:121:0;82653:9;82640;;82624:13;:25;;;;:::i;:::-;:38;;82616:67;;;;-1:-1:-1;;;82616:67:0;;12510:2:1;82616:67:0;;;12492:21:1;12549:2;12529:18;;;12522:30;-1:-1:-1;;;12568:18:1;;;12561:46;12624:18;;82616:67:0;12308:340:1;82616:67:0;82694:36;82704:10;82716:13;82694:9;:36::i;:::-;82126:612;:::o;84107:126::-;28301:13;:11;:13::i;:::-;84193:14:::1;:32;84210:15:::0;84193:14;:32:::1;:::i;29321:201::-:0;28301:13;:11;:13::i;:::-;-1:-1:-1;;;;;29410:22:0;::::1;29402:73;;;::::0;-1:-1:-1;;;29402:73:0;;12855:2:1;29402:73:0::1;::::0;::::1;12837:21:1::0;12894:2;12874:18;;;12867:30;12933:34;12913:18;;;12906:62;-1:-1:-1;;;12984:18:1;;;12977:36;13030:19;;29402:73:0::1;12653:402:1::0;29402:73:0::1;29486:28;29505:8;29486:18;:28::i;83999:100::-:0;28301:13;:11;:13::i;:::-;84069:9:::1;:22:::0;83999:100::o;57048:282::-;57113:4;57203:13;;57193:7;:23;57150:153;;;;-1:-1:-1;;57254:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;57254:44:0;:49;;57048:282::o;9660:647::-;151:42;9851:45;:49;9847:453;;10150:67;;-1:-1:-1;;;10150:67:0;;10201:4;10150:67;;;13272:34:1;-1:-1:-1;;;;;13342:15:1;;13322:18;;;13315:43;151:42:0;;10150;;13207:18:1;;10150:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10145:144;;10245:28;;-1:-1:-1;;;10245:28:0;;-1:-1:-1;;;;;1697:32:1;;10245:28:0;;;1679:51:1;1652:18;;10245:28:0;1533:203:1;55110:408:0;55199:13;55215:16;55223:7;55215;:16::i;:::-;55199:32;-1:-1:-1;79443:10:0;-1:-1:-1;;;;;55248:28:0;;;55244:175;;55296:44;55313:5;79443:10;56626:164;:::i;55296:44::-;55291:128;;55368:35;;-1:-1:-1;;;55368:35:0;;;;;;;;;;;55291:128;55431:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;55431:35:0;-1:-1:-1;;;;;55431:35:0;;;;;;;;;55482:28;;55431:24;;55482:28;;;;;;;55188:330;55110:408;;:::o;59316:2825::-;59458:27;59488;59507:7;59488:18;:27::i;:::-;59458:57;;59573:4;-1:-1:-1;;;;;59532:45:0;59548:19;-1:-1:-1;;;;;59532:45:0;;59528:86;;59586:28;;-1:-1:-1;;;59586:28:0;;;;;;;;;;;59528:86;59628:27;58424:24;;;:15;:24;;;;;58652:26;;79443:10;58049:30;;;-1:-1:-1;;;;;57742:28:0;;58027:20;;;58024:56;59814:180;;59907:43;59924:4;79443:10;56626:164;:::i;59907:43::-;59902:92;;59959:35;;-1:-1:-1;;;59959:35:0;;;;;;;;;;;59902:92;-1:-1:-1;;;;;60011:16:0;;60007:52;;60036:23;;-1:-1:-1;;;60036:23:0;;;;;;;;;;;60007:52;60208:15;60205:160;;;60348:1;60327:19;60320:30;60205:160;-1:-1:-1;;;;;60745:24:0;;;;;;;:18;:24;;;;;;60743:26;;-1:-1:-1;;60743:26:0;;;60814:22;;;;;;;;;60812:24;;-1:-1:-1;60812:24:0;;;53968:11;53943:23;53939:41;53926:63;-1:-1:-1;;;53926:63:0;61107:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;61402:47:0;;:52;;61398:627;;61507:1;61497:11;;61475:19;61630:30;;;:17;:30;;;;;;:35;;61626:384;;61768:13;;61753:11;:28;61749:242;;61915:30;;;;:17;:30;;;;;:52;;;61749:242;61456:569;61398:627;62072:7;62068:2;-1:-1:-1;;;;;62053:27:0;62062:4;-1:-1:-1;;;;;62053:27:0;;;;;;;;;;;62091:42;59447:2694;;;59316:2825;;;:::o;28580:132::-;28488:6;;-1:-1:-1;;;;;28488:6:0;79443:10;28644:23;28636:68;;;;-1:-1:-1;;;28636:68:0;;13821:2:1;28636:68:0;;;13803:21:1;;;13840:18;;;13833:30;13899:34;13879:18;;;13872:62;13951:18;;28636:68:0;13619:356:1;62237:193:0;62383:39;62400:4;62406:2;62410:7;62383:39;;;;;;;;;;;;:16;:39::i;51734:1275::-;51801:7;51836;51938:13;;51931:4;:20;51927:1015;;;51976:14;51993:23;;;:17;:23;;;;;;;-1:-1:-1;;;52082:24:0;;:29;;52078:845;;52747:113;52754:6;52764:1;52754:11;52747:113;;-1:-1:-1;;;52825:6:0;52807:25;;;;:17;:25;;;;;;52747:113;;;52893:6;51734:1275;-1:-1:-1;;;51734:1275:0:o;52078:845::-;51953:989;51927:1015;52970:31;;-1:-1:-1;;;52970:31:0;;;;;;;;;;;29682:191;29775:6;;;-1:-1:-1;;;;;29792:17:0;;;-1:-1:-1;;;;;;29792:17:0;;;;;;;29825:40;;29775:6;;;29792:17;29775:6;;29825:40;;29756:16;;29825:40;29745:128;29682:191;:::o;56235:234::-;79443:10;56330:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;56330:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;56330:60:0;;;;;;;;;;56406:55;;540:41:1;;;56330:49:0;;79443:10;56406:55;;513:18:1;56406:55:0;;;;;;;56235:234;;:::o;63028:407::-;63203:31;63216:4;63222:2;63226:7;63203:12;:31::i;:::-;-1:-1:-1;;;;;63249:14:0;;;:19;63245:183;;63288:56;63319:4;63325:2;63329:7;63338:5;63288:30;:56::i;:::-;63283:145;;63372:40;;-1:-1:-1;;;63372:40:0;;;;;;;;;;;83494:108;83554:13;83587:7;83580:14;;;;;:::i;24393:716::-;24449:13;24500:14;24517:17;24528:5;24517:10;:17::i;:::-;24537:1;24517:21;24500:38;;24553:20;24587:6;24576:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24576:18:0;-1:-1:-1;24553:41:0;-1:-1:-1;24718:28:0;;;24734:2;24718:28;24775:288;-1:-1:-1;;24807:5:0;-1:-1:-1;;;24944:2:0;24933:14;;24928:30;24807:5;24915:44;25005:2;24996:11;;;-1:-1:-1;25026:21:0;24775:288;25026:21;-1:-1:-1;25084:6:0;24393:716;-1:-1:-1;;;24393:716:0:o;73188:112::-;73265:27;73275:2;73279:8;73265:27;;;;;;;;;;;;:9;:27::i;65519:716::-;65703:88;;-1:-1:-1;;;65703:88:0;;65682:4;;-1:-1:-1;;;;;65703:45:0;;;;;:88;;79443:10;;65770:4;;65776:7;;65785:5;;65703:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65703:88:0;;;;;;;;-1:-1:-1;;65703:88:0;;;;;;;;;;;;:::i;:::-;;;65699:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65986:6;:13;66003:1;65986:18;65982:235;;66032:40;;-1:-1:-1;;;66032:40:0;;;;;;;;;;;65982:235;66175:6;66169:13;66160:6;66156:2;66152:15;66145:38;65699:529;-1:-1:-1;;;;;;65862:64:0;-1:-1:-1;;;65862:64:0;;-1:-1:-1;65699:529:0;65519:716;;;;;;:::o;21259:922::-;21312:7;;-1:-1:-1;;;21390:15:0;;21386:102;;-1:-1:-1;;;21426:15:0;;;-1:-1:-1;21470:2:0;21460:12;21386:102;21515:6;21506:5;:15;21502:102;;21551:6;21542:15;;;-1:-1:-1;21586:2:0;21576:12;21502:102;21631:6;21622:5;:15;21618:102;;21667:6;21658:15;;;-1:-1:-1;21702:2:0;21692:12;21618:102;21747:5;21738;:14;21734:99;;21782:5;21773:14;;;-1:-1:-1;21816:1:0;21806:11;21734:99;21860:5;21851;:14;21847:99;;21895:5;21886:14;;;-1:-1:-1;21929:1:0;21919:11;21847:99;21973:5;21964;:14;21960:99;;22008:5;21999:14;;;-1:-1:-1;22042:1:0;22032:11;21960:99;22086:5;22077;:14;22073:66;;22122:1;22112:11;22167:6;21259:922;-1:-1:-1;;21259:922:0:o;72415:689::-;72546:19;72552:2;72556:8;72546:5;:19::i;:::-;-1:-1:-1;;;;;72607:14:0;;;:19;72603:483;;72647:11;72661:13;72709:14;;;72742:233;72773:62;72812:1;72816:2;72820:7;;;;;;72829:5;72773:30;:62::i;:::-;72768:167;;72871:40;;-1:-1:-1;;;72871:40:0;;;;;;;;;;;72768:167;72970:3;72962:5;:11;72742:233;;73057:3;73040:13;;:20;73036:34;;73062:8;;;66697:2966;66770:20;66793:13;;;66821;;;66817:44;;66843:18;;-1:-1:-1;;;66843:18:0;;;;;;;;;;;66817:44;-1:-1:-1;;;;;67349:22:0;;;;;;:18;:22;;;;40418:2;67349:22;;;:71;;67387:32;67375:45;;67349:71;;;67663:31;;;:17;:31;;;;;-1:-1:-1;54399:15:0;;54373:24;54369:46;53968:11;53943:23;53939:41;53936:52;53926:63;;67663:173;;67898:23;;;;67663:31;;67349:22;;68663:25;67349:22;;68516:335;69177:1;69163:12;69159:20;69117:346;69218:3;69209:7;69206:16;69117:346;;69436:7;69426:8;69423:1;69396:25;69393:1;69390;69385:59;69271:1;69258:15;69117:346;;;69121:77;69496:8;69508:1;69496:13;69492:45;;69518:19;;-1:-1:-1;;;69518:19:0;;;;;;;;;;;69492:45;69554:13;:19;-1:-1:-1;84950:165: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;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348: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;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2932:186::-;2991:6;3044:2;3032:9;3023:7;3019:23;3015:32;3012:52;;;3060:1;3057;3050:12;3012:52;3083:29;3102:9;3083:29;:::i;3123:127::-;3184:10;3179:3;3175:20;3172:1;3165:31;3215:4;3212:1;3205:15;3239:4;3236:1;3229:15;3255:632;3320:5;3350:18;3391:2;3383:6;3380:14;3377:40;;;3397:18;;:::i;:::-;3472:2;3466:9;3440:2;3526:15;;-1:-1:-1;;3522:24:1;;;3548:2;3518:33;3514:42;3502:55;;;3572:18;;;3592:22;;;3569:46;3566:72;;;3618:18;;:::i;:::-;3658:10;3654:2;3647:22;3687:6;3678:15;;3717:6;3709;3702:22;3757:3;3748:6;3743:3;3739:16;3736:25;3733:45;;;3774:1;3771;3764:12;3733:45;3824:6;3819:3;3812:4;3804:6;3800:17;3787:44;3879:1;3872:4;3863:6;3855;3851:19;3847:30;3840:41;;;;3255:632;;;;;:::o;3892:451::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4070:9;4057:23;4103:18;4095:6;4092:30;4089:50;;;4135:1;4132;4125:12;4089:50;4158:22;;4211:4;4203:13;;4199:27;-1:-1:-1;4189:55:1;;4240:1;4237;4230:12;4189:55;4263:74;4329:7;4324:2;4311:16;4306:2;4302;4298:11;4263:74;:::i;4348:118::-;4434:5;4427:13;4420:21;4413:5;4410:32;4400:60;;4456:1;4453;4446:12;4471:315;4536:6;4544;4597:2;4585:9;4576:7;4572:23;4568:32;4565:52;;;4613:1;4610;4603:12;4565:52;4636:29;4655:9;4636:29;:::i;:::-;4626:39;;4715:2;4704:9;4700:18;4687:32;4728:28;4750:5;4728:28;:::i;:::-;4775:5;4765:15;;;4471:315;;;;;:::o;4791:667::-;4886:6;4894;4902;4910;4963:3;4951:9;4942:7;4938:23;4934:33;4931:53;;;4980:1;4977;4970:12;4931:53;5003:29;5022:9;5003:29;:::i;:::-;4993:39;;5051:38;5085:2;5074:9;5070:18;5051:38;:::i;:::-;5041:48;;5136:2;5125:9;5121:18;5108:32;5098:42;;5191:2;5180:9;5176:18;5163:32;5218:18;5210:6;5207:30;5204:50;;;5250:1;5247;5240:12;5204:50;5273:22;;5326:4;5318:13;;5314:27;-1:-1:-1;5304:55:1;;5355:1;5352;5345:12;5304:55;5378:74;5444:7;5439:2;5426:16;5421:2;5417;5413:11;5378:74;:::i;:::-;5368:84;;;4791:667;;;;;;;:::o;5463:260::-;5531:6;5539;5592:2;5580:9;5571:7;5567:23;5563:32;5560:52;;;5608:1;5605;5598:12;5560:52;5631:29;5650:9;5631:29;:::i;:::-;5621:39;;5679:38;5713:2;5702:9;5698:18;5679:38;:::i;:::-;5669:48;;5463:260;;;;;:::o;5728:380::-;5807:1;5803:12;;;;5850;;;5871:61;;5925:4;5917:6;5913:17;5903:27;;5871:61;5978:2;5970:6;5967:14;5947:18;5944:38;5941:161;;6024:10;6019:3;6015:20;6012:1;6005:31;6059:4;6056:1;6049:15;6087:4;6084:1;6077:15;5941:161;;5728:380;;;:::o;6239:545::-;6341:2;6336:3;6333:11;6330:448;;;6377:1;6402:5;6398:2;6391:17;6447:4;6443:2;6433:19;6517:2;6505:10;6501:19;6498:1;6494:27;6488:4;6484:38;6553:4;6541:10;6538:20;6535:47;;;-1:-1:-1;6576:4:1;6535:47;6631:2;6626:3;6622:12;6619:1;6615:20;6609:4;6605:31;6595:41;;6686:82;6704:2;6697:5;6694:13;6686:82;;;6749:17;;;6730:1;6719:13;6686:82;;6960:1352;7086:3;7080:10;7113:18;7105:6;7102:30;7099:56;;;7135:18;;:::i;:::-;7164:97;7254:6;7214:38;7246:4;7240:11;7214:38;:::i;:::-;7208:4;7164:97;:::i;:::-;7316:4;;7380:2;7369:14;;7397:1;7392:663;;;;8099:1;8116:6;8113:89;;;-1:-1:-1;8168:19:1;;;8162:26;8113:89;-1:-1:-1;;6917:1:1;6913:11;;;6909:24;6905:29;6895:40;6941:1;6937:11;;;6892:57;8215:81;;7362:944;;7392:663;6186:1;6179:14;;;6223:4;6210:18;;-1:-1:-1;;7428:20:1;;;7546:236;7560:7;7557:1;7554:14;7546:236;;;7649:19;;;7643:26;7628:42;;7741:27;;;;7709:1;7697:14;;;;7576:19;;7546:236;;;7550:3;7810:6;7801:7;7798:19;7795:201;;;7871:19;;;7865:26;-1:-1:-1;;7954:1:1;7950:14;;;7966:3;7946:24;7942:37;7938:42;7923:58;7908:74;;7795:201;-1:-1:-1;;;;;8042:1:1;8026:14;;;8022:22;8009:36;;-1:-1:-1;6960:1352:1:o;8677:496::-;8856:3;8894:6;8888:13;8910:66;8969:6;8964:3;8957:4;8949:6;8945:17;8910:66;:::i;:::-;9039:13;;8998:16;;;;9061:70;9039:13;8998:16;9108:4;9096:17;;9061:70;:::i;:::-;9147:20;;8677:496;-1:-1:-1;;;;8677:496:1:o;9178:1256::-;9402:3;9440:6;9434:13;9466:4;9479:64;9536:6;9531:3;9526:2;9518:6;9514:15;9479:64;:::i;:::-;9606:13;;9565:16;;;;9628:68;9606:13;9565:16;9663:15;;;9628:68;:::i;:::-;9785:13;;9718:20;;;9758:1;;9823:36;9785:13;9823:36;:::i;:::-;9878:1;9895:18;;;9922:141;;;;10077:1;10072:337;;;;9888:521;;9922:141;-1:-1:-1;;9957:24:1;;9943:39;;10034:16;;10027:24;10013:39;;10002:51;;;-1:-1:-1;9922:141:1;;10072:337;10103:6;10100:1;10093:17;10151:2;10148:1;10138:16;10176:1;10190:169;10204:8;10201:1;10198:15;10190:169;;;10286:14;;10271:13;;;10264:37;10329:16;;;;10221:10;;10190:169;;;10194:3;;10390:8;10383:5;10379:20;10372:27;;9888:521;-1:-1:-1;10425:3:1;;9178:1256;-1:-1:-1;;;;;;;;;;9178:1256:1:o;11158:127::-;11219:10;11214:3;11210:20;11207:1;11200:31;11250:4;11247:1;11240:15;11274:4;11271:1;11264:15;11290:125;11355:9;;;11376:10;;;11373:36;;;11389:18;;:::i;12135:168::-;12208:9;;;12239;;12256:15;;;12250:22;;12236:37;12226:71;;12277:18;;:::i;13369:245::-;13436:6;13489:2;13477:9;13468:7;13464:23;13460:32;13457:52;;;13505:1;13502;13495:12;13457:52;13537:9;13531:16;13556:28;13578:5;13556:28;:::i;14112:489::-;-1:-1:-1;;;;;14381:15:1;;;14363:34;;14433:15;;14428:2;14413:18;;14406:43;14480:2;14465:18;;14458:34;;;14528:3;14523:2;14508:18;;14501:31;;;14306:4;;14549:46;;14575:19;;14567:6;14549:46;:::i;:::-;14541:54;14112:489;-1:-1:-1;;;;;;14112:489:1:o;14606:249::-;14675:6;14728:2;14716:9;14707:7;14703:23;14699:32;14696:52;;;14744:1;14741;14734:12;14696:52;14776:9;14770:16;14795:30;14819:5;14795:30;:::i
Swarm Source
ipfs://1a3883dd9ef8a27c77985801ca7c787fc158d202ba5b824b469e913b9285f3f1
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.