ERC-721
Overview
Max Total Supply
21 UNIGODS
Holders
21
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 UNIGODSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
universalgods
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-18 */ // 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @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: contracts/universalgods.sol pragma solidity ^0.8.0; contract universalgods is ERC721A, Ownable { string public baseURI = "ipfs://QmWSGntdd9KtXTKq4UmNLP1s18N15hLTHustm2XwgPoF8G/"; string public contractURI = ""; string public constant baseExtension = ".json"; address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; uint256 public constant MAX_PER_WALLET = 1; uint256 public constant MAX_SUPPLY = 333; uint256 public constant price = 0.008 ether; bool public paused = true; bool hasSetOS = false; constructor() ERC721A("Universal Gods", "UNIGODS") {} function mint() external payable { address _caller = _msgSender(); uint256 ownerTokenCount = balanceOf(_caller); require(!paused, "Paused"); require(MAX_SUPPLY >= totalSupply() + 1, "Exceeds max supply"); require(tx.origin == _caller, "No contracts"); require(ownerTokenCount < MAX_PER_WALLET, "Exceeds max token count per wallet"); require(1 * price == msg.value, "Invalid funds provided"); _safeMint(_caller, 1); } function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } function setupOS() external onlyOwner { require(!hasSetOS, "Already setup"); hasSetOS = true; _safeMint(_msgSender(), 1); } function pause(bool _state) external onlyOwner { paused = _state; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function setContractURI(string memory _contractURI) external onlyOwner { contractURI = _contractURI; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), baseExtension ) ) : ""; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; (bool success, ) = _msgSender().call{value: balance}(""); require(success, "Failed to send"); } } contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
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":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052603660808181529062001d6860a039805162000029916009916020909101906200013c565b506040805160208101918290526000908190526200004a91600a916200013c565b50600b805461ffff191660011790553480156200006657600080fd5b50604080518082018252600e81526d556e6976657273616c20476f647360901b602080830191825283518085019094526007845266554e49474f445360c81b908401528151919291620000bc916002916200013c565b508051620000d29060039060208401906200013c565b50506000805550620000e433620000ea565b6200021f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014a90620001e2565b90600052602060002090601f0160209004810192826200016e5760008555620001b9565b82601f106200018957805160ff1916838001178555620001b9565b82800160010185558215620001b9579182015b82811115620001b95782518255916020019190600101906200019c565b50620001c7929150620001cb565b5090565b5b80821115620001c75760008155600101620001cc565b600181811c90821680620001f757607f821691505b602082108114156200021957634e487b7160e01b600052602260045260246000fd5b50919050565b611b39806200022f6000396000f3fe6080604052600436106101d85760003560e01c8063698982ba11610102578063a22cb46511610095578063cd7c032611610064578063cd7c032614610515578063e8a3d4851461053d578063e985e9c514610552578063f2fde38b1461057257600080fd5b8063a22cb46514610484578063b88d4fde146104a4578063c6682862146104c4578063c87b56dd146104f557600080fd5b80638da5cb5b116100d15780638da5cb5b14610416578063938e3d7b1461043457806395d89b4114610454578063a035b1fe1461046957600080fd5b8063698982ba146103b75780636c0360eb146103cc57806370a08231146103e1578063715018a61461040157600080fd5b806318160ddd1161017a57806342842e0e1161014957806342842e0e1461033d57806355f804b31461035d5780635c975abb1461037d5780636352211e1461039757600080fd5b806318160ddd146102d957806323b872dd146102f257806332cb6b0c146103125780633ccfd60b1461032857600080fd5b8063081812fc116101b6578063081812fc14610256578063095ea7b31461028e5780630f2cdd6c146102ae5780631249c58b146102d157600080fd5b806301ffc9a7146101dd57806302329a291461021257806306fdde0314610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611790565b610592565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061023261022d366004611775565b6105e4565b005b34801561024057600080fd5b506102496105ff565b6040516102099190611975565b34801561026257600080fd5b50610276610271366004611830565b610691565b6040516001600160a01b039091168152602001610209565b34801561029a57600080fd5b506102326102a9366004611749565b6106d5565b3480156102ba57600080fd5b506102c3600181565b604051908152602001610209565b610232610775565b3480156102e557600080fd5b50600154600054036102c3565b3480156102fe57600080fd5b5061023261030d366004611653565b610927565b34801561031e57600080fd5b506102c361014d81565b34801561033457600080fd5b50610232610ab8565b34801561034957600080fd5b50610232610358366004611653565b610b4b565b34801561036957600080fd5b506102326103783660046117e7565b610b6b565b34801561038957600080fd5b50600b546101fd9060ff1681565b3480156103a357600080fd5b506102766103b2366004611830565b610b86565b3480156103c357600080fd5b50610232610b91565b3480156103d857600080fd5b50610249610c03565b3480156103ed57600080fd5b506102c36103fc3660046115fd565b610c91565b34801561040d57600080fd5b50610232610ce0565b34801561042257600080fd5b506008546001600160a01b0316610276565b34801561044057600080fd5b5061023261044f3660046117e7565b610cf2565b34801561046057600080fd5b50610249610d0d565b34801561047557600080fd5b506102c3661c6bf52634000081565b34801561049057600080fd5b5061023261049f366004611714565b610d1c565b3480156104b057600080fd5b506102326104bf366004611694565b610db2565b3480156104d057600080fd5b5061024960405180604001604052806005815260200164173539b7b760d91b81525081565b34801561050157600080fd5b50610249610510366004611830565b610dfc565b34801561052157600080fd5b5061027673a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561054957600080fd5b50610249610ec6565b34801561055e57600080fd5b506101fd61056d36600461161a565b610ed3565b34801561057e57600080fd5b5061023261058d3660046115fd565b610fb2565b60006301ffc9a760e01b6001600160e01b0319831614806105c357506380ac58cd60e01b6001600160e01b03198316145b806105de5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6105ec61102b565b600b805460ff1916911515919091179055565b60606002805461060e90611a16565b80601f016020809104026020016040519081016040528092919081815260200182805461063a90611a16565b80156106875780601f1061065c57610100808354040283529160200191610687565b820191906000526020600020905b81548152906001019060200180831161066a57829003601f168201915b5050505050905090565b600061069c82611085565b6106b9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106e082610b86565b9050336001600160a01b03821614610719576106fc8133610ed3565b610719576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b33600061078182610c91565b600b5490915060ff16156107c55760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064015b60405180910390fd5b600154600054036107d7906001611988565b61014d101561081d5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107bc565b326001600160a01b038316146108645760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016107bc565b600181106108bf5760405162461bcd60e51b815260206004820152602260248201527f45786365656473206d617820746f6b656e20636f756e74207065722077616c6c604482015261195d60f21b60648201526084016107bc565b346108d2661c6bf52634000060016119b4565b146109185760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016107bc565b6109238260016110ac565b5050565b6000610932826110c6565b9050836001600160a01b0316816001600160a01b0316146109655760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109b2576109958633610ed3565b6109b257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109d957604051633a954ecd60e21b815260040160405180910390fd5b80156109e457600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610a6f5760018401600081815260046020526040902054610a6d576000548114610a6d5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610ac061102b565b6040514790600090339083908381818185875af1925050503d8060008114610b04576040519150601f19603f3d011682016040523d82523d6000602084013e610b09565b606091505b50509050806109235760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016107bc565b610b6683838360405180602001604052806000815250610db2565b505050565b610b7361102b565b80516109239060099060208401906114d9565b60006105de826110c6565b610b9961102b565b600b54610100900460ff1615610be15760405162461bcd60e51b815260206004820152600d60248201526c0416c726561647920736574757609c1b60448201526064016107bc565b600b805461ff001916610100179055610c01610bfa3390565b60016110ac565b565b60098054610c1090611a16565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3c90611a16565b8015610c895780601f10610c5e57610100808354040283529160200191610c89565b820191906000526020600020905b815481529060010190602001808311610c6c57829003601f168201915b505050505081565b60006001600160a01b038216610cba576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610ce861102b565b610c01600061112e565b610cfa61102b565b805161092390600a9060208401906114d9565b60606003805461060e90611a16565b6001600160a01b038216331415610d465760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dbd848484610927565b6001600160a01b0383163b15610df657610dd984848484611180565b610df6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e0782611085565b610e4b5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107bc565b600060098054610e5a90611a16565b905011610e7657604051806020016040528060008152506105de565b6009610e8183611277565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610eb193929190611891565b60405160208183030381529060405292915050565b600a8054610c1090611a16565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b158015610f2f57600080fd5b505afa158015610f43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6791906117ca565b6001600160a01b03161415610f805760019150506105de565b6001600160a01b0380851660009081526007602090815260408083209387168352929052205460ff165b949350505050565b610fba61102b565b6001600160a01b03811661101f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bc565b6110288161112e565b50565b6008546001600160a01b03163314610c015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bc565b60008054821080156105de575050600090815260046020526040902054600160e01b161590565b610923828260405180602001604052806000815250611375565b60008160005481101561111557600081815260046020526040902054600160e01b8116611113575b8061110c5750600019016000818152600460205260409020546110ee565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111b5903390899088908890600401611942565b602060405180830381600087803b1580156111cf57600080fd5b505af19250505080156111ff575060408051601f3d908101601f191682019092526111fc918101906117ad565b60015b61125a573d80801561122d576040519150601f19603f3d011682016040523d82523d6000602084013e611232565b606091505b508051611252576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608161129b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112c557806112af81611a51565b91506112be9050600a836119a0565b915061129f565b60008167ffffffffffffffff8111156112e0576112e0611ac2565b6040519080825280601f01601f19166020018201604052801561130a576020820181803683370190505b5090505b8415610faa5761131f6001836119d3565b915061132c600a86611a6c565b611337906030611988565b60f81b81838151811061134c5761134c611aac565b60200101906001600160f81b031916908160001a90535061136e600a866119a0565b945061130e565b61137f83836113e2565b6001600160a01b0383163b15610b66576000548281035b6113a96000868380600101945086611180565b6113c6576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113965781600054146113db57600080fd5b5050505050565b600054816114035760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146114b257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161147a565b50816114d057604051622e076360e81b815260040160405180910390fd5b60005550505050565b8280546114e590611a16565b90600052602060002090601f016020900481019282611507576000855561154d565b82601f1061152057805160ff191683800117855561154d565b8280016001018555821561154d579182015b8281111561154d578251825591602001919060010190611532565b5061155992915061155d565b5090565b5b80821115611559576000815560010161155e565b600067ffffffffffffffff8084111561158d5761158d611ac2565b604051601f8501601f19908116603f011681019082821181831017156115b5576115b5611ac2565b816040528093508581528686860111156115ce57600080fd5b858560208301376000602087830101525050509392505050565b803580151581146115f857600080fd5b919050565b60006020828403121561160f57600080fd5b813561110c81611ad8565b6000806040838503121561162d57600080fd5b823561163881611ad8565b9150602083013561164881611ad8565b809150509250929050565b60008060006060848603121561166857600080fd5b833561167381611ad8565b9250602084013561168381611ad8565b929592945050506040919091013590565b600080600080608085870312156116aa57600080fd5b84356116b581611ad8565b935060208501356116c581611ad8565b925060408501359150606085013567ffffffffffffffff8111156116e857600080fd5b8501601f810187136116f957600080fd5b61170887823560208401611572565b91505092959194509250565b6000806040838503121561172757600080fd5b823561173281611ad8565b9150611740602084016115e8565b90509250929050565b6000806040838503121561175c57600080fd5b823561176781611ad8565b946020939093013593505050565b60006020828403121561178757600080fd5b61110c826115e8565b6000602082840312156117a257600080fd5b813561110c81611aed565b6000602082840312156117bf57600080fd5b815161110c81611aed565b6000602082840312156117dc57600080fd5b815161110c81611ad8565b6000602082840312156117f957600080fd5b813567ffffffffffffffff81111561181057600080fd5b8201601f8101841361182157600080fd5b610faa84823560208401611572565b60006020828403121561184257600080fd5b5035919050565b600081518084526118618160208601602086016119ea565b601f01601f19169290920160200192915050565b600081516118878185602086016119ea565b9290920192915050565b600080855481600182811c9150808316806118ad57607f831692505b60208084108214156118cd57634e487b7160e01b86526022600452602486fd5b8180156118e157600181146118f25761191f565b60ff1986168952848901965061191f565b60008c81526020902060005b868110156119175781548b8201529085019083016118fe565b505084890196505b5050505050506119386119328287611875565b85611875565b9695505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061193890830184611849565b60208152600061110c6020830184611849565b6000821982111561199b5761199b611a80565b500190565b6000826119af576119af611a96565b500490565b60008160001904831182151516156119ce576119ce611a80565b500290565b6000828210156119e5576119e5611a80565b500390565b60005b83811015611a055781810151838201526020016119ed565b83811115610df65750506000910152565b600181811c90821680611a2a57607f821691505b60208210811415611a4b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a6557611a65611a80565b5060010190565b600082611a7b57611a7b611a96565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461102857600080fd5b6001600160e01b03198116811461102857600080fdfea26469706673582212206f65f5b593c137c66a87e8112a3fafd13892fbf057ad56219c91718773e1a8ff64736f6c63430008070033697066733a2f2f516d5753476e746464394b7458544b7134556d4e4c50317331384e3135684c54487573746d32587767506f4638472f
Deployed Bytecode
0x6080604052600436106101d85760003560e01c8063698982ba11610102578063a22cb46511610095578063cd7c032611610064578063cd7c032614610515578063e8a3d4851461053d578063e985e9c514610552578063f2fde38b1461057257600080fd5b8063a22cb46514610484578063b88d4fde146104a4578063c6682862146104c4578063c87b56dd146104f557600080fd5b80638da5cb5b116100d15780638da5cb5b14610416578063938e3d7b1461043457806395d89b4114610454578063a035b1fe1461046957600080fd5b8063698982ba146103b75780636c0360eb146103cc57806370a08231146103e1578063715018a61461040157600080fd5b806318160ddd1161017a57806342842e0e1161014957806342842e0e1461033d57806355f804b31461035d5780635c975abb1461037d5780636352211e1461039757600080fd5b806318160ddd146102d957806323b872dd146102f257806332cb6b0c146103125780633ccfd60b1461032857600080fd5b8063081812fc116101b6578063081812fc14610256578063095ea7b31461028e5780630f2cdd6c146102ae5780631249c58b146102d157600080fd5b806301ffc9a7146101dd57806302329a291461021257806306fdde0314610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611790565b610592565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061023261022d366004611775565b6105e4565b005b34801561024057600080fd5b506102496105ff565b6040516102099190611975565b34801561026257600080fd5b50610276610271366004611830565b610691565b6040516001600160a01b039091168152602001610209565b34801561029a57600080fd5b506102326102a9366004611749565b6106d5565b3480156102ba57600080fd5b506102c3600181565b604051908152602001610209565b610232610775565b3480156102e557600080fd5b50600154600054036102c3565b3480156102fe57600080fd5b5061023261030d366004611653565b610927565b34801561031e57600080fd5b506102c361014d81565b34801561033457600080fd5b50610232610ab8565b34801561034957600080fd5b50610232610358366004611653565b610b4b565b34801561036957600080fd5b506102326103783660046117e7565b610b6b565b34801561038957600080fd5b50600b546101fd9060ff1681565b3480156103a357600080fd5b506102766103b2366004611830565b610b86565b3480156103c357600080fd5b50610232610b91565b3480156103d857600080fd5b50610249610c03565b3480156103ed57600080fd5b506102c36103fc3660046115fd565b610c91565b34801561040d57600080fd5b50610232610ce0565b34801561042257600080fd5b506008546001600160a01b0316610276565b34801561044057600080fd5b5061023261044f3660046117e7565b610cf2565b34801561046057600080fd5b50610249610d0d565b34801561047557600080fd5b506102c3661c6bf52634000081565b34801561049057600080fd5b5061023261049f366004611714565b610d1c565b3480156104b057600080fd5b506102326104bf366004611694565b610db2565b3480156104d057600080fd5b5061024960405180604001604052806005815260200164173539b7b760d91b81525081565b34801561050157600080fd5b50610249610510366004611830565b610dfc565b34801561052157600080fd5b5061027673a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561054957600080fd5b50610249610ec6565b34801561055e57600080fd5b506101fd61056d36600461161a565b610ed3565b34801561057e57600080fd5b5061023261058d3660046115fd565b610fb2565b60006301ffc9a760e01b6001600160e01b0319831614806105c357506380ac58cd60e01b6001600160e01b03198316145b806105de5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6105ec61102b565b600b805460ff1916911515919091179055565b60606002805461060e90611a16565b80601f016020809104026020016040519081016040528092919081815260200182805461063a90611a16565b80156106875780601f1061065c57610100808354040283529160200191610687565b820191906000526020600020905b81548152906001019060200180831161066a57829003601f168201915b5050505050905090565b600061069c82611085565b6106b9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106e082610b86565b9050336001600160a01b03821614610719576106fc8133610ed3565b610719576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b33600061078182610c91565b600b5490915060ff16156107c55760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064015b60405180910390fd5b600154600054036107d7906001611988565b61014d101561081d5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107bc565b326001600160a01b038316146108645760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016107bc565b600181106108bf5760405162461bcd60e51b815260206004820152602260248201527f45786365656473206d617820746f6b656e20636f756e74207065722077616c6c604482015261195d60f21b60648201526084016107bc565b346108d2661c6bf52634000060016119b4565b146109185760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016107bc565b6109238260016110ac565b5050565b6000610932826110c6565b9050836001600160a01b0316816001600160a01b0316146109655760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109b2576109958633610ed3565b6109b257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109d957604051633a954ecd60e21b815260040160405180910390fd5b80156109e457600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610a6f5760018401600081815260046020526040902054610a6d576000548114610a6d5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610ac061102b565b6040514790600090339083908381818185875af1925050503d8060008114610b04576040519150601f19603f3d011682016040523d82523d6000602084013e610b09565b606091505b50509050806109235760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016107bc565b610b6683838360405180602001604052806000815250610db2565b505050565b610b7361102b565b80516109239060099060208401906114d9565b60006105de826110c6565b610b9961102b565b600b54610100900460ff1615610be15760405162461bcd60e51b815260206004820152600d60248201526c0416c726561647920736574757609c1b60448201526064016107bc565b600b805461ff001916610100179055610c01610bfa3390565b60016110ac565b565b60098054610c1090611a16565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3c90611a16565b8015610c895780601f10610c5e57610100808354040283529160200191610c89565b820191906000526020600020905b815481529060010190602001808311610c6c57829003601f168201915b505050505081565b60006001600160a01b038216610cba576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610ce861102b565b610c01600061112e565b610cfa61102b565b805161092390600a9060208401906114d9565b60606003805461060e90611a16565b6001600160a01b038216331415610d465760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dbd848484610927565b6001600160a01b0383163b15610df657610dd984848484611180565b610df6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e0782611085565b610e4b5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107bc565b600060098054610e5a90611a16565b905011610e7657604051806020016040528060008152506105de565b6009610e8183611277565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610eb193929190611891565b60405160208183030381529060405292915050565b600a8054610c1090611a16565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b158015610f2f57600080fd5b505afa158015610f43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6791906117ca565b6001600160a01b03161415610f805760019150506105de565b6001600160a01b0380851660009081526007602090815260408083209387168352929052205460ff165b949350505050565b610fba61102b565b6001600160a01b03811661101f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bc565b6110288161112e565b50565b6008546001600160a01b03163314610c015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bc565b60008054821080156105de575050600090815260046020526040902054600160e01b161590565b610923828260405180602001604052806000815250611375565b60008160005481101561111557600081815260046020526040902054600160e01b8116611113575b8061110c5750600019016000818152600460205260409020546110ee565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111b5903390899088908890600401611942565b602060405180830381600087803b1580156111cf57600080fd5b505af19250505080156111ff575060408051601f3d908101601f191682019092526111fc918101906117ad565b60015b61125a573d80801561122d576040519150601f19603f3d011682016040523d82523d6000602084013e611232565b606091505b508051611252576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60608161129b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112c557806112af81611a51565b91506112be9050600a836119a0565b915061129f565b60008167ffffffffffffffff8111156112e0576112e0611ac2565b6040519080825280601f01601f19166020018201604052801561130a576020820181803683370190505b5090505b8415610faa5761131f6001836119d3565b915061132c600a86611a6c565b611337906030611988565b60f81b81838151811061134c5761134c611aac565b60200101906001600160f81b031916908160001a90535061136e600a866119a0565b945061130e565b61137f83836113e2565b6001600160a01b0383163b15610b66576000548281035b6113a96000868380600101945086611180565b6113c6576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113965781600054146113db57600080fd5b5050505050565b600054816114035760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146114b257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161147a565b50816114d057604051622e076360e81b815260040160405180910390fd5b60005550505050565b8280546114e590611a16565b90600052602060002090601f016020900481019282611507576000855561154d565b82601f1061152057805160ff191683800117855561154d565b8280016001018555821561154d579182015b8281111561154d578251825591602001919060010190611532565b5061155992915061155d565b5090565b5b80821115611559576000815560010161155e565b600067ffffffffffffffff8084111561158d5761158d611ac2565b604051601f8501601f19908116603f011681019082821181831017156115b5576115b5611ac2565b816040528093508581528686860111156115ce57600080fd5b858560208301376000602087830101525050509392505050565b803580151581146115f857600080fd5b919050565b60006020828403121561160f57600080fd5b813561110c81611ad8565b6000806040838503121561162d57600080fd5b823561163881611ad8565b9150602083013561164881611ad8565b809150509250929050565b60008060006060848603121561166857600080fd5b833561167381611ad8565b9250602084013561168381611ad8565b929592945050506040919091013590565b600080600080608085870312156116aa57600080fd5b84356116b581611ad8565b935060208501356116c581611ad8565b925060408501359150606085013567ffffffffffffffff8111156116e857600080fd5b8501601f810187136116f957600080fd5b61170887823560208401611572565b91505092959194509250565b6000806040838503121561172757600080fd5b823561173281611ad8565b9150611740602084016115e8565b90509250929050565b6000806040838503121561175c57600080fd5b823561176781611ad8565b946020939093013593505050565b60006020828403121561178757600080fd5b61110c826115e8565b6000602082840312156117a257600080fd5b813561110c81611aed565b6000602082840312156117bf57600080fd5b815161110c81611aed565b6000602082840312156117dc57600080fd5b815161110c81611ad8565b6000602082840312156117f957600080fd5b813567ffffffffffffffff81111561181057600080fd5b8201601f8101841361182157600080fd5b610faa84823560208401611572565b60006020828403121561184257600080fd5b5035919050565b600081518084526118618160208601602086016119ea565b601f01601f19169290920160200192915050565b600081516118878185602086016119ea565b9290920192915050565b600080855481600182811c9150808316806118ad57607f831692505b60208084108214156118cd57634e487b7160e01b86526022600452602486fd5b8180156118e157600181146118f25761191f565b60ff1986168952848901965061191f565b60008c81526020902060005b868110156119175781548b8201529085019083016118fe565b505084890196505b5050505050506119386119328287611875565b85611875565b9695505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061193890830184611849565b60208152600061110c6020830184611849565b6000821982111561199b5761199b611a80565b500190565b6000826119af576119af611a96565b500490565b60008160001904831182151516156119ce576119ce611a80565b500290565b6000828210156119e5576119e5611a80565b500390565b60005b83811015611a055781810151838201526020016119ed565b83811115610df65750506000910152565b600181811c90821680611a2a57607f821691505b60208210811415611a4b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a6557611a65611a80565b5060010190565b600082611a7b57611a7b611a96565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461102857600080fd5b6001600160e01b03198116811461102857600080fdfea26469706673582212206f65f5b593c137c66a87e8112a3fafd13892fbf057ad56219c91718773e1a8ff64736f6c63430008070033
Deployed Bytecode Sourcemap
56993:2622:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20932:639;;;;;;;;;;-1:-1:-1;20932:639:0;;;;;:::i;:::-;;:::i;:::-;;;7756:14:1;;7749:22;7731:41;;7719:2;7704:18;20932:639:0;;;;;;;;58712:81;;;;;;;;;;-1:-1:-1;58712:81:0;;;;;:::i;:::-;;:::i;:::-;;21834:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28317:218::-;;;;;;;;;;-1:-1:-1;28317:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7054:32:1;;;7036:51;;7024:2;7009:18;28317:218:0;6890:203:1;27758:400:0;;;;;;;;;;-1:-1:-1;27758:400:0;;;;;:::i;:::-;;:::i;57320:42::-;;;;;;;;;;;;57361:1;57320:42;;;;;11732:25:1;;;11720:2;11705:18;57320:42:0;11586:177:1;57591:497:0;;;:::i;17585:323::-;;;;;;;;;;-1:-1:-1;17859:12:0;;17646:7;17843:13;:28;17585:323;;32024:2817;;;;;;;;;;-1:-1:-1;32024:2817:0;;;;;:::i;:::-;;:::i;57369:40::-;;;;;;;;;;;;57406:3;57369:40;;59403:209;;;;;;;;;;;;;:::i;34937:185::-;;;;;;;;;;-1:-1:-1;34937:185:0;;;;;:::i;:::-;;:::i;58801:100::-;;;;;;;;;;-1:-1:-1;58801:100:0;;;;;:::i;:::-;;:::i;57468:25::-;;;;;;;;;;-1:-1:-1;57468:25:0;;;;;;;;23227:152;;;;;;;;;;-1:-1:-1;23227:152:0;;;;;:::i;:::-;;:::i;58549:155::-;;;;;;;;;;;;;:::i;57045:80::-;;;;;;;;;;;;;:::i;18769:233::-;;;;;;;;;;-1:-1:-1;18769:233:0;;;;;:::i;:::-;;:::i;56099:103::-;;;;;;;;;;;;;:::i;55451:87::-;;;;;;;;;;-1:-1:-1;55524:6:0;;-1:-1:-1;;;;;55524:6:0;55451:87;;58909:116;;;;;;;;;;-1:-1:-1;58909:116:0;;;;;:::i;:::-;;:::i;22010:104::-;;;;;;;;;;;;;:::i;57416:43::-;;;;;;;;;;;;57448:11;57416:43;;28875:308;;;;;;;;;;-1:-1:-1;28875:308:0;;;;;:::i;:::-;;:::i;35720:399::-;;;;;;;;;;-1:-1:-1;35720:399:0;;;;;:::i;:::-;;:::i;57169:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;57169:46:0;;;;;59033:362;;;;;;;;;;-1:-1:-1;59033:362:0;;;;;:::i;:::-;;:::i;57222:89::-;;;;;;;;;;;;57269:42;57222:89;;57132:30;;;;;;;;;;;;;:::i;58096:445::-;;;;;;;;;;-1:-1:-1;58096:445:0;;;;;:::i;:::-;;:::i;56357:201::-;;;;;;;;;;-1:-1:-1;56357:201:0;;;;;:::i;:::-;;:::i;20932:639::-;21017:4;-1:-1:-1;;;;;;;;;21341:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21418:25:0;;;21341:102;:179;;;-1:-1:-1;;;;;;;;;;21495:25:0;;;21341:179;21321:199;20932:639;-1:-1:-1;;20932:639:0:o;58712:81::-;55337:13;:11;:13::i;:::-;58770:6:::1;:15:::0;;-1:-1:-1;;58770:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58712:81::o;21834:100::-;21888:13;21921:5;21914:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21834:100;:::o;28317:218::-;28393:7;28418:16;28426:7;28418;:16::i;:::-;28413:64;;28443:34;;-1:-1:-1;;;28443:34:0;;;;;;;;;;;28413:64;-1:-1:-1;28497:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;28497:30:0;;28317:218::o;27758:400::-;27839:13;27855:16;27863:7;27855;:16::i;:::-;27839:32;-1:-1:-1;51615:10:0;-1:-1:-1;;;;;27888:28:0;;;27884:175;;27936:44;27953:5;51615:10;58096:445;:::i;27936:44::-;27931:128;;28008:35;;-1:-1:-1;;;28008:35:0;;;;;;;;;;;27931:128;28071:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;28071:35:0;-1:-1:-1;;;;;28071:35:0;;;;;;;;;28122:28;;28071:24;;28122:28;;;;;;;27828:330;27758:400;;:::o;57591:497::-;51615:10;57635:15;57702:18;51615:10;57702:9;:18::i;:::-;57740:6;;57676:44;;-1:-1:-1;57740:6:0;;57739:7;57731:26;;;;-1:-1:-1;;;57731:26:0;;8209:2:1;57731:26:0;;;8191:21:1;8248:1;8228:18;;;8221:29;-1:-1:-1;;;8266:18:1;;;8259:36;8312:18;;57731:26:0;;;;;;;;;17859:12;;17646:7;17843:13;:28;57790:17;;57806:1;57790:17;:::i;:::-;57406:3;57776:31;;57768:62;;;;-1:-1:-1;;;57768:62:0;;9292:2:1;57768:62:0;;;9274:21:1;9331:2;9311:18;;;9304:30;-1:-1:-1;;;9350:18:1;;;9343:48;9408:18;;57768:62:0;9090:342:1;57768:62:0;57849:9;-1:-1:-1;;;;;57849:20:0;;;57841:45;;;;-1:-1:-1;;;57841:45:0;;11447:2:1;57841:45:0;;;11429:21:1;11486:2;11466:18;;;11459:30;-1:-1:-1;;;11505:18:1;;;11498:42;11557:18;;57841:45:0;11245:336:1;57841:45:0;57361:1;57907:15;:32;57899:79;;;;-1:-1:-1;;;57899:79:0;;10701:2:1;57899:79:0;;;10683:21:1;10740:2;10720:18;;;10713:30;10779:34;10759:18;;;10752:62;-1:-1:-1;;;10830:18:1;;;10823:32;10872:19;;57899:79:0;10499:398:1;57899:79:0;58010:9;57997;57448:11;57997:1;:9;:::i;:::-;:22;57989:57;;;;-1:-1:-1;;;57989:57:0;;10350:2:1;57989:57:0;;;10332:21:1;10389:2;10369:18;;;10362:30;-1:-1:-1;;;10408:18:1;;;10401:52;10470:18;;57989:57:0;10148:346:1;57989:57:0;58059:21;58069:7;58078:1;58059:9;:21::i;:::-;57624:464;;57591:497::o;32024:2817::-;32158:27;32188;32207:7;32188:18;:27::i;:::-;32158:57;;32273:4;-1:-1:-1;;;;;32232:45:0;32248:19;-1:-1:-1;;;;;32232:45:0;;32228:86;;32286:28;;-1:-1:-1;;;32286:28:0;;;;;;;;;;;32228:86;32328:27;31138:24;;;:15;:24;;;;;31360:26;;51615:10;30763:30;;;-1:-1:-1;;;;;30456:28:0;;30741:20;;;30738:56;32514:180;;32607:43;32624:4;51615:10;58096:445;:::i;32607:43::-;32602:92;;32659:35;;-1:-1:-1;;;32659:35:0;;;;;;;;;;;32602:92;-1:-1:-1;;;;;32711:16:0;;32707:52;;32736:23;;-1:-1:-1;;;32736:23:0;;;;;;;;;;;32707:52;32908:15;32905:160;;;33048:1;33027:19;33020:30;32905:160;-1:-1:-1;;;;;33445:24:0;;;;;;;:18;:24;;;;;;33443:26;;-1:-1:-1;;33443:26:0;;;33514:22;;;;;;;;;33512:24;;-1:-1:-1;33512:24:0;;;26616:11;26591:23;26587:41;26574:63;-1:-1:-1;;;26574:63:0;33807:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;34102:47:0;;34098:627;;34207:1;34197:11;;34175:19;34330:30;;;:17;:30;;;;;;34326:384;;34468:13;;34453:11;:28;34449:242;;34615:30;;;;:17;:30;;;;;:52;;;34449:242;34156:569;34098:627;34772:7;34768:2;-1:-1:-1;;;;;34753:27:0;34762:4;-1:-1:-1;;;;;34753:27:0;;;;;;;;;;;32147:2694;;;32024:2817;;;:::o;59403:209::-;55337:13;:11;:13::i;:::-;59522:37:::1;::::0;59471:21:::1;::::0;59453:15:::1;::::0;51615:10;;59471:21;;59453:15;59522:37;59453:15;59522:37;59471:21;51615:10;59522:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59503:56;;;59578:7;59570:34;;;::::0;-1:-1:-1;;;59570:34:0;;11104:2:1;59570:34:0::1;::::0;::::1;11086:21:1::0;11143:2;11123:18;;;11116:30;-1:-1:-1;;;11162:18:1;;;11155:44;11216:18;;59570:34:0::1;10902:338:1::0;34937:185:0;35075:39;35092:4;35098:2;35102:7;35075:39;;;;;;;;;;;;:16;:39::i;:::-;34937:185;;;:::o;58801:100::-;55337:13;:11;:13::i;:::-;58875:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;23227:152::-:0;23299:7;23342:27;23361:7;23342:18;:27::i;58549:155::-;55337:13;:11;:13::i;:::-;58607:8:::1;::::0;::::1;::::0;::::1;;;58606:9;58598:35;;;::::0;-1:-1:-1;;;58598:35:0;;8950:2:1;58598:35:0::1;::::0;::::1;8932:21:1::0;8989:2;8969:18;;;8962:30;-1:-1:-1;;;9008:18:1;;;9001:43;9061:18;;58598:35:0::1;8748:337:1::0;58598:35:0::1;58644:8;:15:::0;;-1:-1:-1;;58644:15:0::1;;;::::0;;58670:26:::1;58680:12;51615:10:::0;;51528:105;58680:12:::1;58694:1;58670:9;:26::i;:::-;58549:155::o:0;57045:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18769:233::-;18841:7;-1:-1:-1;;;;;18865:19:0;;18861:60;;18893:28;;-1:-1:-1;;;18893:28:0;;;;;;;;;;;18861:60;-1:-1:-1;;;;;;18939:25:0;;;;;:18;:25;;;;;;12928:13;18939:55;;18769:233::o;56099:103::-;55337:13;:11;:13::i;:::-;56164:30:::1;56191:1;56164:18;:30::i;58909:116::-:0;55337:13;:11;:13::i;:::-;58991:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;22010:104::-:0;22066:13;22099:7;22092:14;;;;;:::i;28875:308::-;-1:-1:-1;;;;;28974:31:0;;51615:10;28974:31;28970:61;;;29014:17;;-1:-1:-1;;;29014:17:0;;;;;;;;;;;28970:61;51615:10;29044:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;29044:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;29044:60:0;;;;;;;;;;29120:55;;7731:41:1;;;29044:49:0;;51615:10;29120:55;;7704:18:1;29120:55:0;;;;;;;28875:308;;:::o;35720:399::-;35887:31;35900:4;35906:2;35910:7;35887:12;:31::i;:::-;-1:-1:-1;;;;;35933:14:0;;;:19;35929:183;;35972:56;36003:4;36009:2;36013:7;36022:5;35972:30;:56::i;:::-;35967:145;;36056:40;;-1:-1:-1;;;36056:40:0;;;;;;;;;;;35967:145;35720:399;;;;:::o;59033:362::-;59099:13;59133:17;59141:8;59133:7;:17::i;:::-;59125:51;;;;-1:-1:-1;;;59125:51:0;;9639:2:1;59125:51:0;;;9621:21:1;9678:2;9658:18;;;9651:30;-1:-1:-1;;;9697:18:1;;;9690:51;9758:18;;59125:51:0;9437:345:1;59125:51:0;59218:1;59200:7;59194:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;59276:7;59300:26;59317:8;59300:16;:26::i;:::-;59343:13;;;;;;;;;;;;;-1:-1:-1;;;59343:13:0;;;59243:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59187:200;59033:362;-1:-1:-1;;59033:362:0:o;57132:30::-;;;;;;;:::i;58096:445::-;58394:28;;-1:-1:-1;;;58394:28:0;;-1:-1:-1;;;;;7054:32:1;;;58394:28:0;;;7036:51:1;58221:4:0;;57269:42;;58386:49;;;57269:42;;58394:21;;7009:18:1;;58394:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;58386:49:0;;58382:93;;;58459:4;58452:11;;;;;58382:93;-1:-1:-1;;;;;29461:25:0;;;29437:4;29461:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;58494:39;58487:46;58096:445;-1:-1:-1;;;;58096:445:0:o;56357:201::-;55337:13;:11;:13::i;:::-;-1:-1:-1;;;;;56446:22:0;::::1;56438:73;;;::::0;-1:-1:-1;;;56438:73:0;;8543:2:1;56438:73:0::1;::::0;::::1;8525:21:1::0;8582:2;8562:18;;;8555:30;8621:34;8601:18;;;8594:62;-1:-1:-1;;;8672:18:1;;;8665:36;8718:19;;56438:73:0::1;8341:402:1::0;56438:73:0::1;56522:28;56541:8;56522:18;:28::i;:::-;56357:201:::0;:::o;55616:132::-;55524:6;;-1:-1:-1;;;;;55524:6:0;51615:10;55680:23;55672:68;;;;-1:-1:-1;;;55672:68:0;;9989:2:1;55672:68:0;;;9971:21:1;;;10008:18;;;10001:30;10067:34;10047:18;;;10040:62;10119:18;;55672:68:0;9787:356:1;29762:282:0;29827:4;29917:13;;29907:7;:23;29864:153;;;;-1:-1:-1;;29968:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;29968:44:0;:49;;29762:282::o;45360:112::-;45437:27;45447:2;45451:8;45437:27;;;;;;;;;;;;:9;:27::i;24382:1275::-;24449:7;24484;24586:13;;24579:4;:20;24575:1015;;;24624:14;24641:23;;;:17;:23;;;;;;-1:-1:-1;;;24730:24:0;;24726:845;;25395:113;25402:11;25395:113;;-1:-1:-1;;;25473:6:0;25455:25;;;;:17;:25;;;;;;25395:113;;;25541:6;24382:1275;-1:-1:-1;;;24382:1275:0:o;24726:845::-;24601:989;24575:1015;25618:31;;-1:-1:-1;;;25618:31:0;;;;;;;;;;;56718:191;56811:6;;;-1:-1:-1;;;;;56828:17:0;;;-1:-1:-1;;;;;;56828:17:0;;;;;;;56861:40;;56811:6;;;56828:17;56811:6;;56861:40;;56792:16;;56861:40;56781:128;56718:191;:::o;38203:716::-;38387:88;;-1:-1:-1;;;38387:88:0;;38366:4;;-1:-1:-1;;;;;38387:45:0;;;;;:88;;51615:10;;38454:4;;38460:7;;38469:5;;38387:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38387:88:0;;;;;;;;-1:-1:-1;;38387:88:0;;;;;;;;;;;;:::i;:::-;;;38383:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38670:13:0;;38666:235;;38716:40;;-1:-1:-1;;;38716:40:0;;;;;;;;;;;38666:235;38859:6;38853:13;38844:6;38840:2;38836:15;38829:38;38383:529;-1:-1:-1;;;;;;38546:64:0;-1:-1:-1;;;38546:64:0;;-1:-1:-1;38203:716:0;;;;;;:::o;430:723::-;486:13;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;44587:689;44718:19;44724:2;44728:8;44718:5;:19::i;:::-;-1:-1:-1;;;;;44779:14:0;;;:19;44775:483;;44819:11;44833:13;44881:14;;;44914:233;44945:62;44984:1;44988:2;44992:7;;;;;;45001:5;44945:30;:62::i;:::-;44940:167;;45043:40;;-1:-1:-1;;;45043:40:0;;;;;;;;;;;44940:167;45142:3;45134:5;:11;44914:233;;45229:3;45212:13;;:20;45208:34;;45234:8;;;45208:34;44800:458;;44587:689;;;:::o;39381:2454::-;39454:20;39477:13;39505;39501:44;;39527:18;;-1:-1:-1;;;39527:18:0;;;;;;;;;;;39501:44;-1:-1:-1;;;;;40033:22:0;;;;;;:18;:22;;;;13066:2;40033:22;;;:71;;40071:32;40059:45;;40033:71;;;40347:31;;;:17;:31;;;;;-1:-1:-1;27047:15:0;;27021:24;27017:46;26616:11;26591:23;26587:41;26584:52;26574:63;;40347:173;;40582:23;;;;40347:31;;40033:22;;41081:25;40033:22;;40934:335;41349:1;41335:12;41331:20;41289:346;41390:3;41381:7;41378:16;41289:346;;41608:7;41598:8;41595:1;41568:25;41565:1;41562;41557:59;41443:1;41430:15;41289:346;;;-1:-1:-1;41668:13:0;41664:45;;41690:19;;-1:-1:-1;;;41690:19:0;;;;;;;;;;;41664:45;41726:13;:19;-1:-1:-1;34937:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;1067:388::-;1135:6;1143;1196:2;1184:9;1175:7;1171:23;1167:32;1164:52;;;1212:1;1209;1202:12;1164:52;1251:9;1238:23;1270:31;1295:5;1270:31;:::i;:::-;1320:5;-1:-1:-1;1377:2:1;1362:18;;1349:32;1390:33;1349:32;1390:33;:::i;:::-;1442:7;1432:17;;;1067:388;;;;;:::o;1460:456::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1661:9;1648:23;1680:31;1705:5;1680:31;:::i;:::-;1730:5;-1:-1:-1;1787:2:1;1772:18;;1759:32;1800:33;1759:32;1800:33;:::i;:::-;1460:456;;1852:7;;-1:-1:-1;;;1906:2:1;1891:18;;;;1878:32;;1460:456::o;1921:794::-;2016:6;2024;2032;2040;2093:3;2081:9;2072:7;2068:23;2064:33;2061:53;;;2110:1;2107;2100:12;2061:53;2149:9;2136:23;2168:31;2193:5;2168:31;:::i;:::-;2218:5;-1:-1:-1;2275:2:1;2260:18;;2247:32;2288:33;2247:32;2288:33;:::i;:::-;2340:7;-1:-1:-1;2394:2:1;2379:18;;2366:32;;-1:-1:-1;2449:2:1;2434:18;;2421:32;2476:18;2465:30;;2462:50;;;2508:1;2505;2498:12;2462:50;2531:22;;2584:4;2576:13;;2572:27;-1:-1:-1;2562:55:1;;2613:1;2610;2603:12;2562:55;2636:73;2701:7;2696:2;2683:16;2678:2;2674;2670:11;2636:73;:::i;:::-;2626:83;;;1921:794;;;;;;;:::o;2720:315::-;2785:6;2793;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:31;2945:5;2920:31;:::i;:::-;2970:5;-1:-1:-1;2994:35:1;3025:2;3010:18;;2994:35;:::i;:::-;2984:45;;2720:315;;;;;:::o;3040:::-;3108:6;3116;3169:2;3157:9;3148:7;3144:23;3140:32;3137:52;;;3185:1;3182;3175:12;3137:52;3224:9;3211:23;3243:31;3268:5;3243:31;:::i;:::-;3293:5;3345:2;3330:18;;;;3317:32;;-1:-1:-1;;;3040:315:1:o;3360:180::-;3416:6;3469:2;3457:9;3448:7;3444:23;3440:32;3437:52;;;3485:1;3482;3475:12;3437:52;3508:26;3524:9;3508:26;:::i;3545:245::-;3603:6;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3711:9;3698:23;3730:30;3754:5;3730:30;:::i;3795:249::-;3864:6;3917:2;3905:9;3896:7;3892:23;3888:32;3885:52;;;3933:1;3930;3923:12;3885:52;3965:9;3959:16;3984:30;4008:5;3984:30;:::i;4049:280::-;4148:6;4201:2;4189:9;4180:7;4176:23;4172:32;4169:52;;;4217:1;4214;4207:12;4169:52;4249:9;4243:16;4268:31;4293:5;4268:31;:::i;4334:450::-;4403:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:52;;;4472:1;4469;4462:12;4424:52;4512:9;4499:23;4545:18;4537:6;4534:30;4531:50;;;4577:1;4574;4567:12;4531:50;4600:22;;4653:4;4645:13;;4641:27;-1:-1:-1;4631:55:1;;4682:1;4679;4672:12;4631:55;4705:73;4770:7;4765:2;4752:16;4747:2;4743;4739:11;4705:73;:::i;4789:180::-;4848:6;4901:2;4889:9;4880:7;4876:23;4872:32;4869:52;;;4917:1;4914;4907:12;4869:52;-1:-1:-1;4940:23:1;;4789:180;-1:-1:-1;4789:180:1:o;4974:257::-;5015:3;5053:5;5047:12;5080:6;5075:3;5068:19;5096:63;5152:6;5145:4;5140:3;5136:14;5129:4;5122:5;5118:16;5096:63;:::i;:::-;5213:2;5192:15;-1:-1:-1;;5188:29:1;5179:39;;;;5220:4;5175:50;;4974:257;-1:-1:-1;;4974:257:1:o;5236:185::-;5278:3;5316:5;5310:12;5331:52;5376:6;5371:3;5364:4;5357:5;5353:16;5331:52;:::i;:::-;5399:16;;;;;5236:185;-1:-1:-1;;5236:185:1:o;5426:1249::-;5650:3;5679:1;5712:6;5706:13;5742:3;5764:1;5792:9;5788:2;5784:18;5774:28;;5852:2;5841:9;5837:18;5874;5864:61;;5918:4;5910:6;5906:17;5896:27;;5864:61;5944:2;5992;5984:6;5981:14;5961:18;5958:38;5955:165;;;-1:-1:-1;;;6019:33:1;;6075:4;6072:1;6065:15;6105:4;6026:3;6093:17;5955:165;6136:18;6163:104;;;;6281:1;6276:320;;;;6129:467;;6163:104;-1:-1:-1;;6196:24:1;;6184:37;;6241:16;;;;-1:-1:-1;6163:104:1;;6276:320;11841:1;11834:14;;;11878:4;11865:18;;6371:1;6385:165;6399:6;6396:1;6393:13;6385:165;;;6477:14;;6464:11;;;6457:35;6520:16;;;;6414:10;;6385:165;;;6389:3;;6579:6;6574:3;6570:16;6563:23;;6129:467;;;;;;;6612:57;6638:30;6664:3;6656:6;6638:30;:::i;:::-;6630:6;6612:57;:::i;:::-;6605:64;5426:1249;-1:-1:-1;;;;;;5426:1249:1:o;7098:488::-;-1:-1:-1;;;;;7367:15:1;;;7349:34;;7419:15;;7414:2;7399:18;;7392:43;7466:2;7451:18;;7444:34;;;7514:3;7509:2;7494:18;;7487:31;;;7292:4;;7535:45;;7560:19;;7552:6;7535:45;:::i;7783:219::-;7932:2;7921:9;7914:21;7895:4;7952:44;7992:2;7981:9;7977:18;7969:6;7952:44;:::i;11894:128::-;11934:3;11965:1;11961:6;11958:1;11955:13;11952:39;;;11971:18;;:::i;:::-;-1:-1:-1;12007:9:1;;11894:128::o;12027:120::-;12067:1;12093;12083:35;;12098:18;;:::i;:::-;-1:-1:-1;12132:9:1;;12027:120::o;12152:168::-;12192:7;12258:1;12254;12250:6;12246:14;12243:1;12240:21;12235:1;12228:9;12221:17;12217:45;12214:71;;;12265:18;;:::i;:::-;-1:-1:-1;12305:9:1;;12152:168::o;12325:125::-;12365:4;12393:1;12390;12387:8;12384:34;;;12398:18;;:::i;:::-;-1:-1:-1;12435:9:1;;12325:125::o;12455:258::-;12527:1;12537:113;12551:6;12548:1;12545:13;12537:113;;;12627:11;;;12621:18;12608:11;;;12601:39;12573:2;12566:10;12537:113;;;12668:6;12665:1;12662:13;12659:48;;;-1:-1:-1;;12703:1:1;12685:16;;12678:27;12455:258::o;12718:380::-;12797:1;12793:12;;;;12840;;;12861:61;;12915:4;12907:6;12903:17;12893:27;;12861:61;12968:2;12960:6;12957:14;12937:18;12934:38;12931:161;;;13014:10;13009:3;13005:20;13002:1;12995:31;13049:4;13046:1;13039:15;13077:4;13074:1;13067:15;12931:161;;12718:380;;;:::o;13103:135::-;13142:3;-1:-1:-1;;13163:17:1;;13160:43;;;13183:18;;:::i;:::-;-1:-1:-1;13230:1:1;13219:13;;13103:135::o;13243:112::-;13275:1;13301;13291:35;;13306:18;;:::i;:::-;-1:-1:-1;13340:9:1;;13243:112::o;13360:127::-;13421:10;13416:3;13412:20;13409:1;13402:31;13452:4;13449:1;13442:15;13476:4;13473:1;13466:15;13492:127;13553:10;13548:3;13544:20;13541:1;13534:31;13584:4;13581:1;13574:15;13608:4;13605:1;13598:15;13624:127;13685:10;13680:3;13676:20;13673:1;13666:31;13716:4;13713:1;13706:15;13740:4;13737:1;13730:15;13756:127;13817:10;13812:3;13808:20;13805:1;13798:31;13848:4;13845:1;13838:15;13872:4;13869:1;13862:15;13888:131;-1:-1:-1;;;;;13963:31:1;;13953:42;;13943:70;;14009:1;14006;13999:12;14024:131;-1:-1:-1;;;;;;14098:32:1;;14088:43;;14078:71;;14145:1;14142;14135:12
Swarm Source
ipfs://6f65f5b593c137c66a87e8112a3fafd13892fbf057ad56219c91718773e1a8ff
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.