Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
224 SDLCB
Holders
93
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SDLCBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SDLC_BABIES_NFT
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-02 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // 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: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_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) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @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/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: contracts/SDLC_Babies.sol // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @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 {} } pragma solidity ^0.8.7; contract SDLC_BABIES_NFT is ERC721A, Ownable { using Strings for uint256; uint256 public MAX_SUPPLY = 224; string private BASE_URI; string private UNREVEAL_URI; constructor() ERC721A("SDLC Babies", "SDLCB") {} function numberMinted(address _owner) public view returns (uint256) { return _numberMinted(_owner); } function airdrop(address[] memory _airdropAddresses, uint256 _mintAmount) external onlyOwner { require(totalSupply() + _airdropAddresses.length * _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply"); for (uint256 i = 0; i < _airdropAddresses.length; i++) { address to = _airdropAddresses[i]; _mintLoop(to, _mintAmount); } } function _baseURI() internal view virtual override returns (string memory) { return BASE_URI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : UNREVEAL_URI; } function setMaxSupply(uint256 _supply) external onlyOwner { MAX_SUPPLY = _supply; } function setBaseURI(string memory _newBaseURI) external onlyOwner { BASE_URI = _newBaseURI; } function setUnrevealURI(string memory _newUnrevealURI) external onlyOwner { UNREVEAL_URI = _newUnrevealURI; } function _mintLoop(address _receiver, uint256 _mintAmount) internal { _safeMint(_receiver, _mintAmount); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUnrevealURI","type":"string"}],"name":"setUnrevealURI","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260e06009553480156200001657600080fd5b506040518060400160405280600b81526020016a53444c432042616269657360a81b8152506040518060400160405280600581526020016429a22621a160d91b81525081600290816200006a919062000197565b50600362000079828262000197565b50505062000096620000906200009c60201b60201c565b620000a0565b62000263565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200011d57607f821691505b6020821081036200013e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200019257600081815260208120601f850160051c810160208610156200016d5750805b601f850160051c820191505b818110156200018e5782815560010162000179565b5050505b505050565b81516001600160401b03811115620001b357620001b3620000f2565b620001cb81620001c4845462000108565b8462000144565b602080601f831160018114620002035760008415620001ea5750858301515b600019600386901b1c1916600185901b1785556200018e565b600085815260208120601f198616915b82811015620002345788860151825594840194600190910190840162000213565b5085821015620002535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6118a780620002736000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063b88d4fde1161007c578063b88d4fde146102fb578063c204642c1461030e578063c87b56dd14610321578063dc33e68114610334578063e985e9c514610347578063f2fde38b1461038357600080fd5b8063715018a61461026b5780638da5cb5b146102735780639231ab2a1461028457806395d89b41146102cd57806397bc411c146102d5578063a22cb465146102e857600080fd5b806332cb6b0c1161011557806332cb6b0c1461020357806342842e0e1461020c57806355f804b31461021f5780636352211e146102325780636f8b44b01461024557806370a082311461025857600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c557806318160ddd146101da57806323b872dd146101f0575b600080fd5b61017061016b366004611211565b610396565b60405190151581526020015b60405180910390f35b61018d6103e8565b60405161017c9190611286565b6101ad6101a8366004611299565b61047a565b6040516001600160a01b03909116815260200161017c565b6101d86101d33660046112ce565b6104be565b005b600154600054035b60405190815260200161017c565b6101d86101fe3660046112f8565b61054b565b6101e260095481565b6101d861021a3660046112f8565b610556565b6101d861022d3660046113d1565b610571565b6101ad610240366004611299565b610589565b6101d8610253366004611299565b61059b565b6101e2610266366004611419565b6105a8565b6101d86105f6565b6008546001600160a01b03166101ad565b610297610292366004611299565b61060a565b6040805182516001600160a01b031681526020808401516001600160401b0316908201529181015115159082015260600161017c565b61018d610630565b6101d86102e33660046113d1565b61063f565b6101d86102f6366004611434565b610653565b6101d8610309366004611470565b6106e8565b6101d861031c3660046114eb565b610722565b61018d61032f366004611299565b6107da565b6101e2610342366004611419565b610920565b61017061035536600461159d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101d8610391366004611419565b61092b565b60006001600160e01b031982166380ac58cd60e01b14806103c757506001600160e01b03198216635b5e139f60e01b145b806103e257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546103f7906115d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610423906115d0565b80156104705780601f1061044557610100808354040283529160200191610470565b820191906000526020600020905b81548152906001019060200180831161045357829003601f168201915b5050505050905090565b6000610485826109a4565b6104a2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104c982610589565b9050806001600160a01b0316836001600160a01b0316036104fd5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061051d575061051b8133610355565b155b1561053b576040516367d9dca160e11b815260040160405180910390fd5b6105468383836109cf565b505050565b610546838383610a2b565b610546838383604051806020016040528060008152506106e8565b610579610c3f565b600a6105858282611658565b5050565b600061059482610c99565b5192915050565b6105a3610c3f565b600955565b60006001600160a01b0382166105d1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6105fe610c3f565b6106086000610db2565b565b60408051606081018252600080825260208201819052918101919091526103e282610c99565b6060600380546103f7906115d0565b610647610c3f565b600b6105858282611658565b336001600160a01b0383160361067c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6106f3848484610a2b565b6106ff84848484610e04565b61071c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61072a610c3f565b60095481835161073a919061172d565b6001546000540361074b919061174c565b11156107935760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b60448201526064015b60405180910390fd5b60005b82518110156105465760008382815181106107b3576107b3611764565b602002602001015190506107c78184610f07565b50806107d28161177a565b915050610796565b60606107e5826109a4565b6108495760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161078a565b6000610853610f11565b905060008151116108ee57600b805461086b906115d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610897906115d0565b80156108e45780601f106108b9576101008083540402835291602001916108e4565b820191906000526020600020905b8154815290600101906020018083116108c757829003601f168201915b5050505050610919565b806108f884610f20565b604051602001610909929190611793565b6040516020818303038152906040525b9392505050565b60006103e282611020565b610933610c3f565b6001600160a01b0381166109985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078a565b6109a181610db2565b50565b60008054821080156103e2575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610a3682610c99565b80519091506000906001600160a01b0316336001600160a01b03161480610a6457508151610a649033610355565b80610a7f575033610a748461047a565b6001600160a01b0316145b905080610a9f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610ad45760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610afb57604051633a954ecd60e21b815260040160405180910390fd5b610b0b60008484600001516109cf565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610bf557600054811015610bf557825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6008546001600160a01b031633146106085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161078a565b6040805160608101825260008082526020820181905291810182905290548290811015610d9957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610d975780516001600160a01b031615610d2e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215610d92579392505050565b610d2e565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15610efb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610e489033908990889088906004016117c2565b6020604051808303816000875af1925050508015610e83575060408051601f3d908101601f19168201909252610e80918101906117ff565b60015b610ee1573d808015610eb1576040519150601f19603f3d011682016040523d82523d6000602084013e610eb6565b606091505b508051600003610ed9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610eff565b5060015b949350505050565b6105858282611075565b6060600a80546103f7906115d0565b606081600003610f475750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610f715780610f5b8161177a565b9150610f6a9050600a83611832565b9150610f4b565b6000816001600160401b03811115610f8b57610f8b611334565b6040519080825280601f01601f191660200182016040528015610fb5576020820181803683370190505b5090505b8415610eff57610fca600183611846565b9150610fd7600a8661185d565b610fe290603061174c565b60f81b818381518110610ff757610ff7611764565b60200101906001600160f81b031916908160001a905350611019600a86611832565b9450610fb9565b60006001600160a01b038216611049576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b61058582826040518060200160405280600081525061054683838360016000546001600160a01b0385166110bb57604051622e076360e81b815260040160405180910390fd5b836000036110dc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156111f25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156111c857506111c66000888488610e04565b155b156111e6576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611171565b50600055610c38565b6001600160e01b0319811681146109a157600080fd5b60006020828403121561122357600080fd5b8135610919816111fb565b60005b83811015611249578181015183820152602001611231565b8381111561071c5750506000910152565b6000815180845261127281602086016020860161122e565b601f01601f19169290920160200192915050565b602081526000610919602083018461125a565b6000602082840312156112ab57600080fd5b5035919050565b80356001600160a01b03811681146112c957600080fd5b919050565b600080604083850312156112e157600080fd5b6112ea836112b2565b946020939093013593505050565b60008060006060848603121561130d57600080fd5b611316846112b2565b9250611324602085016112b2565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561137257611372611334565b604052919050565b60006001600160401b0383111561139357611393611334565b6113a6601f8401601f191660200161134a565b90508281528383830111156113ba57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156113e357600080fd5b81356001600160401b038111156113f957600080fd5b8201601f8101841361140a57600080fd5b610eff8482356020840161137a565b60006020828403121561142b57600080fd5b610919826112b2565b6000806040838503121561144757600080fd5b611450836112b2565b91506020830135801515811461146557600080fd5b809150509250929050565b6000806000806080858703121561148657600080fd5b61148f856112b2565b935061149d602086016112b2565b92506040850135915060608501356001600160401b038111156114bf57600080fd5b8501601f810187136114d057600080fd5b6114df8782356020840161137a565b91505092959194509250565b600080604083850312156114fe57600080fd5b82356001600160401b038082111561151557600080fd5b818501915085601f83011261152957600080fd5b813560208282111561153d5761153d611334565b8160051b925061154e81840161134a565b828152928401810192818101908985111561156857600080fd5b948201945b8486101561158d5761157e866112b2565b8252948201949082019061156d565b9997909101359750505050505050565b600080604083850312156115b057600080fd5b6115b9836112b2565b91506115c7602084016112b2565b90509250929050565b600181811c908216806115e457607f821691505b60208210810361160457634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561054657600081815260208120601f850160051c810160208610156116315750805b601f850160051c820191505b818110156116505782815560010161163d565b505050505050565b81516001600160401b0381111561167157611671611334565b6116858161167f84546115d0565b8461160a565b602080601f8311600181146116ba57600084156116a25750858301515b600019600386901b1c1916600185901b178555611650565b600085815260208120601f198616915b828110156116e9578886015182559484019460019091019084016116ca565b50858210156117075787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561174757611747611717565b500290565b6000821982111561175f5761175f611717565b500190565b634e487b7160e01b600052603260045260246000fd5b60006001820161178c5761178c611717565b5060010190565b600083516117a581846020880161122e565b8351908301906117b981836020880161122e565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117f59083018461125a565b9695505050505050565b60006020828403121561181157600080fd5b8151610919816111fb565b634e487b7160e01b600052601260045260246000fd5b6000826118415761184161181c565b500490565b60008282101561185857611858611717565b500390565b60008261186c5761186c61181c565b50069056fea2646970667358221220ce2850ae6c7b90ab471958f0f100dd5fb3ea986572949abc9895cea4700e91a864736f6c634300080f0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063b88d4fde1161007c578063b88d4fde146102fb578063c204642c1461030e578063c87b56dd14610321578063dc33e68114610334578063e985e9c514610347578063f2fde38b1461038357600080fd5b8063715018a61461026b5780638da5cb5b146102735780639231ab2a1461028457806395d89b41146102cd57806397bc411c146102d5578063a22cb465146102e857600080fd5b806332cb6b0c1161011557806332cb6b0c1461020357806342842e0e1461020c57806355f804b31461021f5780636352211e146102325780636f8b44b01461024557806370a082311461025857600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c557806318160ddd146101da57806323b872dd146101f0575b600080fd5b61017061016b366004611211565b610396565b60405190151581526020015b60405180910390f35b61018d6103e8565b60405161017c9190611286565b6101ad6101a8366004611299565b61047a565b6040516001600160a01b03909116815260200161017c565b6101d86101d33660046112ce565b6104be565b005b600154600054035b60405190815260200161017c565b6101d86101fe3660046112f8565b61054b565b6101e260095481565b6101d861021a3660046112f8565b610556565b6101d861022d3660046113d1565b610571565b6101ad610240366004611299565b610589565b6101d8610253366004611299565b61059b565b6101e2610266366004611419565b6105a8565b6101d86105f6565b6008546001600160a01b03166101ad565b610297610292366004611299565b61060a565b6040805182516001600160a01b031681526020808401516001600160401b0316908201529181015115159082015260600161017c565b61018d610630565b6101d86102e33660046113d1565b61063f565b6101d86102f6366004611434565b610653565b6101d8610309366004611470565b6106e8565b6101d861031c3660046114eb565b610722565b61018d61032f366004611299565b6107da565b6101e2610342366004611419565b610920565b61017061035536600461159d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101d8610391366004611419565b61092b565b60006001600160e01b031982166380ac58cd60e01b14806103c757506001600160e01b03198216635b5e139f60e01b145b806103e257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546103f7906115d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610423906115d0565b80156104705780601f1061044557610100808354040283529160200191610470565b820191906000526020600020905b81548152906001019060200180831161045357829003601f168201915b5050505050905090565b6000610485826109a4565b6104a2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104c982610589565b9050806001600160a01b0316836001600160a01b0316036104fd5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061051d575061051b8133610355565b155b1561053b576040516367d9dca160e11b815260040160405180910390fd5b6105468383836109cf565b505050565b610546838383610a2b565b610546838383604051806020016040528060008152506106e8565b610579610c3f565b600a6105858282611658565b5050565b600061059482610c99565b5192915050565b6105a3610c3f565b600955565b60006001600160a01b0382166105d1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6105fe610c3f565b6106086000610db2565b565b60408051606081018252600080825260208201819052918101919091526103e282610c99565b6060600380546103f7906115d0565b610647610c3f565b600b6105858282611658565b336001600160a01b0383160361067c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6106f3848484610a2b565b6106ff84848484610e04565b61071c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61072a610c3f565b60095481835161073a919061172d565b6001546000540361074b919061174c565b11156107935760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b60448201526064015b60405180910390fd5b60005b82518110156105465760008382815181106107b3576107b3611764565b602002602001015190506107c78184610f07565b50806107d28161177a565b915050610796565b60606107e5826109a4565b6108495760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161078a565b6000610853610f11565b905060008151116108ee57600b805461086b906115d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610897906115d0565b80156108e45780601f106108b9576101008083540402835291602001916108e4565b820191906000526020600020905b8154815290600101906020018083116108c757829003601f168201915b5050505050610919565b806108f884610f20565b604051602001610909929190611793565b6040516020818303038152906040525b9392505050565b60006103e282611020565b610933610c3f565b6001600160a01b0381166109985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078a565b6109a181610db2565b50565b60008054821080156103e2575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610a3682610c99565b80519091506000906001600160a01b0316336001600160a01b03161480610a6457508151610a649033610355565b80610a7f575033610a748461047a565b6001600160a01b0316145b905080610a9f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610ad45760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610afb57604051633a954ecd60e21b815260040160405180910390fd5b610b0b60008484600001516109cf565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610bf557600054811015610bf557825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6008546001600160a01b031633146106085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161078a565b6040805160608101825260008082526020820181905291810182905290548290811015610d9957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610d975780516001600160a01b031615610d2e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215610d92579392505050565b610d2e565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15610efb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610e489033908990889088906004016117c2565b6020604051808303816000875af1925050508015610e83575060408051601f3d908101601f19168201909252610e80918101906117ff565b60015b610ee1573d808015610eb1576040519150601f19603f3d011682016040523d82523d6000602084013e610eb6565b606091505b508051600003610ed9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610eff565b5060015b949350505050565b6105858282611075565b6060600a80546103f7906115d0565b606081600003610f475750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610f715780610f5b8161177a565b9150610f6a9050600a83611832565b9150610f4b565b6000816001600160401b03811115610f8b57610f8b611334565b6040519080825280601f01601f191660200182016040528015610fb5576020820181803683370190505b5090505b8415610eff57610fca600183611846565b9150610fd7600a8661185d565b610fe290603061174c565b60f81b818381518110610ff757610ff7611764565b60200101906001600160f81b031916908160001a905350611019600a86611832565b9450610fb9565b60006001600160a01b038216611049576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b61058582826040518060200160405280600081525061054683838360016000546001600160a01b0385166110bb57604051622e076360e81b815260040160405180910390fd5b836000036110dc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156111f25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156111c857506111c66000888488610e04565b155b156111e6576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611171565b50600055610c38565b6001600160e01b0319811681146109a157600080fd5b60006020828403121561122357600080fd5b8135610919816111fb565b60005b83811015611249578181015183820152602001611231565b8381111561071c5750506000910152565b6000815180845261127281602086016020860161122e565b601f01601f19169290920160200192915050565b602081526000610919602083018461125a565b6000602082840312156112ab57600080fd5b5035919050565b80356001600160a01b03811681146112c957600080fd5b919050565b600080604083850312156112e157600080fd5b6112ea836112b2565b946020939093013593505050565b60008060006060848603121561130d57600080fd5b611316846112b2565b9250611324602085016112b2565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561137257611372611334565b604052919050565b60006001600160401b0383111561139357611393611334565b6113a6601f8401601f191660200161134a565b90508281528383830111156113ba57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156113e357600080fd5b81356001600160401b038111156113f957600080fd5b8201601f8101841361140a57600080fd5b610eff8482356020840161137a565b60006020828403121561142b57600080fd5b610919826112b2565b6000806040838503121561144757600080fd5b611450836112b2565b91506020830135801515811461146557600080fd5b809150509250929050565b6000806000806080858703121561148657600080fd5b61148f856112b2565b935061149d602086016112b2565b92506040850135915060608501356001600160401b038111156114bf57600080fd5b8501601f810187136114d057600080fd5b6114df8782356020840161137a565b91505092959194509250565b600080604083850312156114fe57600080fd5b82356001600160401b038082111561151557600080fd5b818501915085601f83011261152957600080fd5b813560208282111561153d5761153d611334565b8160051b925061154e81840161134a565b828152928401810192818101908985111561156857600080fd5b948201945b8486101561158d5761157e866112b2565b8252948201949082019061156d565b9997909101359750505050505050565b600080604083850312156115b057600080fd5b6115b9836112b2565b91506115c7602084016112b2565b90509250929050565b600181811c908216806115e457607f821691505b60208210810361160457634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561054657600081815260208120601f850160051c810160208610156116315750805b601f850160051c820191505b818110156116505782815560010161163d565b505050505050565b81516001600160401b0381111561167157611671611334565b6116858161167f84546115d0565b8461160a565b602080601f8311600181146116ba57600084156116a25750858301515b600019600386901b1c1916600185901b178555611650565b600085815260208120601f198616915b828110156116e9578886015182559484019460019091019084016116ca565b50858210156117075787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561174757611747611717565b500290565b6000821982111561175f5761175f611717565b500190565b634e487b7160e01b600052603260045260246000fd5b60006001820161178c5761178c611717565b5060010190565b600083516117a581846020880161122e565b8351908301906117b981836020880161122e565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117f59083018461125a565b9695505050505050565b60006020828403121561181157600080fd5b8151610919816111fb565b634e487b7160e01b600052601260045260246000fd5b6000826118415761184161181c565b500490565b60008282101561185857611858611717565b500390565b60008261186c5761186c61181c565b50069056fea2646970667358221220ce2850ae6c7b90ab471958f0f100dd5fb3ea986572949abc9895cea4700e91a864736f6c634300080f0033
Deployed Bytecode Sourcemap
57060:1871:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39829:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;39829:305:0;;;;;;;;43189:100;;;:::i;:::-;;;;;;;:::i;44692:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;44692:204:0;1528:203:1;44255:371:0;;;;;;:::i;:::-;;:::i;:::-;;39486:271;39722:12;;39530:7;39706:13;:28;39486:271;;;2319:25:1;;;2307:2;2292:18;39486:271:0;2173:177:1;45549:170:0;;;;;;:::i;:::-;;:::i;57150:31::-;;;;;;45790:185;;;;;;:::i;:::-;;:::i;58419:107::-;;;;;;:::i;:::-;;:::i;42998:124::-;;;;;;:::i;:::-;;:::i;58314:97::-;;;;;;:::i;:::-;;:::i;40198:206::-;;;;;;:::i;:::-;;:::i;15422:103::-;;;:::i;14774:87::-;14847:6;;-1:-1:-1;;;;;14847:6:0;14774:87;;58793:135;;;;;;:::i;:::-;;:::i;:::-;;;;4391:13:1;;-1:-1:-1;;;;;4387:39:1;4369:58;;4487:4;4475:17;;;4469:24;-1:-1:-1;;;;;4465:49:1;4443:20;;;4436:79;4573:17;;;4567:24;4560:32;4553:40;4531:20;;;4524:70;4357:2;4342:18;58793:135:0;4159:441:1;43358:104:0;;;:::i;58534:123::-;;;;;;:::i;:::-;;:::i;44968:279::-;;;;;;:::i;:::-;;:::i;46046:342::-;;;;;;:::i;:::-;;:::i;57439:379::-;;;;;;:::i;:::-;;:::i;57943:363::-;;;;;;:::i;:::-;;:::i;57316:115::-;;;;;;:::i;:::-;;:::i;45318:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;45439:25:0;;;45415:4;45439:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45318:164;15680:201;;;;;;:::i;:::-;;:::i;39829:305::-;39931:4;-1:-1:-1;;;;;;39968:40:0;;-1:-1:-1;;;39968:40:0;;:105;;-1:-1:-1;;;;;;;40025:48:0;;-1:-1:-1;;;40025:48:0;39968:105;:158;;;-1:-1:-1;;;;;;;;;;11537:40:0;;;40090:36;39948:178;39829:305;-1:-1:-1;;39829:305:0:o;43189:100::-;43243:13;43276:5;43269:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43189:100;:::o;44692:204::-;44760:7;44785:16;44793:7;44785;:16::i;:::-;44780:64;;44810:34;;-1:-1:-1;;;44810:34:0;;;;;;;;;;;44780:64;-1:-1:-1;44864:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44864:24:0;;44692:204::o;44255:371::-;44328:13;44344:24;44360:7;44344:15;:24::i;:::-;44328:40;;44389:5;-1:-1:-1;;;;;44383:11:0;:2;-1:-1:-1;;;;;44383:11:0;;44379:48;;44403:24;;-1:-1:-1;;;44403:24:0;;;;;;;;;;;44379:48;13405:10;-1:-1:-1;;;;;44444:21:0;;;;;;:63;;-1:-1:-1;44470:37:0;44487:5;13405:10;45318:164;:::i;44470:37::-;44469:38;44444:63;44440:138;;;44531:35;;-1:-1:-1;;;44531:35:0;;;;;;;;;;;44440:138;44590:28;44599:2;44603:7;44612:5;44590:8;:28::i;:::-;44317:309;44255:371;;:::o;45549:170::-;45683:28;45693:4;45699:2;45703:7;45683:9;:28::i;45790:185::-;45928:39;45945:4;45951:2;45955:7;45928:39;;;;;;;;;;;;:16;:39::i;58419:107::-;14660:13;:11;:13::i;:::-;58496:8:::1;:22;58507:11:::0;58496:8;:22:::1;:::i;:::-;;58419:107:::0;:::o;42998:124::-;43062:7;43089:20;43101:7;43089:11;:20::i;:::-;:25;;42998:124;-1:-1:-1;;42998:124:0:o;58314:97::-;14660:13;:11;:13::i;:::-;58383:10:::1;:20:::0;58314:97::o;40198:206::-;40262:7;-1:-1:-1;;;;;40286:19:0;;40282:60;;40314:28;;-1:-1:-1;;;40314:28:0;;;;;;;;;;;40282:60;-1:-1:-1;;;;;;40368:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;40368:27:0;;40198:206::o;15422:103::-;14660:13;:11;:13::i;:::-;15487:30:::1;15514:1;15487:18;:30::i;:::-;15422:103::o:0;58793:135::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;58900:20:0;58912:7;58900:11;:20::i;43358:104::-;43414:13;43447:7;43440:14;;;;;:::i;58534:123::-;14660:13;:11;:13::i;:::-;58619:12:::1;:30;58634:15:::0;58619:12;:30:::1;:::i;44968:279::-:0;13405:10;-1:-1:-1;;;;;45059:24:0;;;45055:54;;45092:17;;-1:-1:-1;;;45092:17:0;;;;;;;;;;;45055:54;13405:10;45122:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;45122:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;45122:53:0;;;;;;;;;;45191:48;;540:41:1;;;45122:42:0;;13405:10;45191:48;;513:18:1;45191:48:0;;;;;;;44968:279;;:::o;46046:342::-;46213:28;46223:4;46229:2;46233:7;46213:9;:28::i;:::-;46257:48;46280:4;46286:2;46290:7;46299:5;46257:22;:48::i;:::-;46252:129;;46329:40;;-1:-1:-1;;;46329:40:0;;;;;;;;;;;46252:129;46046:342;;;;:::o;57439:379::-;14660:13;:11;:13::i;:::-;57609:10:::1;;57594:11;57567:17;:24;:38;;;;:::i;:::-;39722:12:::0;;39530:7;39706:13;:28;57551:54:::1;;;;:::i;:::-;:68;;57543:99;;;::::0;-1:-1:-1;;;57543:99:0;;10150:2:1;57543:99:0::1;::::0;::::1;10132:21:1::0;10189:2;10169:18;;;10162:30;-1:-1:-1;;;10208:18:1;;;10201:48;10266:18;;57543:99:0::1;;;;;;;;;57660:9;57655:156;57679:17;:24;57675:1;:28;57655:156;;;57725:10;57738:17;57756:1;57738:20;;;;;;;;:::i;:::-;;;;;;;57725:33;;57773:26;57783:2;57787:11;57773:9;:26::i;:::-;-1:-1:-1::0;57705:3:0;::::1;::::0;::::1;:::i;:::-;;;;57655:156;;57943:363:::0;58016:13;58050:16;58058:7;58050;:16::i;:::-;58042:76;;;;-1:-1:-1;;;58042:76:0;;10769:2:1;58042:76:0;;;10751:21:1;10808:2;10788:18;;;10781:30;10847:34;10827:18;;;10820:62;-1:-1:-1;;;10898:18:1;;;10891:45;10953:19;;58042:76:0;10567:411:1;58042:76:0;58129:28;58160:10;:8;:10::i;:::-;58129:41;;58219:1;58194:14;58188:28;:32;:110;;58286:12;58188:110;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58247:14;58263:18;:7;:16;:18::i;:::-;58230:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58188:110;58181:117;57943:363;-1:-1:-1;;;57943:363:0:o;57316:115::-;57375:7;57402:21;57416:6;57402:13;:21::i;15680:201::-;14660:13;:11;:13::i;:::-;-1:-1:-1;;;;;15769:22:0;::::1;15761:73;;;::::0;-1:-1:-1;;;15761:73:0;;11660:2:1;15761:73:0::1;::::0;::::1;11642:21:1::0;11699:2;11679:18;;;11672:30;11738:34;11718:18;;;11711:62;-1:-1:-1;;;11789:18:1;;;11782:36;11835:19;;15761:73:0::1;11458:402:1::0;15761:73:0::1;15845:28;15864:8;15845:18;:28::i;:::-;15680:201:::0;:::o;46643:144::-;46700:4;46734:13;;46724:7;:23;:55;;;;-1:-1:-1;;46752:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;46752:27:0;;;;46751:28;;46643:144::o;53849:196::-;53964:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;53964:29:0;-1:-1:-1;;;;;53964:29:0;;;;;;;;;54009:28;;53964:24;;54009:28;;;;;;;53849:196;;;:::o;49350:2112::-;49465:35;49503:20;49515:7;49503:11;:20::i;:::-;49578:18;;49465:58;;-1:-1:-1;49536:22:0;;-1:-1:-1;;;;;49562:34:0;13405:10;-1:-1:-1;;;;;49562:34:0;;:101;;;-1:-1:-1;49630:18:0;;49613:50;;13405:10;45318:164;:::i;49613:50::-;49562:154;;;-1:-1:-1;13405:10:0;49680:20;49692:7;49680:11;:20::i;:::-;-1:-1:-1;;;;;49680:36:0;;49562:154;49536:181;;49735:17;49730:66;;49761:35;;-1:-1:-1;;;49761:35:0;;;;;;;;;;;49730:66;49833:4;-1:-1:-1;;;;;49811:26:0;:13;:18;;;-1:-1:-1;;;;;49811:26:0;;49807:67;;49846:28;;-1:-1:-1;;;49846:28:0;;;;;;;;;;;49807:67;-1:-1:-1;;;;;49889:16:0;;49885:52;;49914:23;;-1:-1:-1;;;49914:23:0;;;;;;;;;;;49885:52;50058:49;50075:1;50079:7;50088:13;:18;;;50058:8;:49::i;:::-;-1:-1:-1;;;;;50403:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;50403:31:0;;;-1:-1:-1;;;;;50403:31:0;;;-1:-1:-1;;50403:31:0;;;;;;;50449:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;50449:29:0;;;;;;;;;;;50495:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;50540:61:0;;;;-1:-1:-1;;;50585:15:0;50540:61;;;;;;;;;;;50875:11;;;50905:24;;;;;:29;50875:11;;50905:29;50901:445;;51130:13;;51116:11;:27;51112:219;;;51200:18;;;51168:24;;;:11;:24;;;;;;;;:50;;51283:28;;;;-1:-1:-1;;;;;51241:70:0;-1:-1:-1;;;51241:70:0;-1:-1:-1;;;;;;51241:70:0;;;-1:-1:-1;;;;;51168:50:0;;;51241:70;;;;;;;51112:219;50378:979;51393:7;51389:2;-1:-1:-1;;;;;51374:27:0;51383:4;-1:-1:-1;;;;;51374:27:0;;;;;;;;;;;51412:42;49454:2008;;49350:2112;;;:::o;14939:132::-;14847:6;;-1:-1:-1;;;;;14847:6:0;13405:10;15003:23;14995:68;;;;-1:-1:-1;;;14995:68:0;;12067:2:1;14995:68:0;;;12049:21:1;;;12086:18;;;12079:30;12145:34;12125:18;;;12118:62;12197:18;;14995:68:0;11865:356:1;41853:1083:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;42019:13:0;;41963:7;;42012:20;;42008:861;;;42053:31;42087:17;;;:11;:17;;;;;;;;;42053:51;;;;;;;;;-1:-1:-1;;;;;42053:51:0;;;;-1:-1:-1;;;42053:51:0;;-1:-1:-1;;;;;42053:51:0;;;;;;;;-1:-1:-1;;;42053:51:0;;;;;;;;;;;;;;42123:731;;42173:14;;-1:-1:-1;;;;;42173:28:0;;42169:101;;42237:9;41853:1083;-1:-1:-1;;;41853:1083:0:o;42169:101::-;-1:-1:-1;;;42614:6:0;42659:17;;;;:11;:17;;;;;;;;;42647:29;;;;;;;;;-1:-1:-1;;;;;42647:29:0;;;;;-1:-1:-1;;;42647:29:0;;-1:-1:-1;;;;;42647:29:0;;;;;;;;-1:-1:-1;;;42647:29:0;;;;;;;;;;;;;42707:28;42703:109;;42775:9;41853:1083;-1:-1:-1;;;41853:1083:0:o;42703:109::-;42574:261;;;42034:835;42008:861;42897:31;;-1:-1:-1;;;42897:31:0;;;;;;;;;;;16041:191;16134:6;;;-1:-1:-1;;;;;16151:17:0;;;-1:-1:-1;;;;;;16151:17:0;;;;;;;16184:40;;16134:6;;;16151:17;16134:6;;16184:40;;16115:16;;16184:40;16104:128;16041:191;:::o;54610:790::-;54765:4;-1:-1:-1;;;;;54786:13:0;;17767:19;:23;54782:611;;54822:72;;-1:-1:-1;;;54822:72:0;;-1:-1:-1;;;;;54822:36:0;;;;;:72;;13405:10;;54873:4;;54879:7;;54888:5;;54822:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54822:72:0;;;;;;;;-1:-1:-1;;54822:72:0;;;;;;;;;;;;:::i;:::-;;;54818:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55068:6;:13;55085:1;55068:18;55064:259;;55118:40;;-1:-1:-1;;;55118:40:0;;;;;;;;;;;55064:259;55273:6;55267:13;55258:6;55254:2;55250:15;55243:38;54818:520;-1:-1:-1;;;;;;54945:55:0;-1:-1:-1;;;54945:55:0;;-1:-1:-1;54938:62:0;;54782:611;-1:-1:-1;55377:4:0;54782:611;54610:790;;;;;;:::o;58665:120::-;58744:33;58754:9;58765:11;58744:9;:33::i;57826:109::-;57886:13;57919:8;57912:15;;;;;:::i;25222:723::-;25278:13;25499:5;25508:1;25499:10;25495:53;;-1:-1:-1;;25526:10:0;;;;;;;;;;;;-1:-1:-1;;;25526:10:0;;;;;25222:723::o;25495:53::-;25573:5;25558:12;25614:78;25621:9;;25614:78;;25647:8;;;;:::i;:::-;;-1:-1:-1;25670:10:0;;-1:-1:-1;25678:2:0;25670:10;;:::i;:::-;;;25614:78;;;25702:19;25734:6;-1:-1:-1;;;;;25724:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25724:17:0;;25702:39;;25752:154;25759:10;;25752:154;;25786:11;25796:1;25786:11;;:::i;:::-;;-1:-1:-1;25855:10:0;25863:2;25855:5;:10;:::i;:::-;25842:24;;:2;:24;:::i;:::-;25829:39;;25812:6;25819;25812:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;25812:56:0;;;;;;;;-1:-1:-1;25883:11:0;25892:2;25883:11;;:::i;:::-;;;25752:154;;40486:207;40547:7;-1:-1:-1;;;;;40571:19:0;;40567:59;;40599:27;;-1:-1:-1;;;40599:27:0;;;;;;;;;;;40567:59;-1:-1:-1;;;;;;40652:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;40652:32:0;;-1:-1:-1;;;;;40652:32:0;;40486:207::o;46795:104::-;46864:27;46874:2;46878:8;46864:27;;;;;;;;;;;;47385:32;47391:2;47395:8;47405:5;47412:4;47823:20;47846:13;-1:-1:-1;;;;;47874:16:0;;47870:48;;47899:19;;-1:-1:-1;;;47899:19:0;;;;;;;;;;;47870:48;47933:8;47945:1;47933:13;47929:44;;47955:18;;-1:-1:-1;;;47955:18:0;;;;;;;;;;;47929:44;-1:-1:-1;;;;;48324:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;48383:49:0;;-1:-1:-1;;;;;48324:44:0;;;;;;;48383:49;;;-1:-1:-1;;;;;48324:44:0;;;;;;48383:49;;;;;;;;;;;;;;;;48449:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;48499:66:0;;;;-1:-1:-1;;;48549:15:0;48499:66;;;;;;;;;;;48449:25;;48634:328;48654:8;48650:1;:12;48634:328;;;48693:38;;48718:12;;-1:-1:-1;;;;;48693:38:0;;;48710:1;;48693:38;;48710:1;;48693:38;48754:4;:68;;;;;48763:59;48794:1;48798:2;48802:12;48816:5;48763:22;:59::i;:::-;48762:60;48754:68;48750:164;;;48854:40;;-1:-1:-1;;;48854:40:0;;;;;;;;;;;48750:164;48932:14;;;;;48664:3;48634:328;;;-1:-1:-1;48978:13:0;:28;49028:60;46046:342;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:275;2891:2;2885:9;2956:2;2937:13;;-1:-1:-1;;2933:27:1;2921:40;;-1:-1:-1;;;;;2976:34:1;;3012:22;;;2973:62;2970:88;;;3038:18;;:::i;:::-;3074:2;3067:22;2820:275;;-1:-1:-1;2820:275:1:o;3100:407::-;3165:5;-1:-1:-1;;;;;3191:6:1;3188:30;3185:56;;;3221:18;;:::i;:::-;3259:57;3304:2;3283:15;;-1:-1:-1;;3279:29:1;3310:4;3275:40;3259:57;:::i;:::-;3250:66;;3339:6;3332:5;3325:21;3379:3;3370:6;3365:3;3361:16;3358:25;3355:45;;;3396:1;3393;3386:12;3355:45;3445:6;3440:3;3433:4;3426:5;3422:16;3409:43;3499:1;3492:4;3483:6;3476:5;3472:18;3468:29;3461:40;3100:407;;;;;:::o;3512:451::-;3581:6;3634:2;3622:9;3613:7;3609:23;3605:32;3602:52;;;3650:1;3647;3640:12;3602:52;3690:9;3677:23;-1:-1:-1;;;;;3715:6:1;3712:30;3709:50;;;3755:1;3752;3745:12;3709:50;3778:22;;3831:4;3823:13;;3819:27;-1:-1:-1;3809:55:1;;3860:1;3857;3850:12;3809:55;3883:74;3949:7;3944:2;3931:16;3926:2;3922;3918:11;3883:74;:::i;3968:186::-;4027:6;4080:2;4068:9;4059:7;4055:23;4051:32;4048:52;;;4096:1;4093;4086:12;4048:52;4119:29;4138:9;4119:29;:::i;4605:347::-;4670:6;4678;4731:2;4719:9;4710:7;4706:23;4702:32;4699:52;;;4747:1;4744;4737:12;4699:52;4770:29;4789:9;4770:29;:::i;:::-;4760:39;;4849:2;4838:9;4834:18;4821:32;4896:5;4889:13;4882:21;4875:5;4872:32;4862:60;;4918:1;4915;4908:12;4862:60;4941:5;4931:15;;;4605:347;;;;;:::o;4957:667::-;5052:6;5060;5068;5076;5129:3;5117:9;5108:7;5104:23;5100:33;5097:53;;;5146:1;5143;5136:12;5097:53;5169:29;5188:9;5169:29;:::i;:::-;5159:39;;5217:38;5251:2;5240:9;5236:18;5217:38;:::i;:::-;5207:48;;5302:2;5291:9;5287:18;5274:32;5264:42;;5357:2;5346:9;5342:18;5329:32;-1:-1:-1;;;;;5376:6:1;5373:30;5370:50;;;5416:1;5413;5406:12;5370:50;5439:22;;5492:4;5484:13;;5480:27;-1:-1:-1;5470:55:1;;5521:1;5518;5511:12;5470:55;5544:74;5610:7;5605:2;5592:16;5587:2;5583;5579:11;5544:74;:::i;:::-;5534:84;;;4957:667;;;;;;;:::o;5629:1022::-;5722:6;5730;5783:2;5771:9;5762:7;5758:23;5754:32;5751:52;;;5799:1;5796;5789:12;5751:52;5839:9;5826:23;-1:-1:-1;;;;;5909:2:1;5901:6;5898:14;5895:34;;;5925:1;5922;5915:12;5895:34;5963:6;5952:9;5948:22;5938:32;;6008:7;6001:4;5997:2;5993:13;5989:27;5979:55;;6030:1;6027;6020:12;5979:55;6066:2;6053:16;6088:4;6111:2;6107;6104:10;6101:36;;;6117:18;;:::i;:::-;6163:2;6160:1;6156:10;6146:20;;6186:28;6210:2;6206;6202:11;6186:28;:::i;:::-;6248:15;;;6318:11;;;6314:20;;;6279:12;;;;6346:19;;;6343:39;;;6378:1;6375;6368:12;6343:39;6402:11;;;;6422:148;6438:6;6433:3;6430:15;6422:148;;;6504:23;6523:3;6504:23;:::i;:::-;6492:36;;6455:12;;;;6548;;;;6422:148;;;6589:5;6626:18;;;;6613:32;;-1:-1:-1;;;;;;;5629:1022:1:o;6656:260::-;6724:6;6732;6785:2;6773:9;6764:7;6760:23;6756:32;6753:52;;;6801:1;6798;6791:12;6753:52;6824:29;6843:9;6824:29;:::i;:::-;6814:39;;6872:38;6906:2;6895:9;6891:18;6872:38;:::i;:::-;6862:48;;6656:260;;;;;:::o;6921:380::-;7000:1;6996:12;;;;7043;;;7064:61;;7118:4;7110:6;7106:17;7096:27;;7064:61;7171:2;7163:6;7160:14;7140:18;7137:38;7134:161;;7217:10;7212:3;7208:20;7205:1;7198:31;7252:4;7249:1;7242:15;7280:4;7277:1;7270:15;7134:161;;6921:380;;;:::o;7432:545::-;7534:2;7529:3;7526:11;7523:448;;;7570:1;7595:5;7591:2;7584:17;7640:4;7636:2;7626:19;7710:2;7698:10;7694:19;7691:1;7687:27;7681:4;7677:38;7746:4;7734:10;7731:20;7728:47;;;-1:-1:-1;7769:4:1;7728:47;7824:2;7819:3;7815:12;7812:1;7808:20;7802:4;7798:31;7788:41;;7879:82;7897:2;7890:5;7887:13;7879:82;;;7942:17;;;7923:1;7912:13;7879:82;;;7883:3;;;7432:545;;;:::o;8153:1352::-;8279:3;8273:10;-1:-1:-1;;;;;8298:6:1;8295:30;8292:56;;;8328:18;;:::i;:::-;8357:97;8447:6;8407:38;8439:4;8433:11;8407:38;:::i;:::-;8401:4;8357:97;:::i;:::-;8509:4;;8573:2;8562:14;;8590:1;8585:663;;;;9292:1;9309:6;9306:89;;;-1:-1:-1;9361:19:1;;;9355:26;9306:89;-1:-1:-1;;8110:1:1;8106:11;;;8102:24;8098:29;8088:40;8134:1;8130:11;;;8085:57;9408:81;;8555:944;;8585:663;7379:1;7372:14;;;7416:4;7403:18;;-1:-1:-1;;8621:20:1;;;8739:236;8753:7;8750:1;8747:14;8739:236;;;8842:19;;;8836:26;8821:42;;8934:27;;;;8902:1;8890:14;;;;8769:19;;8739:236;;;8743:3;9003:6;8994:7;8991:19;8988:201;;;9064:19;;;9058:26;-1:-1:-1;;9147:1:1;9143:14;;;9159:3;9139:24;9135:37;9131:42;9116:58;9101:74;;8988:201;-1:-1:-1;;;;;9235:1:1;9219:14;;;9215:22;9202:36;;-1:-1:-1;8153:1352:1:o;9510:127::-;9571:10;9566:3;9562:20;9559:1;9552:31;9602:4;9599:1;9592:15;9626:4;9623:1;9616:15;9642:168;9682:7;9748:1;9744;9740:6;9736:14;9733:1;9730:21;9725:1;9718:9;9711:17;9707:45;9704:71;;;9755:18;;:::i;:::-;-1:-1:-1;9795:9:1;;9642:168::o;9815:128::-;9855:3;9886:1;9882:6;9879:1;9876:13;9873:39;;;9892:18;;:::i;:::-;-1:-1:-1;9928:9:1;;9815:128::o;10295:127::-;10356:10;10351:3;10347:20;10344:1;10337:31;10387:4;10384:1;10377:15;10411:4;10408:1;10401:15;10427:135;10466:3;10487:17;;;10484:43;;10507:18;;:::i;:::-;-1:-1:-1;10554:1:1;10543:13;;10427:135::o;10983:470::-;11162:3;11200:6;11194:13;11216:53;11262:6;11257:3;11250:4;11242:6;11238:17;11216:53;:::i;:::-;11332:13;;11291:16;;;;11354:57;11332:13;11291:16;11388:4;11376:17;;11354:57;:::i;:::-;11427:20;;10983:470;-1:-1:-1;;;;10983:470:1:o;12226:489::-;-1:-1:-1;;;;;12495:15:1;;;12477:34;;12547:15;;12542:2;12527:18;;12520:43;12594:2;12579:18;;12572:34;;;12642:3;12637:2;12622:18;;12615:31;;;12420:4;;12663:46;;12689:19;;12681:6;12663:46;:::i;:::-;12655:54;12226:489;-1:-1:-1;;;;;;12226:489:1:o;12720:249::-;12789:6;12842:2;12830:9;12821:7;12817:23;12813:32;12810:52;;;12858:1;12855;12848:12;12810:52;12890:9;12884:16;12909:30;12933:5;12909:30;:::i;12974:127::-;13035:10;13030:3;13026:20;13023:1;13016:31;13066:4;13063:1;13056:15;13090:4;13087:1;13080:15;13106:120;13146:1;13172;13162:35;;13177:18;;:::i;:::-;-1:-1:-1;13211:9:1;;13106:120::o;13231:125::-;13271:4;13299:1;13296;13293:8;13290:34;;;13304:18;;:::i;:::-;-1:-1:-1;13341:9:1;;13231:125::o;13361:112::-;13393:1;13419;13409:35;;13424:18;;:::i;:::-;-1:-1:-1;13458:9:1;;13361:112::o
Swarm Source
ipfs://ce2850ae6c7b90ab471958f0f100dd5fb3ea986572949abc9895cea4700e91a8
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.