Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 17 from a total of 17 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 17340753 | 583 days ago | IN | 0 ETH | 0.00126019 | ||||
Withdraw | 17041553 | 625 days ago | IN | 0 ETH | 0.00083845 | ||||
Mint | 17022074 | 628 days ago | IN | 0.00088 ETH | 0.00255759 | ||||
Dev Mint | 17021829 | 628 days ago | IN | 0 ETH | 0.00241527 | ||||
Dev Mint | 17021814 | 628 days ago | IN | 0 ETH | 0.00465941 | ||||
Dev Mint | 17021687 | 628 days ago | IN | 0 ETH | 0.00228382 | ||||
Dev Mint | 17021656 | 628 days ago | IN | 0 ETH | 0.00202993 | ||||
Dev Mint | 17021654 | 628 days ago | IN | 0 ETH | 0.00174415 | ||||
Dev Mint | 17021646 | 628 days ago | IN | 0 ETH | 0.00188908 | ||||
Mint | 17021632 | 628 days ago | IN | 0.00792 ETH | 0.00225831 | ||||
Mint | 17021570 | 628 days ago | IN | 0.00704 ETH | 0.00187707 | ||||
Dev Mint | 17021521 | 628 days ago | IN | 0 ETH | 0.00249861 | ||||
Mint | 17021414 | 628 days ago | IN | 0.0088 ETH | 0.00214563 | ||||
Dev Mint | 17021407 | 628 days ago | IN | 0 ETH | 0.00153847 | ||||
Mint | 17021394 | 628 days ago | IN | 0.00088 ETH | 0.00175516 | ||||
Open Shop Status | 17021371 | 628 days ago | IN | 0 ETH | 0.00061226 | ||||
Dev Mint | 17015140 | 629 days ago | IN | 0 ETH | 0.00174523 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
17041553 | 625 days ago | 0.02552 ETH |
Loading...
Loading
Contract Name:
TheDevilofEmpyrean
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-10 */ // //▄▄▄▄▄ ▄ .▄▄▄▄ . ·▄▄▄▄ ▄▄▄ . ▌ ▐·▪ ▄▄▌ ·▄▄▄ ▄▄▄ .• ▌ ▄ ·. ▄▄▄· ▄· ▄▌▄▄▄ ▄▄▄ . ▄▄▄· ▐ ▄ //•██ ██▪▐█▀▄.▀· ██▪ ██ ▀▄.▀·▪█·█▌██ ██• ▪ ▐▄▄· ▀▄.▀··██ ▐███▪▐█ ▄█▐█▪██▌▀▄ █·▀▄.▀·▐█ ▀█ •█▌▐█ // ▐█.▪██▀▐█▐▀▀▪▄ ▐█· ▐█▌▐▀▀▪▄▐█▐█•▐█·██▪ ▄█▀▄ ██▪ ▐▀▀▪▄▐█ ▌▐▌▐█· ██▀·▐█▌▐█▪▐▀▀▄ ▐▀▀▪▄▄█▀▀█ ▐█▐▐▌ // ▐█▌·██▌▐▀▐█▄▄▌ ██. ██ ▐█▄▄▌ ███ ▐█▌▐█▌▐▌ ▐█▌.▐▌██▌. ▐█▄▄▌██ ██▌▐█▌▐█▪·• ▐█▀·.▐█•█▌▐█▄▄▌▐█ ▪▐▌██▐█▌ // ▀▀▀ ▀▀▀ · ▀▀▀ ▀▀▀▀▀• ▀▀▀ . ▀ ▀▀▀.▀▀▀ ▀█▄▀▪▀▀▀ ▀▀▀ ▀▀ █▪▀▀▀.▀ ▀ • .▀ ▀ ▀▀▀ ▀ ▀ ▀▀ █▪ // // File: erc721a/contracts/IERC721A.sol // SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: erc721a/contracts/extensions/IERC721AQueryable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File: erc721a/contracts/extensions/ERC721AQueryable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/StorageSlot.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol) pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ``` * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } } // File: @openzeppelin/contracts/utils/Arrays.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Arrays.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to array types. */ library Arrays { using StorageSlot for bytes32; /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { if (array.length == 0) { return 0; } uint256 low = 0; uint256 high = array.length; while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds down (it does integer division with truncation). if (unsafeAccess(array, mid).value > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && unsafeAccess(array, low - 1).value == element) { return low - 1; } else { return low; } } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeAccess(address[] storage arr, uint256 pos) internal pure returns (StorageSlot.AddressSlot storage) { bytes32 slot; /// @solidity memory-safe-assembly assembly { mstore(0, arr.slot) slot := add(keccak256(0, 0x20), pos) } return slot.getAddressSlot(); } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeAccess(bytes32[] storage arr, uint256 pos) internal pure returns (StorageSlot.Bytes32Slot storage) { bytes32 slot; /// @solidity memory-safe-assembly assembly { mstore(0, arr.slot) slot := add(keccak256(0, 0x20), pos) } return slot.getBytes32Slot(); } /** * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check. * * WARNING: Only use if you are certain `pos` is lower than the array length. */ function unsafeAccess(uint256[] storage arr, uint256 pos) internal pure returns (StorageSlot.Uint256Slot storage) { bytes32 slot; /// @solidity memory-safe-assembly assembly { mstore(0, arr.slot) slot := add(keccak256(0, 0x20), pos) } return slot.getUint256Slot(); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: contracts/The Devil of Empyrean.sol pragma solidity >=0.8.13 <0.9.0; contract TheDevilofEmpyrean is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string private originURI; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public howMuchPerTx = 0.00088 ether; uint256 public SupplyLimit = 3333; uint256 public maxMintPerTx = 10; uint256 public maxInYourWallet = 10; bool public openSale = false; bool public reveal = true; constructor( string memory _uri, string memory _hiddenMetadataUri ) ERC721A("The Devil of Empyrean", "EMPYREAN") { setURI(_uri); setHiddenMetadataUri(_hiddenMetadataUri); } function Mint(uint256 _mintAmount) public payable nonReentrant{ require(openSale, "The Sale is paused!"); require(_mintAmount > 0 && _mintAmount <= maxMintPerTx, "Invalid mint amount!"); require(totalSupply() + _mintAmount <= SupplyLimit, "Max supply exceeded!"); require(balanceOf(msg.sender) + _mintAmount <= maxInYourWallet, "Max mint per wallet exceeded!"); require(msg.value >= _mintAmount * howMuchPerTx,"Wrong amount input!"); _safeMint(_msgSender(), _mintAmount); } function Airdrop(uint256 _mintAmount, address _receiver) public onlyOwner { require(totalSupply() + _mintAmount <= SupplyLimit, "Max supply exceeded!"); _safeMint(_receiver, _mintAmount); } function DevMint(uint256 _mintAmount) public onlyOwner { require(_mintAmount > 0 && _mintAmount <= 50, "Invalid mint amount!"); require(totalSupply() + _mintAmount <= SupplyLimit, "Max supply exceeded!"); _safeMint(msg.sender, _mintAmount); } function setRevealed(bool _state) public onlyOwner { reveal = _state; } function setURI(string memory _uri) public onlyOwner { originURI = _uri; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function openShopStatus(bool _sale) public onlyOwner { openSale = _sale; } function setmaxMintPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintPerTx = _maxMintAmountPerTx; } function setmaxInYourWallet(uint256 _maxLimitPerWallet) public onlyOwner { maxInYourWallet = _maxLimitPerWallet; } function sethowMuchPerTx(uint256 _cost) public onlyOwner { howMuchPerTx = _cost; } function setSupplyLimit(uint256 _supplyLimit) public onlyOwner { SupplyLimit = _supplyLimit; } function withdraw() public onlyOwner nonReentrant{ (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function tokensOwner(address owner) external view returns (uint256[] memory) { unchecked { uint256[] memory a = new uint256[](balanceOf(owner)); uint256 end = _nextTokenId(); uint256 tokenIdsIdx; address currOwnershipAddr; for (uint256 i; i < end; i++) { TokenOwnership memory ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { a[tokenIdsIdx++] = i; } } return a; } } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); if (reveal == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ''; } function _baseURI() internal view virtual override returns (string memory) { return originURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"DevMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"SupplyLimit","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"howMuchPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxInYourWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"openShopStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"setSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"sethowMuchPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxLimitPerWallet","type":"uint256"}],"name":"setmaxInYourWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setmaxMintPerTx","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608090815264173539b7b760d91b60a052600b90620000269082620002ba565b506603205af7670000600d55610d05600e55600a600f8190556010556011805461ffff19166101001790553480156200005e57600080fd5b506040516200243538038062002435833981016040819052620000819162000435565b6040518060400160405280601581526020017f54686520446576696c206f6620456d70797265616e00000000000000000000008152506040518060400160405280600881526020016722a6a82ca922a0a760c11b8152508160029081620000e99190620002ba565b506003620000f88282620002ba565b50506001600055506200010b336200012e565b60016009556200011b8262000180565b62000126816200019c565b50506200049f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200018a620001b4565b600a620001988282620002ba565b5050565b620001a6620001b4565b600c620001988282620002ba565b6008546001600160a01b03163314620002135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200024057607f821691505b6020821081036200026157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002b557600081815260208120601f850160051c81016020861015620002905750805b601f850160051c820191505b81811015620002b1578281556001016200029c565b5050505b505050565b81516001600160401b03811115620002d657620002d662000215565b620002ee81620002e784546200022b565b8462000267565b602080601f8311600181146200032657600084156200030d5750858301515b600019600386901b1c1916600185901b178555620002b1565b600085815260208120601f198616915b82811015620003575788860151825594840194600190910190840162000336565b5085821015620003765787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200039857600080fd5b81516001600160401b0380821115620003b557620003b562000215565b604051601f8301601f19908116603f01168101908282118183101715620003e057620003e062000215565b81604052838152602092508683858801011115620003fd57600080fd5b600091505b8382101562000421578582018301518183018401529082019062000402565b600093810190920192909252949350505050565b600080604083850312156200044957600080fd5b82516001600160401b03808211156200046157600080fd5b6200046f8683870162000386565b935060208501519150808211156200048657600080fd5b50620004958582860162000386565b9150509250929050565b611f8680620004af6000396000f3fe6080604052600436106102305760003560e01c80636b5995af1161012e578063a45ba8e7116100ab578063c87b56dd1161006f578063c87b56dd14610620578063de7fcb1d14610640578063e0a8085314610656578063e985e9c514610676578063f2fde38b1461069657600080fd5b8063a45ba8e7146105ad578063a475b5dd146105c2578063aca5f518146105e1578063b6e46634146105f7578063b88d4fde1461060d57600080fd5b806379f34a10116100f257806379f34a101461050d5780638da5cb5b1461052d578063945ebc1d1461054b57806395d89b4114610578578063a22cb4651461058d57600080fd5b80636b5995af146104785780636dc41da71461049857806370a08231146104b8578063715018a6146104d85780637871e154146104ed57600080fd5b806318160ddd116101bc57806341d936ee1161018057806341d936ee146103f057806342842e0e146104105780634fdd43cb146104235780635503a0e8146104435780636352211e1461045857600080fd5b806318160ddd1461036a5780631bd57e581461038857806323b872dd146103a8578063361fab25146103bb5780633ccfd60b146103db57600080fd5b8063078837031161020357806307883703146102d2578063081812fc146102e5578063095ea7b31461031d578063167ff46f1461033057806316ba10e01461034a57600080fd5b806301ffc9a71461023557806302fe53051461026a578063033c71ba1461028c57806306fdde03146102b0575b600080fd5b34801561024157600080fd5b5061025561025036600461191c565b6106b6565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061028a6102853660046119c5565b610708565b005b34801561029857600080fd5b506102a2600d5481565b604051908152602001610261565b3480156102bc57600080fd5b506102c5610720565b6040516102619190611a5e565b61028a6102e0366004611a71565b6107b2565b3480156102f157600080fd5b50610305610300366004611a71565b610967565b6040516001600160a01b039091168152602001610261565b61028a61032b366004611aa6565b6109ab565b34801561033c57600080fd5b506011546102559060ff1681565b34801561035657600080fd5b5061028a6103653660046119c5565b610a4b565b34801561037657600080fd5b506102a2600154600054036000190190565b34801561039457600080fd5b5061028a6103a3366004611a71565b610a5f565b61028a6103b6366004611ad0565b610a6c565b3480156103c757600080fd5b5061028a6103d6366004611a71565b610c05565b3480156103e757600080fd5b5061028a610c12565b3480156103fc57600080fd5b5061028a61040b366004611a71565b610ca0565b61028a61041e366004611ad0565b610cad565b34801561042f57600080fd5b5061028a61043e3660046119c5565b610ccd565b34801561044f57600080fd5b506102c5610ce1565b34801561046457600080fd5b50610305610473366004611a71565b610d6f565b34801561048457600080fd5b5061028a610493366004611b1c565b610d7a565b3480156104a457600080fd5b5061028a6104b3366004611a71565b610d95565b3480156104c457600080fd5b506102a26104d3366004611b37565b610e38565b3480156104e457600080fd5b5061028a610e87565b3480156104f957600080fd5b5061028a610508366004611b52565b610e99565b34801561051957600080fd5b5061028a610528366004611a71565b610ee8565b34801561053957600080fd5b506008546001600160a01b0316610305565b34801561055757600080fd5b5061056b610566366004611b37565b610ef5565b6040516102619190611b7e565b34801561058457600080fd5b506102c5610fe7565b34801561059957600080fd5b5061028a6105a8366004611bc2565b610ff6565b3480156105b957600080fd5b506102c5611062565b3480156105ce57600080fd5b5060115461025590610100900460ff1681565b3480156105ed57600080fd5b506102a2600e5481565b34801561060357600080fd5b506102a260105481565b61028a61061b366004611bec565b61106f565b34801561062c57600080fd5b506102c561063b366004611a71565b6110b9565b34801561064c57600080fd5b506102a2600f5481565b34801561066257600080fd5b5061028a610671366004611b1c565b61122d565b34801561068257600080fd5b50610255610691366004611c68565b61124f565b3480156106a257600080fd5b5061028a6106b1366004611b37565b61127d565b60006301ffc9a760e01b6001600160e01b0319831614806106e757506380ac58cd60e01b6001600160e01b03198316145b806107025750635b5e139f60e01b6001600160e01b03198316145b92915050565b6107106112f3565b600a61071c8282611d12565b5050565b60606002805461072f90611c92565b80601f016020809104026020016040519081016040528092919081815260200182805461075b90611c92565b80156107a85780601f1061077d576101008083540402835291602001916107a8565b820191906000526020600020905b81548152906001019060200180831161078b57829003601f168201915b5050505050905090565b6107ba61134d565b60115460ff166108075760405162461bcd60e51b81526020600482015260136024820152725468652053616c65206973207061757365642160681b60448201526064015b60405180910390fd5b6000811180156108195750600f548111155b61085c5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107fe565b600e5481610871600154600054036000190190565b61087b9190611de8565b11156108995760405162461bcd60e51b81526004016107fe90611dfb565b601054816108a633610e38565b6108b09190611de8565b11156108fe5760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c65742065786365656465642100000060448201526064016107fe565b600d5461090b9082611e29565b3410156109505760405162461bcd60e51b815260206004820152601360248201527257726f6e6720616d6f756e7420696e7075742160681b60448201526064016107fe565b61095a33826113a6565b6109646001600955565b50565b6000610972826113c0565b61098f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109b682610d6f565b9050336001600160a01b038216146109ef576109d2813361124f565b6109ef576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a536112f3565b600b61071c8282611d12565b610a676112f3565b601055565b6000610a77826113f5565b9050836001600160a01b0316816001600160a01b031614610aaa5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610af757610ada863361124f565b610af757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b1e57604051633a954ecd60e21b815260040160405180910390fd5b8015610b2957600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610bbb57600184016000818152600460205260408120549003610bb9576000548114610bb95760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610c0d6112f3565b600e55565b610c1a6112f3565b610c2261134d565b6000610c366008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c80576040519150601f19603f3d011682016040523d82523d6000602084013e610c85565b606091505b5050905080610c9357600080fd5b50610c9e6001600955565b565b610ca86112f3565b600d55565b610cc88383836040518060200160405280600081525061106f565b505050565b610cd56112f3565b600c61071c8282611d12565b600b8054610cee90611c92565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a90611c92565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b505050505081565b6000610702826113f5565b610d826112f3565b6011805460ff1916911515919091179055565b610d9d6112f3565b600081118015610dae575060328111155b610df15760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107fe565b600e5481610e06600154600054036000190190565b610e109190611de8565b1115610e2e5760405162461bcd60e51b81526004016107fe90611dfb565b61096433826113a6565b60006001600160a01b038216610e61576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610e8f6112f3565b610c9e6000611464565b610ea16112f3565b600e5482610eb6600154600054036000190190565b610ec09190611de8565b1115610ede5760405162461bcd60e51b81526004016107fe90611dfb565b61071c81836113a6565b610ef06112f3565b600f55565b60606000610f0283610e38565b67ffffffffffffffff811115610f1a57610f1a611939565b604051908082528060200260200182016040528015610f43578160200160208202803683370190505b5090506000610f5160005490565b905060008060005b83811015610fdc576000610f6c826114b6565b9050806040015115610f7e5750610fd4565b80516001600160a01b031615610f9357805192505b876001600160a01b0316836001600160a01b031603610fd25781868580600101965081518110610fc557610fc5611e40565b6020026020010181815250505b505b600101610f59565b509295945050505050565b60606003805461072f90611c92565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610cee90611c92565b61107a848484610a6c565b6001600160a01b0383163b156110b35761109684848484611535565b6110b3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110c4826113c0565b6111285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107fe565b601154610100900460ff1615156000036111ce57600c805461114990611c92565b80601f016020809104026020016040519081016040528092919081815260200182805461117590611c92565b80156111c25780601f10611197576101008083540402835291602001916111c2565b820191906000526020600020905b8154815290600101906020018083116111a557829003601f168201915b50505050509050919050565b60006111d8611621565b905060008151116111f85760405180602001604052806000815250611226565b8061120284611630565b600b60405160200161121693929190611e56565b6040516020818303038152906040525b9392505050565b6112356112f3565b601180549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6112856112f3565b6001600160a01b0381166112ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fe565b61096481611464565b6008546001600160a01b03163314610c9e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107fe565b60026009540361139f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107fe565b6002600955565b61071c8282604051806020016040528060008152506116c3565b6000816001111580156113d4575060005482105b8015610702575050600090815260046020526040902054600160e01b161590565b6000818060011161144b5760005481101561144b5760008181526004602052604081205490600160e01b82169003611449575b80600003611226575060001901600081815260046020526040902054611428565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461070290604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061156a903390899088908890600401611ef6565b6020604051808303816000875af19250505080156115a5575060408051601f3d908101601f191682019092526115a291810190611f33565b60015b611603573d8080156115d3576040519150601f19603f3d011682016040523d82523d6000602084013e6115d8565b606091505b5080516000036115fb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461072f90611c92565b6060600061163d83611730565b600101905060008167ffffffffffffffff81111561165d5761165d611939565b6040519080825280601f01601f191660200182016040528015611687576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461169157509392505050565b6116cd8383611808565b6001600160a01b0383163b15610cc8576000548281035b6116f76000868380600101945086611535565b611714576040516368d2bf6b60e11b815260040160405180910390fd5b8181106116e457816000541461172957600080fd5b5050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061176f5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061179b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106117b957662386f26fc10000830492506010015b6305f5e10083106117d1576305f5e100830492506008015b61271083106117e557612710830492506004015b606483106117f7576064830492506002015b600a83106107025760010192915050565b600080549082900361182d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146118dc57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016118a4565b50816000036118fd57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461096457600080fd5b60006020828403121561192e57600080fd5b813561122681611906565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561196a5761196a611939565b604051601f8501601f19908116603f0116810190828211818310171561199257611992611939565b816040528093508581528686860111156119ab57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156119d757600080fd5b813567ffffffffffffffff8111156119ee57600080fd5b8201601f810184136119ff57600080fd5b6116198482356020840161194f565b60005b83811015611a29578181015183820152602001611a11565b50506000910152565b60008151808452611a4a816020860160208601611a0e565b601f01601f19169290920160200192915050565b6020815260006112266020830184611a32565b600060208284031215611a8357600080fd5b5035919050565b80356001600160a01b0381168114611aa157600080fd5b919050565b60008060408385031215611ab957600080fd5b611ac283611a8a565b946020939093013593505050565b600080600060608486031215611ae557600080fd5b611aee84611a8a565b9250611afc60208501611a8a565b9150604084013590509250925092565b80358015158114611aa157600080fd5b600060208284031215611b2e57600080fd5b61122682611b0c565b600060208284031215611b4957600080fd5b61122682611a8a565b60008060408385031215611b6557600080fd5b82359150611b7560208401611a8a565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015611bb657835183529284019291840191600101611b9a565b50909695505050505050565b60008060408385031215611bd557600080fd5b611bde83611a8a565b9150611b7560208401611b0c565b60008060008060808587031215611c0257600080fd5b611c0b85611a8a565b9350611c1960208601611a8a565b925060408501359150606085013567ffffffffffffffff811115611c3c57600080fd5b8501601f81018713611c4d57600080fd5b611c5c8782356020840161194f565b91505092959194509250565b60008060408385031215611c7b57600080fd5b611c8483611a8a565b9150611b7560208401611a8a565b600181811c90821680611ca657607f821691505b602082108103611cc657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610cc857600081815260208120601f850160051c81016020861015611cf35750805b601f850160051c820191505b81811015610bfd57828155600101611cff565b815167ffffffffffffffff811115611d2c57611d2c611939565b611d4081611d3a8454611c92565b84611ccc565b602080601f831160018114611d755760008415611d5d5750858301515b600019600386901b1c1916600185901b178555610bfd565b600085815260208120601f198616915b82811015611da457888601518255948401946001909101908401611d85565b5085821015611dc25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561070257610702611dd2565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b808202811582820484141761070257610702611dd2565b634e487b7160e01b600052603260045260246000fd5b600084516020611e698285838a01611a0e565b855191840191611e7c8184848a01611a0e565b8554920191600090611e8d81611c92565b60018281168015611ea55760018114611eba57611ee6565b60ff1984168752821515830287019450611ee6565b896000528560002060005b84811015611ede57815489820152908301908701611ec5565b505082870194505b50929a9950505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f2990830184611a32565b9695505050505050565b600060208284031215611f4557600080fd5b81516112268161190656fea264697066735822122049f3e459e71e434366d4a5d628b78d8f8629c0697da8ca4cedba3374cf9be43364736f6c63430008130033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656966796e776c76706b656a67377875777369766f7136777a6f76696f7a66626f6e6a71766d34693232347a656a623576717a6763712f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102305760003560e01c80636b5995af1161012e578063a45ba8e7116100ab578063c87b56dd1161006f578063c87b56dd14610620578063de7fcb1d14610640578063e0a8085314610656578063e985e9c514610676578063f2fde38b1461069657600080fd5b8063a45ba8e7146105ad578063a475b5dd146105c2578063aca5f518146105e1578063b6e46634146105f7578063b88d4fde1461060d57600080fd5b806379f34a10116100f257806379f34a101461050d5780638da5cb5b1461052d578063945ebc1d1461054b57806395d89b4114610578578063a22cb4651461058d57600080fd5b80636b5995af146104785780636dc41da71461049857806370a08231146104b8578063715018a6146104d85780637871e154146104ed57600080fd5b806318160ddd116101bc57806341d936ee1161018057806341d936ee146103f057806342842e0e146104105780634fdd43cb146104235780635503a0e8146104435780636352211e1461045857600080fd5b806318160ddd1461036a5780631bd57e581461038857806323b872dd146103a8578063361fab25146103bb5780633ccfd60b146103db57600080fd5b8063078837031161020357806307883703146102d2578063081812fc146102e5578063095ea7b31461031d578063167ff46f1461033057806316ba10e01461034a57600080fd5b806301ffc9a71461023557806302fe53051461026a578063033c71ba1461028c57806306fdde03146102b0575b600080fd5b34801561024157600080fd5b5061025561025036600461191c565b6106b6565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061028a6102853660046119c5565b610708565b005b34801561029857600080fd5b506102a2600d5481565b604051908152602001610261565b3480156102bc57600080fd5b506102c5610720565b6040516102619190611a5e565b61028a6102e0366004611a71565b6107b2565b3480156102f157600080fd5b50610305610300366004611a71565b610967565b6040516001600160a01b039091168152602001610261565b61028a61032b366004611aa6565b6109ab565b34801561033c57600080fd5b506011546102559060ff1681565b34801561035657600080fd5b5061028a6103653660046119c5565b610a4b565b34801561037657600080fd5b506102a2600154600054036000190190565b34801561039457600080fd5b5061028a6103a3366004611a71565b610a5f565b61028a6103b6366004611ad0565b610a6c565b3480156103c757600080fd5b5061028a6103d6366004611a71565b610c05565b3480156103e757600080fd5b5061028a610c12565b3480156103fc57600080fd5b5061028a61040b366004611a71565b610ca0565b61028a61041e366004611ad0565b610cad565b34801561042f57600080fd5b5061028a61043e3660046119c5565b610ccd565b34801561044f57600080fd5b506102c5610ce1565b34801561046457600080fd5b50610305610473366004611a71565b610d6f565b34801561048457600080fd5b5061028a610493366004611b1c565b610d7a565b3480156104a457600080fd5b5061028a6104b3366004611a71565b610d95565b3480156104c457600080fd5b506102a26104d3366004611b37565b610e38565b3480156104e457600080fd5b5061028a610e87565b3480156104f957600080fd5b5061028a610508366004611b52565b610e99565b34801561051957600080fd5b5061028a610528366004611a71565b610ee8565b34801561053957600080fd5b506008546001600160a01b0316610305565b34801561055757600080fd5b5061056b610566366004611b37565b610ef5565b6040516102619190611b7e565b34801561058457600080fd5b506102c5610fe7565b34801561059957600080fd5b5061028a6105a8366004611bc2565b610ff6565b3480156105b957600080fd5b506102c5611062565b3480156105ce57600080fd5b5060115461025590610100900460ff1681565b3480156105ed57600080fd5b506102a2600e5481565b34801561060357600080fd5b506102a260105481565b61028a61061b366004611bec565b61106f565b34801561062c57600080fd5b506102c561063b366004611a71565b6110b9565b34801561064c57600080fd5b506102a2600f5481565b34801561066257600080fd5b5061028a610671366004611b1c565b61122d565b34801561068257600080fd5b50610255610691366004611c68565b61124f565b3480156106a257600080fd5b5061028a6106b1366004611b37565b61127d565b60006301ffc9a760e01b6001600160e01b0319831614806106e757506380ac58cd60e01b6001600160e01b03198316145b806107025750635b5e139f60e01b6001600160e01b03198316145b92915050565b6107106112f3565b600a61071c8282611d12565b5050565b60606002805461072f90611c92565b80601f016020809104026020016040519081016040528092919081815260200182805461075b90611c92565b80156107a85780601f1061077d576101008083540402835291602001916107a8565b820191906000526020600020905b81548152906001019060200180831161078b57829003601f168201915b5050505050905090565b6107ba61134d565b60115460ff166108075760405162461bcd60e51b81526020600482015260136024820152725468652053616c65206973207061757365642160681b60448201526064015b60405180910390fd5b6000811180156108195750600f548111155b61085c5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107fe565b600e5481610871600154600054036000190190565b61087b9190611de8565b11156108995760405162461bcd60e51b81526004016107fe90611dfb565b601054816108a633610e38565b6108b09190611de8565b11156108fe5760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c65742065786365656465642100000060448201526064016107fe565b600d5461090b9082611e29565b3410156109505760405162461bcd60e51b815260206004820152601360248201527257726f6e6720616d6f756e7420696e7075742160681b60448201526064016107fe565b61095a33826113a6565b6109646001600955565b50565b6000610972826113c0565b61098f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109b682610d6f565b9050336001600160a01b038216146109ef576109d2813361124f565b6109ef576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a536112f3565b600b61071c8282611d12565b610a676112f3565b601055565b6000610a77826113f5565b9050836001600160a01b0316816001600160a01b031614610aaa5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610af757610ada863361124f565b610af757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b1e57604051633a954ecd60e21b815260040160405180910390fd5b8015610b2957600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610bbb57600184016000818152600460205260408120549003610bb9576000548114610bb95760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610c0d6112f3565b600e55565b610c1a6112f3565b610c2261134d565b6000610c366008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c80576040519150601f19603f3d011682016040523d82523d6000602084013e610c85565b606091505b5050905080610c9357600080fd5b50610c9e6001600955565b565b610ca86112f3565b600d55565b610cc88383836040518060200160405280600081525061106f565b505050565b610cd56112f3565b600c61071c8282611d12565b600b8054610cee90611c92565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a90611c92565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b505050505081565b6000610702826113f5565b610d826112f3565b6011805460ff1916911515919091179055565b610d9d6112f3565b600081118015610dae575060328111155b610df15760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107fe565b600e5481610e06600154600054036000190190565b610e109190611de8565b1115610e2e5760405162461bcd60e51b81526004016107fe90611dfb565b61096433826113a6565b60006001600160a01b038216610e61576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610e8f6112f3565b610c9e6000611464565b610ea16112f3565b600e5482610eb6600154600054036000190190565b610ec09190611de8565b1115610ede5760405162461bcd60e51b81526004016107fe90611dfb565b61071c81836113a6565b610ef06112f3565b600f55565b60606000610f0283610e38565b67ffffffffffffffff811115610f1a57610f1a611939565b604051908082528060200260200182016040528015610f43578160200160208202803683370190505b5090506000610f5160005490565b905060008060005b83811015610fdc576000610f6c826114b6565b9050806040015115610f7e5750610fd4565b80516001600160a01b031615610f9357805192505b876001600160a01b0316836001600160a01b031603610fd25781868580600101965081518110610fc557610fc5611e40565b6020026020010181815250505b505b600101610f59565b509295945050505050565b60606003805461072f90611c92565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610cee90611c92565b61107a848484610a6c565b6001600160a01b0383163b156110b35761109684848484611535565b6110b3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110c4826113c0565b6111285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107fe565b601154610100900460ff1615156000036111ce57600c805461114990611c92565b80601f016020809104026020016040519081016040528092919081815260200182805461117590611c92565b80156111c25780601f10611197576101008083540402835291602001916111c2565b820191906000526020600020905b8154815290600101906020018083116111a557829003601f168201915b50505050509050919050565b60006111d8611621565b905060008151116111f85760405180602001604052806000815250611226565b8061120284611630565b600b60405160200161121693929190611e56565b6040516020818303038152906040525b9392505050565b6112356112f3565b601180549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6112856112f3565b6001600160a01b0381166112ea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fe565b61096481611464565b6008546001600160a01b03163314610c9e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107fe565b60026009540361139f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107fe565b6002600955565b61071c8282604051806020016040528060008152506116c3565b6000816001111580156113d4575060005482105b8015610702575050600090815260046020526040902054600160e01b161590565b6000818060011161144b5760005481101561144b5760008181526004602052604081205490600160e01b82169003611449575b80600003611226575060001901600081815260046020526040902054611428565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461070290604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061156a903390899088908890600401611ef6565b6020604051808303816000875af19250505080156115a5575060408051601f3d908101601f191682019092526115a291810190611f33565b60015b611603573d8080156115d3576040519150601f19603f3d011682016040523d82523d6000602084013e6115d8565b606091505b5080516000036115fb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461072f90611c92565b6060600061163d83611730565b600101905060008167ffffffffffffffff81111561165d5761165d611939565b6040519080825280601f01601f191660200182016040528015611687576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461169157509392505050565b6116cd8383611808565b6001600160a01b0383163b15610cc8576000548281035b6116f76000868380600101945086611535565b611714576040516368d2bf6b60e11b815260040160405180910390fd5b8181106116e457816000541461172957600080fd5b5050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061176f5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061179b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106117b957662386f26fc10000830492506010015b6305f5e10083106117d1576305f5e100830492506008015b61271083106117e557612710830492506004015b606483106117f7576064830492506002015b600a83106107025760010192915050565b600080549082900361182d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146118dc57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016118a4565b50816000036118fd57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461096457600080fd5b60006020828403121561192e57600080fd5b813561122681611906565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561196a5761196a611939565b604051601f8501601f19908116603f0116810190828211818310171561199257611992611939565b816040528093508581528686860111156119ab57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156119d757600080fd5b813567ffffffffffffffff8111156119ee57600080fd5b8201601f810184136119ff57600080fd5b6116198482356020840161194f565b60005b83811015611a29578181015183820152602001611a11565b50506000910152565b60008151808452611a4a816020860160208601611a0e565b601f01601f19169290920160200192915050565b6020815260006112266020830184611a32565b600060208284031215611a8357600080fd5b5035919050565b80356001600160a01b0381168114611aa157600080fd5b919050565b60008060408385031215611ab957600080fd5b611ac283611a8a565b946020939093013593505050565b600080600060608486031215611ae557600080fd5b611aee84611a8a565b9250611afc60208501611a8a565b9150604084013590509250925092565b80358015158114611aa157600080fd5b600060208284031215611b2e57600080fd5b61122682611b0c565b600060208284031215611b4957600080fd5b61122682611a8a565b60008060408385031215611b6557600080fd5b82359150611b7560208401611a8a565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015611bb657835183529284019291840191600101611b9a565b50909695505050505050565b60008060408385031215611bd557600080fd5b611bde83611a8a565b9150611b7560208401611b0c565b60008060008060808587031215611c0257600080fd5b611c0b85611a8a565b9350611c1960208601611a8a565b925060408501359150606085013567ffffffffffffffff811115611c3c57600080fd5b8501601f81018713611c4d57600080fd5b611c5c8782356020840161194f565b91505092959194509250565b60008060408385031215611c7b57600080fd5b611c8483611a8a565b9150611b7560208401611a8a565b600181811c90821680611ca657607f821691505b602082108103611cc657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610cc857600081815260208120601f850160051c81016020861015611cf35750805b601f850160051c820191505b81811015610bfd57828155600101611cff565b815167ffffffffffffffff811115611d2c57611d2c611939565b611d4081611d3a8454611c92565b84611ccc565b602080601f831160018114611d755760008415611d5d5750858301515b600019600386901b1c1916600185901b178555610bfd565b600085815260208120601f198616915b82811015611da457888601518255948401946001909101908401611d85565b5085821015611dc25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561070257610702611dd2565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b808202811582820484141761070257610702611dd2565b634e487b7160e01b600052603260045260246000fd5b600084516020611e698285838a01611a0e565b855191840191611e7c8184848a01611a0e565b8554920191600090611e8d81611c92565b60018281168015611ea55760018114611eba57611ee6565b60ff1984168752821515830287019450611ee6565b896000528560002060005b84811015611ede57815489820152908301908701611ec5565b505082870194505b50929a9950505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f2990830184611a32565b9695505050505050565b600060208284031215611f4557600080fd5b81516112268161190656fea264697066735822122049f3e459e71e434366d4a5d628b78d8f8629c0697da8ca4cedba3374cf9be43364736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656966796e776c76706b656a67377875777369766f7136777a6f76696f7a66626f6e6a71766d34693232347a656a623576717a6763712f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _uri (string): ipfs://bafybeifynwlvpkejg7xuwsivoq6wzoviozfbonjqvm4i224zejb5vqzgcq/
Arg [1] : _hiddenMetadataUri (string):
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [3] : 697066733a2f2f6261667962656966796e776c76706b656a6737787577736976
Arg [4] : 6f7136777a6f76696f7a66626f6e6a71766d34693232347a656a623576717a67
Arg [5] : 63712f0000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
89617:4151:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19663:639;;;;;;;;;;-1:-1:-1;19663:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;19663:639:0;;;;;;;;91355:82;;;;;;;;;;-1:-1:-1;91355:82:0;;;;;:::i;:::-;;:::i;:::-;;89828:43;;;;;;;;;;;;;;;;;;;1963:25:1;;;1951:2;1936:18;89828:43:0;1817:177:1;20565:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;90274:514::-;;;;;;:::i;:::-;;:::i;27056:218::-;;;;;;;;;;-1:-1:-1;27056:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3104:32:1;;;3086:51;;3074:2;3059:18;27056:218:0;2940:203:1;26489:408:0;;;;;;:::i;:::-;;:::i;89995:28::-;;;;;;;;;;-1:-1:-1;89995:28:0;;;;;;;;91581:100;;;;;;;;;;-1:-1:-1;91581:100:0;;;;;:::i;:::-;;:::i;16316:323::-;;;;;;;;;;;;93191:1;16590:12;16377:7;16574:13;:28;-1:-1:-1;;16574:46:0;;16316:323;91899:122;;;;;;;;;;-1:-1:-1;91899:122:0;;;;;:::i;:::-;;:::i;30695:2825::-;;;;;;:::i;:::-;;:::i;92126:102::-;;;;;;;;;;-1:-1:-1;92126:102:0;;;;;:::i;:::-;;:::i;92234:149::-;;;;;;;;;;;;;:::i;92027:90::-;;;;;;;;;;-1:-1:-1;92027:90:0;;;;;:::i;:::-;;:::i;33616:193::-;;;;;;:::i;:::-;;:::i;91443:132::-;;;;;;;;;;-1:-1:-1;91443:132:0;;;;;:::i;:::-;;:::i;89752:33::-;;;;;;;;;;;;;:::i;21958:152::-;;;;;;;;;;-1:-1:-1;21958:152:0;;;;;:::i;:::-;;:::i;91687:82::-;;;;;;;;;;-1:-1:-1;91687:82:0;;;;;:::i;:::-;;:::i;91004:260::-;;;;;;;;;;-1:-1:-1;91004:260:0;;;;;:::i;:::-;;:::i;17500:233::-;;;;;;;;;;-1:-1:-1;17500:233:0;;;;;:::i;:::-;;:::i;85754:103::-;;;;;;;;;;;;;:::i;90796:202::-;;;;;;;;;;-1:-1:-1;90796:202:0;;;;;:::i;:::-;;:::i;91775:118::-;;;;;;;;;;-1:-1:-1;91775:118:0;;;;;:::i;:::-;;:::i;85106:87::-;;;;;;;;;;-1:-1:-1;85179:6:0;;-1:-1:-1;;;;;85179:6:0;85106:87;;92387:710;;;;;;;;;;-1:-1:-1;92387:710:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;20741:104::-;;;;;;;;;;;;;:::i;27614:234::-;;;;;;;;;;-1:-1:-1;27614:234:0;;;;;:::i;:::-;;:::i;89791:31::-;;;;;;;;;;;;;:::i;90030:25::-;;;;;;;;;;-1:-1:-1;90030:25:0;;;;;;;;;;;89877:33;;;;;;;;;;;;;;;;89955:35;;;;;;;;;;;;;;;;34407:407;;;;;;:::i;:::-;;:::i;93204:443::-;;;;;;;;;;-1:-1:-1;93204:443:0;;;;;:::i;:::-;;:::i;89917:32::-;;;;;;;;;;;;;;;;91270:79;;;;;;;;;;-1:-1:-1;91270:79:0;;;;;:::i;:::-;;:::i;28005:164::-;;;;;;;;;;-1:-1:-1;28005:164:0;;;;;:::i;:::-;;:::i;86012:201::-;;;;;;;;;;-1:-1:-1;86012:201:0;;;;;:::i;:::-;;:::i;19663:639::-;19748:4;-1:-1:-1;;;;;;;;;20072:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;20149:25:0;;;20072:102;:179;;;-1:-1:-1;;;;;;;;;;20226:25:0;;;20072:179;20052:199;19663:639;-1:-1:-1;;19663:639:0:o;91355:82::-;84992:13;:11;:13::i;:::-;91415:9:::1;:16;91427:4:::0;91415:9;:16:::1;:::i;:::-;;91355:82:::0;:::o;20565:100::-;20619:13;20652:5;20645:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20565:100;:::o;90274:514::-;88916:21;:19;:21::i;:::-;90353:8:::1;::::0;::::1;;90345:40;;;::::0;-1:-1:-1;;;90345:40:0;;9342:2:1;90345:40:0::1;::::0;::::1;9324:21:1::0;9381:2;9361:18;;;9354:30;-1:-1:-1;;;9400:18:1;;;9393:49;9459:18;;90345:40:0::1;;;;;;;;;90414:1;90400:11;:15;:46;;;;;90434:12;;90419:11;:27;;90400:46;90392:79;;;::::0;-1:-1:-1;;;90392:79:0;;9690:2:1;90392:79:0::1;::::0;::::1;9672:21:1::0;9729:2;9709:18;;;9702:30;-1:-1:-1;;;9748:18:1;;;9741:50;9808:18;;90392:79:0::1;9488:344:1::0;90392:79:0::1;90517:11;;90502;90486:13;93191:1:::0;16590:12;16377:7;16574:13;:28;-1:-1:-1;;16574:46:0;;16316:323;90486:13:::1;:27;;;;:::i;:::-;:42;;90478:75;;;;-1:-1:-1::0;;;90478:75:0::1;;;;;;;:::i;:::-;90607:15;;90592:11;90568:21;90578:10;90568:9;:21::i;:::-;:35;;;;:::i;:::-;:54;;90560:96;;;::::0;-1:-1:-1;;;90560:96:0;;10650:2:1;90560:96:0::1;::::0;::::1;10632:21:1::0;10689:2;10669:18;;;10662:30;10728:31;10708:18;;;10701:59;10777:18;;90560:96:0::1;10448:353:1::0;90560:96:0::1;90698:12;::::0;90684:26:::1;::::0;:11;:26:::1;:::i;:::-;90671:9;:39;;90663:70;;;::::0;-1:-1:-1;;;90663:70:0;;11181:2:1;90663:70:0::1;::::0;::::1;11163:21:1::0;11220:2;11200:18;;;11193:30;-1:-1:-1;;;11239:18:1;;;11232:49;11298:18;;90663:70:0::1;10979:343:1::0;90663:70:0::1;90746:36;83737:10:::0;90770:11:::1;90746:9;:36::i;:::-;88960:20:::0;88354:1;89480:7;:22;89297:213;88960:20;90274:514;:::o;27056:218::-;27132:7;27157:16;27165:7;27157;:16::i;:::-;27152:64;;27182:34;;-1:-1:-1;;;27182:34:0;;;;;;;;;;;27152:64;-1:-1:-1;27236:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;27236:30:0;;27056:218::o;26489:408::-;26578:13;26594:16;26602:7;26594;:16::i;:::-;26578:32;-1:-1:-1;83737:10:0;-1:-1:-1;;;;;26627:28:0;;;26623:175;;26675:44;26692:5;83737:10;28005:164;:::i;26675:44::-;26670:128;;26747:35;;-1:-1:-1;;;26747:35:0;;;;;;;;;;;26670:128;26810:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;26810:35:0;-1:-1:-1;;;;;26810:35:0;;;;;;;;;26861:28;;26810:24;;26861:28;;;;;;;26567:330;26489:408;;:::o;91581:100::-;84992:13;:11;:13::i;:::-;91653:9:::1;:22;91665:10:::0;91653:9;:22:::1;:::i;91899:122::-:0;84992:13;:11;:13::i;:::-;91979:15:::1;:36:::0;91899:122::o;30695:2825::-;30837:27;30867;30886:7;30867:18;:27::i;:::-;30837:57;;30952:4;-1:-1:-1;;;;;30911:45:0;30927:19;-1:-1:-1;;;;;30911:45:0;;30907:86;;30965:28;;-1:-1:-1;;;30965:28:0;;;;;;;;;;;30907:86;31007:27;29803:24;;;:15;:24;;;;;30031:26;;83737:10;29428:30;;;-1:-1:-1;;;;;29121:28:0;;29406:20;;;29403:56;31193:180;;31286:43;31303:4;83737:10;28005:164;:::i;31286:43::-;31281:92;;31338:35;;-1:-1:-1;;;31338:35:0;;;;;;;;;;;31281:92;-1:-1:-1;;;;;31390:16:0;;31386:52;;31415:23;;-1:-1:-1;;;31415:23:0;;;;;;;;;;;31386:52;31587:15;31584:160;;;31727:1;31706:19;31699:30;31584:160;-1:-1:-1;;;;;32124:24:0;;;;;;;:18;:24;;;;;;32122:26;;-1:-1:-1;;32122:26:0;;;32193:22;;;;;;;;;32191:24;;-1:-1:-1;32191:24:0;;;25347:11;25322:23;25318:41;25305:63;-1:-1:-1;;;25305:63:0;32486:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;32781:47:0;;:52;;32777:627;;32886:1;32876:11;;32854:19;33009:30;;;:17;:30;;;;;;:35;;33005:384;;33147:13;;33132:11;:28;33128:242;;33294:30;;;;:17;:30;;;;;:52;;;33128:242;32835:569;32777:627;33451:7;33447:2;-1:-1:-1;;;;;33432:27:0;33441:4;-1:-1:-1;;;;;33432:27:0;;;;;;;;;;;33470:42;30826:2694;;;30695:2825;;;:::o;92126:102::-;84992:13;:11;:13::i;:::-;92196:11:::1;:26:::0;92126:102::o;92234:149::-;84992:13;:11;:13::i;:::-;88916:21:::1;:19;:21::i;:::-;92291:7:::2;92312;85179:6:::0;;-1:-1:-1;;;;;85179:6:0;;85106:87;92312:7:::2;-1:-1:-1::0;;;;;92304:21:0::2;92333;92304:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92290:69;;;92374:2;92366:11;;;::::0;::::2;;92283:100;88960:20:::1;88354:1:::0;89480:7;:22;89297:213;88960:20:::1;92234:149::o:0;92027:90::-;84992:13;:11;:13::i;:::-;92091:12:::1;:20:::0;92027:90::o;33616:193::-;33762:39;33779:4;33785:2;33789:7;33762:39;;;;;;;;;;;;:16;:39::i;:::-;33616:193;;;:::o;91443:132::-;84992:13;:11;:13::i;:::-;91531:17:::1;:38;91551:18:::0;91531:17;:38:::1;:::i;89752:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21958:152::-;22030:7;22073:27;22092:7;22073:18;:27::i;91687:82::-;84992:13;:11;:13::i;:::-;91747:8:::1;:16:::0;;-1:-1:-1;;91747:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;91687:82::o;91004:260::-;84992:13;:11;:13::i;:::-;91088:1:::1;91074:11;:15;:36;;;;;91108:2;91093:11;:17;;91074:36;91066:69;;;::::0;-1:-1:-1;;;91066:69:0;;9690:2:1;91066:69:0::1;::::0;::::1;9672:21:1::0;9729:2;9709:18;;;9702:30;-1:-1:-1;;;9748:18:1;;;9741:50;9808:18;;91066:69:0::1;9488:344:1::0;91066:69:0::1;91181:11;;91166;91150:13;93191:1:::0;16590:12;16377:7;16574:13;:28;-1:-1:-1;;16574:46:0;;16316:323;91150:13:::1;:27;;;;:::i;:::-;:42;;91142:75;;;;-1:-1:-1::0;;;91142:75:0::1;;;;;;;:::i;:::-;91224:34;91234:10;91246:11;91224:9;:34::i;17500:233::-:0;17572:7;-1:-1:-1;;;;;17596:19:0;;17592:60;;17624:28;;-1:-1:-1;;;17624:28:0;;;;;;;;;;;17592:60;-1:-1:-1;;;;;;17670:25:0;;;;;:18;:25;;;;;;11659:13;17670:55;;17500:233::o;85754:103::-;84992:13;:11;:13::i;:::-;85819:30:::1;85846:1;85819:18;:30::i;90796:202::-:0;84992:13;:11;:13::i;:::-;90916:11:::1;;90901;90885:13;93191:1:::0;16590:12;16377:7;16574:13;:28;-1:-1:-1;;16574:46:0;;16316:323;90885:13:::1;:27;;;;:::i;:::-;:42;;90877:75;;;;-1:-1:-1::0;;;90877:75:0::1;;;;;;;:::i;:::-;90959:33;90969:9;90980:11;90959:9;:33::i;91775:118::-:0;84992:13;:11;:13::i;:::-;91853:12:::1;:34:::0;91775:118::o;92387:710::-;92446:16;92492:18;92527:16;92537:5;92527:9;:16::i;:::-;92513:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;92513:31:0;;92492:52;;92556:11;92570:14;16058:7;16085:13;;16003:103;92570:14;92556:28;;92595:19;92625:25;92666:9;92661:403;92681:3;92677:1;:7;92661:403;;;92706:31;92740:15;92753:1;92740:12;:15::i;:::-;92706:49;;92774:9;:16;;;92770:65;;;92811:8;;;92770:65;92853:14;;-1:-1:-1;;;;;92853:28:0;;92849:103;;92922:14;;;-1:-1:-1;92849:103:0;92991:5;-1:-1:-1;;;;;92970:26:0;:17;-1:-1:-1;;;;;92970:26:0;;92966:87;;93036:1;93017;93019:13;;;;;;93017:16;;;;;;;;:::i;:::-;;;;;;:20;;;;;92966:87;92691:373;92661:403;92686:3;;92661:403;;;-1:-1:-1;93081:1:0;;92387:710;-1:-1:-1;;;;;92387:710:0:o;20741:104::-;20797:13;20830:7;20823:14;;;;;:::i;27614:234::-;83737:10;27709:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;27709:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;27709:60:0;;;;;;;;;;27785:55;;540:41:1;;;27709:49:0;;83737:10;27785:55;;513:18:1;27785:55:0;;;;;;;27614:234;;:::o;89791:31::-;;;;;;;:::i;34407:407::-;34582:31;34595:4;34601:2;34605:7;34582:12;:31::i;:::-;-1:-1:-1;;;;;34628:14:0;;;:19;34624:183;;34667:56;34698:4;34704:2;34708:7;34717:5;34667:30;:56::i;:::-;34662:145;;34751:40;;-1:-1:-1;;;34751:40:0;;;;;;;;;;;34662:145;34407:407;;;;:::o;93204:443::-;93278:13;93308:17;93316:8;93308:7;:17::i;:::-;93300:77;;;;-1:-1:-1;;;93300:77:0;;11871:2:1;93300:77:0;;;11853:21:1;11910:2;11890:18;;;11883:30;11949:34;11929:18;;;11922:62;-1:-1:-1;;;12000:18:1;;;11993:45;12055:19;;93300:77:0;11669:411:1;93300:77:0;93390:6;;;;;;;:15;;93400:5;93390:15;93386:62;;93423:17;93416:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93204:443;;;:::o;93386:62::-;93456:28;93487:10;:8;:10::i;:::-;93456:41;;93542:1;93517:14;93511:28;:32;:130;;;;;;;;;;;;;;;;;93579:14;93595:19;:8;:17;:19::i;:::-;93616:9;93562:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;93511:130;93504:137;93204:443;-1:-1:-1;;;93204:443:0:o;91270:79::-;84992:13;:11;:13::i;:::-;91328:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;91328:15:0;;::::1;::::0;;;::::1;::::0;;91270:79::o;28005:164::-;-1:-1:-1;;;;;28126:25:0;;;28102:4;28126:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28005:164::o;86012:201::-;84992:13;:11;:13::i;:::-;-1:-1:-1;;;;;86101:22:0;::::1;86093:73;;;::::0;-1:-1:-1;;;86093:73:0;;13548:2:1;86093:73:0::1;::::0;::::1;13530:21:1::0;13587:2;13567:18;;;13560:30;13626:34;13606:18;;;13599:62;-1:-1:-1;;;13677:18:1;;;13670:36;13723:19;;86093:73:0::1;13346:402:1::0;86093:73:0::1;86177:28;86196:8;86177:18;:28::i;85271:132::-:0;85179:6;;-1:-1:-1;;;;;85179:6:0;83737:10;85335:23;85327:68;;;;-1:-1:-1;;;85327:68:0;;13955:2:1;85327:68:0;;;13937:21:1;;;13974:18;;;13967:30;14033:34;14013:18;;;14006:62;14085:18;;85327:68:0;13753:356:1;88996:293:0;88398:1;89130:7;;:19;89122:63;;;;-1:-1:-1;;;89122:63:0;;14316:2:1;89122:63:0;;;14298:21:1;14355:2;14335:18;;;14328:30;14394:33;14374:18;;;14367:61;14445:18;;89122:63:0;14114:355:1;89122:63:0;88398:1;89263:7;:18;88996:293::o;44567:112::-;44644:27;44654:2;44658:8;44644:27;;;;;;;;;;;;:9;:27::i;28427:282::-;28492:4;28548:7;93191:1;28529:26;;:66;;;;;28582:13;;28572:7;:23;28529:66;:153;;;;-1:-1:-1;;28633:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;28633:44:0;:49;;28427:282::o;23113:1275::-;23180:7;23215;;93191:1;23264:23;23260:1061;;23317:13;;23310:4;:20;23306:1015;;;23355:14;23372:23;;;:17;:23;;;;;;;-1:-1:-1;;;23461:24:0;;:29;;23457:845;;24126:113;24133:6;24143:1;24133:11;24126:113;;-1:-1:-1;;;24204:6:0;24186:25;;;;:17;:25;;;;;;24126:113;;23457:845;23332:989;23306:1015;24349:31;;-1:-1:-1;;;24349:31:0;;;;;;;;;;;86373:191;86466:6;;;-1:-1:-1;;;;;86483:17:0;;;-1:-1:-1;;;;;;86483:17:0;;;;;;;86516:40;;86466:6;;;86483:17;86466:6;;86516:40;;86447:16;;86516:40;86436:128;86373:191;:::o;22561:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22689:24:0;;;;:17;:24;;;;;;22670:44;;-1:-1:-1;;;;;;;;;;;;;24597:41:0;;;;12318:3;24683:33;;;24649:68;;-1:-1:-1;;;24649:68:0;-1:-1:-1;;;24747:24:0;;:29;;-1:-1:-1;;;24728:48:0;;;;12839:3;24816:28;;;;-1:-1:-1;;;24787:58:0;-1:-1:-1;24487:366:0;36898:716;37082:88;;-1:-1:-1;;;37082:88:0;;37061:4;;-1:-1:-1;;;;;37082:45:0;;;;;:88;;83737:10;;37149:4;;37155:7;;37164:5;;37082:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37082:88:0;;;;;;;;-1:-1:-1;;37082:88:0;;;;;;;;;;;;:::i;:::-;;;37078:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37365:6;:13;37382:1;37365:18;37361:235;;37411:40;;-1:-1:-1;;;37411:40:0;;;;;;;;;;;37361:235;37554:6;37548:13;37539:6;37535:2;37531:15;37524:38;37078:529;-1:-1:-1;;;;;;37241:64:0;-1:-1:-1;;;37241:64:0;;-1:-1:-1;37078:529:0;36898:716;;;;;;:::o;93653:104::-;93713:13;93742:9;93735:16;;;;;:::i;74974:716::-;75030:13;75081:14;75098:17;75109:5;75098:10;:17::i;:::-;75118:1;75098:21;75081:38;;75134:20;75168:6;75157:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;75157:18:0;-1:-1:-1;75134:41:0;-1:-1:-1;75299:28:0;;;75315:2;75299:28;75356:288;-1:-1:-1;;75388:5:0;-1:-1:-1;;;75525:2:0;75514:14;;75509:30;75388:5;75496:44;75586:2;75577:11;;;-1:-1:-1;75607:21:0;75356:288;75607:21;-1:-1:-1;75665:6:0;74974:716;-1:-1:-1;;;74974:716:0:o;43794:689::-;43925:19;43931:2;43935:8;43925:5;:19::i;:::-;-1:-1:-1;;;;;43986:14:0;;;:19;43982:483;;44026:11;44040:13;44088:14;;;44121:233;44152:62;44191:1;44195:2;44199:7;;;;;;44208:5;44152:30;:62::i;:::-;44147:167;;44250:40;;-1:-1:-1;;;44250:40:0;;;;;;;;;;;44147:167;44349:3;44341:5;:11;44121:233;;44436:3;44419:13;;:20;44415:34;;44441:8;;;44415:34;44007:458;;43794:689;;;:::o;71840:922::-;71893:7;;-1:-1:-1;;;71971:15:0;;71967:102;;-1:-1:-1;;;72007:15:0;;;-1:-1:-1;72051:2:0;72041:12;71967:102;72096:6;72087:5;:15;72083:102;;72132:6;72123:15;;;-1:-1:-1;72167:2:0;72157:12;72083:102;72212:6;72203:5;:15;72199:102;;72248:6;72239:15;;;-1:-1:-1;72283:2:0;72273:12;72199:102;72328:5;72319;:14;72315:99;;72363:5;72354:14;;;-1:-1:-1;72397:1:0;72387:11;72315:99;72441:5;72432;:14;72428:99;;72476:5;72467:14;;;-1:-1:-1;72510:1:0;72500:11;72428:99;72554:5;72545;:14;72541:99;;72589:5;72580:14;;;-1:-1:-1;72623:1:0;72613:11;72541:99;72667:5;72658;:14;72654:66;;72703:1;72693:11;72748:6;71840:922;-1:-1:-1;;71840:922:0:o;38076:2966::-;38149:20;38172:13;;;38200;;;38196:44;;38222:18;;-1:-1:-1;;;38222:18:0;;;;;;;;;;;38196:44;-1:-1:-1;;;;;38728:22:0;;;;;;:18;:22;;;;11797:2;38728:22;;;:71;;38766:32;38754:45;;38728:71;;;39042:31;;;:17;:31;;;;;-1:-1:-1;25778:15:0;;25752:24;25748:46;25347:11;25322:23;25318:41;25315:52;25305:63;;39042:173;;39277:23;;;;39042:31;;38728:22;;40042:25;38728:22;;39895:335;40556:1;40542:12;40538:20;40496:346;40597:3;40588:7;40585:16;40496:346;;40815:7;40805:8;40802:1;40775:25;40772:1;40769;40764:59;40650:1;40637:15;40496:346;;;40500:77;40875:8;40887:1;40875:13;40871:45;;40897:19;;-1:-1:-1;;;40897:19:0;;;;;;;;;;;40871:45;40933:13;:19;-1:-1:-1;33616:193:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:127::-;653:10;648:3;644:20;641:1;634:31;684:4;681:1;674:15;708:4;705:1;698:15;724:632;789:5;819:18;860:2;852:6;849:14;846:40;;;866:18;;:::i;:::-;941:2;935:9;909:2;995:15;;-1:-1:-1;;991:24:1;;;1017:2;987:33;983:42;971:55;;;1041:18;;;1061:22;;;1038:46;1035:72;;;1087:18;;:::i;:::-;1127:10;1123:2;1116:22;1156:6;1147:15;;1186:6;1178;1171:22;1226:3;1217:6;1212:3;1208:16;1205:25;1202:45;;;1243:1;1240;1233:12;1202:45;1293:6;1288:3;1281:4;1273:6;1269:17;1256:44;1348:1;1341:4;1332:6;1324;1320:19;1316:30;1309:41;;;;724:632;;;;;:::o;1361:451::-;1430:6;1483:2;1471:9;1462:7;1458:23;1454:32;1451:52;;;1499:1;1496;1489:12;1451:52;1539:9;1526:23;1572:18;1564:6;1561:30;1558:50;;;1604:1;1601;1594:12;1558:50;1627:22;;1680:4;1672:13;;1668:27;-1:-1:-1;1658:55:1;;1709:1;1706;1699:12;1658:55;1732:74;1798:7;1793:2;1780:16;1775:2;1771;1767:11;1732:74;:::i;1999:250::-;2084:1;2094:113;2108:6;2105:1;2102:13;2094:113;;;2184:11;;;2178:18;2165:11;;;2158:39;2130:2;2123:10;2094:113;;;-1:-1:-1;;2241:1:1;2223:16;;2216:27;1999:250::o;2254:271::-;2296:3;2334:5;2328:12;2361:6;2356:3;2349:19;2377:76;2446:6;2439:4;2434:3;2430:14;2423:4;2416:5;2412:16;2377:76;:::i;:::-;2507:2;2486:15;-1:-1:-1;;2482:29:1;2473:39;;;;2514:4;2469:50;;2254:271;-1:-1:-1;;2254:271:1:o;2530:220::-;2679:2;2668:9;2661:21;2642:4;2699:45;2740:2;2729:9;2725:18;2717:6;2699:45;:::i;2755:180::-;2814:6;2867:2;2855:9;2846:7;2842:23;2838:32;2835:52;;;2883:1;2880;2873:12;2835:52;-1:-1:-1;2906:23:1;;2755:180;-1:-1:-1;2755:180:1:o;3148:173::-;3216:20;;-1:-1:-1;;;;;3265:31:1;;3255:42;;3245:70;;3311:1;3308;3301:12;3245:70;3148:173;;;:::o;3326:254::-;3394:6;3402;3455:2;3443:9;3434:7;3430:23;3426:32;3423:52;;;3471:1;3468;3461:12;3423:52;3494:29;3513:9;3494:29;:::i;:::-;3484:39;3570:2;3555:18;;;;3542:32;;-1:-1:-1;;;3326:254:1:o;3585:328::-;3662:6;3670;3678;3731:2;3719:9;3710:7;3706:23;3702:32;3699:52;;;3747:1;3744;3737:12;3699:52;3770:29;3789:9;3770:29;:::i;:::-;3760:39;;3818:38;3852:2;3841:9;3837:18;3818:38;:::i;:::-;3808:48;;3903:2;3892:9;3888:18;3875:32;3865:42;;3585:328;;;;;:::o;3918:160::-;3983:20;;4039:13;;4032:21;4022:32;;4012:60;;4068:1;4065;4058:12;4083:180;4139:6;4192:2;4180:9;4171:7;4167:23;4163:32;4160:52;;;4208:1;4205;4198:12;4160:52;4231:26;4247:9;4231:26;:::i;4268:186::-;4327:6;4380:2;4368:9;4359:7;4355:23;4351:32;4348:52;;;4396:1;4393;4386:12;4348:52;4419:29;4438:9;4419:29;:::i;4459:254::-;4527:6;4535;4588:2;4576:9;4567:7;4563:23;4559:32;4556:52;;;4604:1;4601;4594:12;4556:52;4640:9;4627:23;4617:33;;4669:38;4703:2;4692:9;4688:18;4669:38;:::i;:::-;4659:48;;4459:254;;;;;:::o;4718:632::-;4889:2;4941:21;;;5011:13;;4914:18;;;5033:22;;;4860:4;;4889:2;5112:15;;;;5086:2;5071:18;;;4860:4;5155:169;5169:6;5166:1;5163:13;5155:169;;;5230:13;;5218:26;;5299:15;;;;5264:12;;;;5191:1;5184:9;5155:169;;;-1:-1:-1;5341:3:1;;4718:632;-1:-1:-1;;;;;;4718:632:1:o;5355:254::-;5420:6;5428;5481:2;5469:9;5460:7;5456:23;5452:32;5449:52;;;5497:1;5494;5487:12;5449:52;5520:29;5539:9;5520:29;:::i;:::-;5510:39;;5568:35;5599:2;5588:9;5584:18;5568:35;:::i;5614:667::-;5709:6;5717;5725;5733;5786:3;5774:9;5765:7;5761:23;5757:33;5754:53;;;5803:1;5800;5793:12;5754:53;5826:29;5845:9;5826:29;:::i;:::-;5816:39;;5874:38;5908:2;5897:9;5893:18;5874:38;:::i;:::-;5864:48;;5959:2;5948:9;5944:18;5931:32;5921:42;;6014:2;6003:9;5999:18;5986:32;6041:18;6033:6;6030:30;6027:50;;;6073:1;6070;6063:12;6027:50;6096:22;;6149:4;6141:13;;6137:27;-1:-1:-1;6127:55:1;;6178:1;6175;6168:12;6127:55;6201:74;6267:7;6262:2;6249:16;6244:2;6240;6236:11;6201:74;:::i;:::-;6191:84;;;5614:667;;;;;;;:::o;6286:260::-;6354:6;6362;6415:2;6403:9;6394:7;6390:23;6386:32;6383:52;;;6431:1;6428;6421:12;6383:52;6454:29;6473:9;6454:29;:::i;:::-;6444:39;;6502:38;6536:2;6525:9;6521:18;6502:38;:::i;6551:380::-;6630:1;6626:12;;;;6673;;;6694:61;;6748:4;6740:6;6736:17;6726:27;;6694:61;6801:2;6793:6;6790:14;6770:18;6767:38;6764:161;;6847:10;6842:3;6838:20;6835:1;6828:31;6882:4;6879:1;6872:15;6910:4;6907:1;6900:15;6764:161;;6551:380;;;:::o;7062:545::-;7164:2;7159:3;7156:11;7153:448;;;7200:1;7225:5;7221:2;7214:17;7270:4;7266:2;7256:19;7340:2;7328:10;7324:19;7321:1;7317:27;7311:4;7307:38;7376:4;7364:10;7361:20;7358:47;;;-1:-1:-1;7399:4:1;7358:47;7454:2;7449:3;7445:12;7442:1;7438:20;7432:4;7428:31;7418:41;;7509:82;7527:2;7520:5;7517:13;7509:82;;;7572:17;;;7553:1;7542:13;7509:82;;7783:1352;7909:3;7903:10;7936:18;7928:6;7925:30;7922:56;;;7958:18;;:::i;:::-;7987:97;8077:6;8037:38;8069:4;8063:11;8037:38;:::i;:::-;8031:4;7987:97;:::i;:::-;8139:4;;8203:2;8192:14;;8220:1;8215:663;;;;8922:1;8939:6;8936:89;;;-1:-1:-1;8991:19:1;;;8985:26;8936:89;-1:-1:-1;;7740:1:1;7736:11;;;7732:24;7728:29;7718:40;7764:1;7760:11;;;7715:57;9038:81;;8185:944;;8215:663;7009:1;7002:14;;;7046:4;7033:18;;-1:-1:-1;;8251:20:1;;;8369:236;8383:7;8380:1;8377:14;8369:236;;;8472:19;;;8466:26;8451:42;;8564:27;;;;8532:1;8520:14;;;;8399:19;;8369:236;;;8373:3;8633:6;8624:7;8621:19;8618:201;;;8694:19;;;8688:26;-1:-1:-1;;8777:1:1;8773:14;;;8789:3;8769:24;8765:37;8761:42;8746:58;8731:74;;8618:201;-1:-1:-1;;;;;8865:1:1;8849:14;;;8845:22;8832:36;;-1:-1:-1;7783:1352:1:o;9837:127::-;9898:10;9893:3;9889:20;9886:1;9879:31;9929:4;9926:1;9919:15;9953:4;9950:1;9943:15;9969:125;10034:9;;;10055:10;;;10052:36;;;10068:18;;:::i;10099:344::-;10301:2;10283:21;;;10340:2;10320:18;;;10313:30;-1:-1:-1;;;10374:2:1;10359:18;;10352:50;10434:2;10419:18;;10099:344::o;10806:168::-;10879:9;;;10910;;10927:15;;;10921:22;;10907:37;10897:71;;10948:18;;:::i;11537:127::-;11598:10;11593:3;11589:20;11586:1;11579:31;11629:4;11626:1;11619:15;11653:4;11650:1;11643:15;12085:1256;12309:3;12347:6;12341:13;12373:4;12386:64;12443:6;12438:3;12433:2;12425:6;12421:15;12386:64;:::i;:::-;12513:13;;12472:16;;;;12535:68;12513:13;12472:16;12570:15;;;12535:68;:::i;:::-;12692:13;;12625:20;;;12665:1;;12730:36;12692:13;12730:36;:::i;:::-;12785:1;12802:18;;;12829:141;;;;12984:1;12979:337;;;;12795:521;;12829:141;-1:-1:-1;;12864:24:1;;12850:39;;12941:16;;12934:24;12920:39;;12909:51;;;-1:-1:-1;12829:141:1;;12979:337;13010:6;13007:1;13000:17;13058:2;13055:1;13045:16;13083:1;13097:169;13111:8;13108:1;13105:15;13097:169;;;13193:14;;13178:13;;;13171:37;13236:16;;;;13128:10;;13097:169;;;13101:3;;13297:8;13290:5;13286:20;13279:27;;12795:521;-1:-1:-1;13332:3:1;;12085:1256;-1:-1:-1;;;;;;;;;;12085:1256:1:o;14474:489::-;-1:-1:-1;;;;;14743:15:1;;;14725:34;;14795:15;;14790:2;14775:18;;14768:43;14842:2;14827:18;;14820:34;;;14890:3;14885:2;14870:18;;14863:31;;;14668:4;;14911:46;;14937:19;;14929:6;14911:46;:::i;:::-;14903:54;14474:489;-1:-1:-1;;;;;;14474:489:1:o;14968:249::-;15037:6;15090:2;15078:9;15069:7;15065:23;15061:32;15058:52;;;15106:1;15103;15096:12;15058:52;15138:9;15132:16;15157:30;15181:5;15157:30;:::i
Swarm Source
ipfs://49f3e459e71e434366d4a5d628b78d8f8629c0697da8ca4cedba3374cf9be433
Loading...
Loading
Loading...
Loading
OVERVIEW
Unlock the secrets of Empyrean with the devil themselves. Each of it holds a unique piece of power, waiting to be claimed by those daring enough to seek it outMultichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.