Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
DIVERGENTv2
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import 'erc721a-upgradeable/contracts/ERC721AUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol'; import "@openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/cryptography/MerkleProofUpgradeable.sol"; contract DIVERGENTv2 is ERC721AUpgradeable, OwnableUpgradeable, ReentrancyGuardUpgradeable { using CountersUpgradeable for CountersUpgradeable.Counter; string public baseURI; uint256 public maxSupply; uint256 public maxPerTransaction; bool public isMintLive; uint256 public mintPrice; uint8 private freeMintProb; bytes32 private merkleTreeRoot; CountersUpgradeable.Counter private _seed; mapping(address => bool) public whitelistClaimed; function initialize() initializerERC721A initializer public { __ERC721A_init('DIVERGENT', 'DIVERGENT'); __Ownable_init(); maxSupply = 5555; maxPerTransaction = 10; isMintLive = true; mintPrice = 0.008 ether; freeMintProb = 7; } function mint(uint256 quantity, bytes32[] memory _proof) external payable nonReentrant { require(isMintLive, "Mint not live"); require(quantity > 0, "You must mint at least one"); require(totalSupply() + quantity <= maxSupply, "Exceeds total supply"); require(quantity <= maxPerTransaction, "Exceeds max per transaction"); uint256 pricedQty = quantity; if( whitelistClaimed[_msgSender()] == false && MerkleProofUpgradeable.verify(_proof, merkleTreeRoot, keccak256(abi.encodePacked(_msgSender())) ) ) { whitelistClaimed[_msgSender()] = true; pricedQty = quantity - 1; } require(msg.value >= mintPrice * pricedQty, "Not enough ETH"); uint256 refund = isFreeMint() ? pricedQty * mintPrice : 0; payable(_msgSender()).transfer(refund); _mint(_msgSender(), quantity); } function adminMint(address receiver, uint256 quantity) external onlyOwner { require(totalSupply() + quantity <= maxSupply, "Exceeds total supply"); _mint(receiver, quantity); } function isFreeMint() internal view returns (bool) { return (uint256(keccak256(abi.encodePacked( tx.origin, blockhash(block.number - 1), block.timestamp, _msgSender() ))) & 0xFFFF) % 10 < freeMintProb; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setMintLive(bool _isMintLive) external onlyOwner { isMintLive = _isMintLive; } function setMintPrice(uint256 _mintPrice) external onlyOwner { mintPrice = _mintPrice; } function setMaxPerTransaction(uint256 _maxPerTransaction) external onlyOwner { maxPerTransaction = _maxPerTransaction; } function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function setFreeMintProb(uint8 _freeMintProb) external onlyOwner { freeMintProb = _freeMintProb; } function setMerkleTreeRoot(bytes32 _merkleTreeRoot) external onlyOwner { merkleTreeRoot = _merkleTreeRoot; } function withdraw() external onlyOwner { payable(owner()).transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721AUpgradeable.sol'; import {ERC721AStorage} from './ERC721AStorage.sol'; import './ERC721A__Initializable.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721ReceiverUpgradeable { 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 ERC721AUpgradeable is ERC721A__Initializable, IERC721AUpgradeable { using ERC721AStorage for ERC721AStorage.Layout; // ============================================================= // 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; // ============================================================= // CONSTRUCTOR // ============================================================= function __ERC721A_init(string memory name_, string memory symbol_) internal onlyInitializingERC721A { __ERC721A_init_unchained(name_, symbol_); } function __ERC721A_init_unchained(string memory name_, string memory symbol_) internal onlyInitializingERC721A { ERC721AStorage.layout()._name = name_; ERC721AStorage.layout()._symbol = symbol_; ERC721AStorage.layout()._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 ERC721AStorage.layout()._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 ERC721AStorage.layout()._currentIndex - ERC721AStorage.layout()._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 ERC721AStorage.layout()._currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return ERC721AStorage.layout()._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 ERC721AStorage.layout()._packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (ERC721AStorage.layout()._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 (ERC721AStorage.layout()._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(ERC721AStorage.layout()._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 = ERC721AStorage.layout()._packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); ERC721AStorage.layout()._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 ERC721AStorage.layout()._name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return ERC721AStorage.layout()._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(ERC721AStorage.layout()._packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (ERC721AStorage.layout()._packedOwnerships[index] == 0) { ERC721AStorage.layout()._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 < ERC721AStorage.layout()._currentIndex) { uint256 packed = ERC721AStorage.layout()._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 = ERC721AStorage.layout()._packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } ERC721AStorage.layout()._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 ERC721AStorage.layout()._tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); ERC721AStorage.layout()._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 ERC721AStorage.layout()._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 < ERC721AStorage.layout()._currentIndex && // If within bounds, ERC721AStorage.layout()._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) { ERC721AStorage.TokenApprovalRef storage tokenApproval = ERC721AStorage.layout()._tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --ERC721AStorage.layout()._packedAddressData[from]; // Updates: `balance -= 1`. ++ERC721AStorage.layout()._packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. ERC721AStorage.layout()._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 (ERC721AStorage.layout()._packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != ERC721AStorage.layout()._currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. ERC721AStorage.layout()._packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721ReceiverUpgradeable(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (bytes4 retval) { return retval == ERC721A__IERC721ReceiverUpgradeable(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 = ERC721AStorage.layout()._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`. ERC721AStorage.layout()._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`. ERC721AStorage.layout()._packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); ERC721AStorage.layout()._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 = ERC721AStorage.layout()._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`. ERC721AStorage.layout()._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`. ERC721AStorage.layout()._packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); ERC721AStorage.layout()._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 = ERC721AStorage.layout()._currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (ERC721AStorage.layout()._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;`. ERC721AStorage.layout()._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`. ERC721AStorage.layout()._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 (ERC721AStorage.layout()._packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != ERC721AStorage.layout()._currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. ERC721AStorage.layout()._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 { ERC721AStorage.layout()._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 = ERC721AStorage.layout()._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); ERC721AStorage.layout()._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 ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @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 OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _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); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ReentrancyGuardUpgradeable is Initializable { // 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; function __ReentrancyGuard_init() internal onlyInitializing { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal onlyInitializing { _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() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library CountersUpgradeable { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProofUpgradeable { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721AUpgradeable { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library ERC721AStorage { // Reference type for token approval. struct TokenApprovalRef { address value; } struct Layout { // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 _currentIndex; // The number of tokens burned. uint256 _burnCounter; // Token name string _name; // Token symbol string _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) _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => ERC721AStorage.TokenApprovalRef) _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) _operatorApprovals; } bytes32 internal constant STORAGE_SLOT = keccak256('ERC721A.contracts.storage.ERC721A'); function layout() internal pure returns (Layout storage l) { bytes32 slot = STORAGE_SLOT; assembly { l.slot := slot } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable diamond facet contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ import {ERC721A__InitializableStorage} from './ERC721A__InitializableStorage.sol'; abstract contract ERC721A__Initializable { using ERC721A__InitializableStorage for ERC721A__InitializableStorage.Layout; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializerERC721A() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require( ERC721A__InitializableStorage.layout()._initializing ? _isConstructor() : !ERC721A__InitializableStorage.layout()._initialized, 'ERC721A__Initializable: contract is already initialized' ); bool isTopLevelCall = !ERC721A__InitializableStorage.layout()._initializing; if (isTopLevelCall) { ERC721A__InitializableStorage.layout()._initializing = true; ERC721A__InitializableStorage.layout()._initialized = true; } _; if (isTopLevelCall) { ERC721A__InitializableStorage.layout()._initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializingERC721A() { require( ERC721A__InitializableStorage.layout()._initializing, 'ERC721A__Initializable: contract is not initializing' ); _; } /// @dev Returns true if and only if the function is running in the constructor function _isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base storage for the initialization function for upgradeable diamond facet contracts **/ library ERC721A__InitializableStorage { struct Layout { /* * Indicates that the contract has been initialized. */ bool _initialized; /* * Indicates that the contract is in the process of being initialized. */ bool _initializing; } bytes32 internal constant STORAGE_SLOT = keccak256('ERC721A.contracts.storage.initializable.facet'); function layout() internal pure returns (Layout storage l) { bytes32 slot = STORAGE_SLOT; assembly { l.slot := slot } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original * initialization step. This is essential to configure modules that are added through upgrades and that require * initialization. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","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":"isMintLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_freeMintProb","type":"uint8"}],"name":"setFreeMintProb","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTransaction","type":"uint256"}],"name":"setMaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleTreeRoot","type":"bytes32"}],"name":"setMerkleTreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isMintLive","type":"bool"}],"name":"setMintLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50613c19806100206000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063c87b56dd116100a0578063e58306f91161006f578063e58306f9146106b4578063e985e9c5146106dd578063f2fde38b1461071a578063f4a0a52814610743578063fdfc7aae1461076c576101ee565b8063c87b56dd146105e6578063ccfdd2f814610623578063d5abeb011461064c578063db4bec4414610677576101ee565b8063a22cb465116100dc578063a22cb4651461054f578063b88d4fde14610578578063ba41b0c6146105a1578063ba5d6395146105bd576101ee565b8063715018a6146104cb5780638129fc1c146104e25780638da5cb5b146104f957806395d89b4114610524576101ee565b80634b980d67116101855780636352211e116101545780636352211e146103fb5780636817c76c146104385780636c0360eb1461046357806370a082311461048e576101ee565b80634b980d671461035557806350dc46561461038057806353ca912a146103a957806355f804b3146103d2576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780633ccfd60b1461031557806342842e0e1461032c576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906128d8565b610797565b6040516102279190612920565b60405180910390f35b34801561023c57600080fd5b50610245610829565b60405161025291906129d4565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612a2c565b6108c4565b60405161028f9190612a9a565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612ae1565b61094c565b005b3480156102cd57600080fd5b506102d6610a99565b6040516102e39190612b30565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612b4b565b610ac2565b005b34801561032157600080fd5b5061032a610e1d565b005b34801561033857600080fd5b50610353600480360381019061034e9190612b4b565b610e75565b005b34801561036157600080fd5b5061036a610e95565b6040516103779190612b30565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612bd4565b610e9b565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612c2d565b610ead565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612d8f565b610ed2565b005b34801561040757600080fd5b50610422600480360381019061041d9190612a2c565b610ef4565b60405161042f9190612a9a565b60405180910390f35b34801561044457600080fd5b5061044d610f06565b60405161045a9190612b30565b60405180910390f35b34801561046f57600080fd5b50610478610f0c565b60405161048591906129d4565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190612dd8565b610f9a565b6040516104c29190612b30565b60405180910390f35b3480156104d757600080fd5b506104e061105c565b005b3480156104ee57600080fd5b506104f7611070565b005b34801561050557600080fd5b5061050e611395565b60405161051b9190612a9a565b60405180910390f35b34801561053057600080fd5b506105396113bf565b60405161054691906129d4565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190612e05565b61145a565b005b34801561058457600080fd5b5061059f600480360381019061059a9190612ee6565b6115db565b005b6105bb60048036038101906105b69190613031565b61164e565b005b3480156105c957600080fd5b506105e460048036038101906105df91906130c6565b6119c3565b005b3480156105f257600080fd5b5061060d60048036038101906106089190612a2c565b6119e9565b60405161061a91906129d4565b60405180910390f35b34801561062f57600080fd5b5061064a60048036038101906106459190612a2c565b611a88565b005b34801561065857600080fd5b50610661611a9a565b60405161066e9190612b30565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190612dd8565b611aa0565b6040516106ab9190612920565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d69190612ae1565b611ac0565b005b3480156106e957600080fd5b5061070460048036038101906106ff91906130f3565b611b2d565b6040516107119190612920565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c9190612dd8565b611bca565b005b34801561074f57600080fd5b5061076a60048036038101906107659190612a2c565b611c4e565b005b34801561077857600080fd5b50610781611c60565b60405161078e9190612920565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108225750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060610833611c73565b600201805461084190613162565b80601f016020809104026020016040519081016040528092919081815260200182805461086d90613162565b80156108ba5780601f1061088f576101008083540402835291602001916108ba565b820191906000526020600020905b81548152906001019060200180831161089d57829003601f168201915b5050505050905090565b60006108cf82611ca0565b610905576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61090d611c73565b600601600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095782610ef4565b90508073ffffffffffffffffffffffffffffffffffffffff16610978611d11565b73ffffffffffffffffffffffffffffffffffffffff16146109db576109a48161099f611d11565b611b2d565b6109da576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826109e4611c73565b600601600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610aa3611d19565b610aab611c73565b60010154610ab7611c73565b600001540303905090565b6000610acd82611d22565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b34576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b4084611e0b565b91509150610b568187610b51611d11565b611e3b565b610ba257610b6b86610b66611d11565b611b2d565b610ba1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c09576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c168686866001611e7f565b8015610c2157600082555b610c29611c73565b60050160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550610c80611c73565b60050160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d0185610cdd888887611e85565b7c020000000000000000000000000000000000000000000000000000000017611ead565b610d09611c73565b60040160008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dad5760006001850190506000610d5b611c73565b6004016000838152602001908152602001600020541415610dab57610d7e611c73565b600001548114610daa5783610d91611c73565b6004016000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e158686866001611ed8565b505050505050565b610e25611ede565b610e2d611395565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e72573d6000803e3d6000fd5b50565b610e90838383604051806020016040528060008152506115db565b505050565b60995481565b610ea3611ede565b80609d8190555050565b610eb5611ede565b80609a60006101000a81548160ff02191690831515021790555050565b610eda611ede565b8060979080519060200190610ef09291906127c9565b5050565b6000610eff82611d22565b9050919050565b609b5481565b60978054610f1990613162565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4590613162565b8015610f925780601f10610f6757610100808354040283529160200191610f92565b820191906000526020600020905b815481529060010190602001808311610f7557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611002576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff611013611c73565b60050160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611064611ede565b61106e6000611f5c565b565b611078612022565b60000160019054906101000a900460ff166110ac57611095612022565b60000160009054906101000a900460ff16156110b5565b6110b461204f565b5b6110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90613206565b60405180910390fd5b60006110fe612022565b60000160019054906101000a900460ff161590508015611161576001611122612022565b60000160016101000a81548160ff0219169083151502179055506001611146612022565b60000160006101000a81548160ff0219169083151502179055505b60008060019054906101000a900460ff161590508080156111925750600160008054906101000a900460ff1660ff16105b806111bf57506111a130612066565b1580156111be5750600160008054906101000a900460ff1660ff16145b5b6111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590613298565b60405180910390fd5b60016000806101000a81548160ff021916908360ff160217905550801561123b576001600060016101000a81548160ff0219169083151502179055505b6112af6040518060400160405280600981526020017f444956455247454e5400000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f444956455247454e540000000000000000000000000000000000000000000000815250612089565b6112b76120ef565b6115b3609881905550600a6099819055506001609a60006101000a81548160ff021916908315150217905550661c6bf526340000609b819055506007609c60006101000a81548160ff021916908360ff16021790555080156113665760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161135d91906132fd565b60405180910390a15b508015611392576000611377612022565b60000160016101000a81548160ff0219169083151502179055505b50565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606113c9611c73565b60030180546113d790613162565b80601f016020809104026020016040519081016040528092919081815260200182805461140390613162565b80156114505780601f1061142557610100808354040283529160200191611450565b820191906000526020600020905b81548152906001019060200180831161143357829003601f168201915b5050505050905090565b611462611d11565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806114d0611c73565b60070160006114dd611d11565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661158a611d11565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115cf9190612920565b60405180910390a35050565b6115e6848484610ac2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116485761161184848484612148565b611647576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60026065541415611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90613364565b60405180910390fd5b6002606581905550609a60009054906101000a900460ff166116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e2906133d0565b60405180910390fd5b6000821161172e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117259061343c565b60405180910390fd5b6098548261173a610a99565b611744919061348b565b1115611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c9061352d565b60405180910390fd5b6099548211156117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190613599565b60405180910390fd5b600082905060001515609f60006117df6122a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561186c575061186b82609d546118406122a8565b6040516020016118509190613601565b604051602081830303815290604052805190602001206122b0565b5b156118e0576001609f600061187f6122a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001836118dd919061361c565b90505b80609b546118ee9190613650565b341015611930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611927906136f6565b60405180910390fd5b600061193a6122c7565b611945576000611954565b609b54826119539190613650565b5b905061195e6122a8565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156119a3573d6000803e3d6000fd5b506119b56119af6122a8565b85612336565b505060016065819055505050565b6119cb611ede565b80609c60006101000a81548160ff021916908360ff16021790555050565b60606119f482611ca0565b611a2a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a34612518565b9050600081511415611a555760405180602001604052806000815250611a80565b80611a5f846125aa565b604051602001611a70929190613752565b6040516020818303038152906040525b915050919050565b611a90611ede565b8060998190555050565b60985481565b609f6020528060005260406000206000915054906101000a900460ff1681565b611ac8611ede565b60985481611ad4610a99565b611ade919061348b565b1115611b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b169061352d565b60405180910390fd5b611b298282612336565b5050565b6000611b37611c73565b60070160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bd2611ede565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c39906137e8565b60405180910390fd5b611c4b81611f5c565b50565b611c56611ede565b80609b8190555050565b609a60009054906101000a900460ff1681565b6000807f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4090508091505090565b600081611cab611d19565b11158015611cc35750611cbc611c73565b6000015482105b8015611d0a575060007c0100000000000000000000000000000000000000000000000000000000611cf2611c73565b60040160008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611d31611d19565b11611dd457611d3e611c73565b60000154811015611dd3576000611d53611c73565b600401600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611dd1575b6000811415611dc757611da4611c73565b600401600083600190039350838152602001908152602001600020549050611d93565b8092505050611e06565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000611e18611c73565b600601600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e9c868684612604565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611ee66122a8565b73ffffffffffffffffffffffffffffffffffffffff16611f04611395565b73ffffffffffffffffffffffffffffffffffffffff1614611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5190613854565b60405180910390fd5b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000807fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f90508091505090565b6000803090506000813b9050600081149250505090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b612091612022565b60000160019054906101000a900460ff166120e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d8906138e6565b60405180910390fd5b6120eb828261260d565b5050565b600060019054906101000a900460ff1661213e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213590613978565b60405180910390fd5b6121466126c0565b565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261216e611d11565b8786866040518563ffffffff1660e01b815260040161219094939291906139ed565b602060405180830381600087803b1580156121aa57600080fd5b505af19250505080156121db57506040513d601f19601f820116820180604052508101906121d89190613a4e565b60015b612255573d806000811461220b576040519150601f19603f3d011682016040523d82523d6000602084013e612210565b606091505b5060008151141561224d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600033905090565b6000826122bd8584612721565b1490509392505050565b6000609c60009054906101000a900460ff1660ff16600a61ffff326001436122ef919061361c565b40426122f96122a8565b60405160200161230c9493929190613abd565b6040516020818303038152906040528051906020012060001c166123309190613b3a565b10905090565b6000612340611c73565b6000015490506000821415612381576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61238e6000848385611e7f565b600160406001901b1782026123a1611c73565b60050160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061240e836123ff6000866000611e85565b61240885612777565b17611ead565b612416611c73565b600401600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146124b857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061247d565b5060008214156124f4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806124fd611c73565b6000018190555050506125136000848385611ed8565b505050565b60606097805461252790613162565b80601f016020809104026020016040519081016040528092919081815260200182805461255390613162565b80156125a05780601f10612575576101008083540402835291602001916125a0565b820191906000526020600020905b81548152906001019060200180831161258357829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156125f057600183039250600a81066030018353600a810490506125d0565b508181036020830392508083525050919050565b60009392505050565b612615612022565b60000160019054906101000a900460ff16612665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265c906138e6565b60405180910390fd5b8161266e611c73565b60020190805190602001906126849291906127c9565b508061268e611c73565b60030190805190602001906126a49291906127c9565b506126ad611d19565b6126b5611c73565b600001819055505050565b600060019054906101000a900460ff1661270f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270690613978565b60405180910390fd5b61271f61271a6122a8565b611f5c565b565b60008082905060005b845181101561276c576127578286838151811061274a57612749613b6b565b5b6020026020010151612787565b9150808061276490613b9a565b91505061272a565b508091505092915050565b60006001821460e11b9050919050565b600081831061279f5761279a82846127b2565b6127aa565b6127a983836127b2565b5b905092915050565b600082600052816020526040600020905092915050565b8280546127d590613162565b90600052602060002090601f0160209004810192826127f7576000855561283e565b82601f1061281057805160ff191683800117855561283e565b8280016001018555821561283e579182015b8281111561283d578251825591602001919060010190612822565b5b50905061284b919061284f565b5090565b5b80821115612868576000816000905550600101612850565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128b581612880565b81146128c057600080fd5b50565b6000813590506128d2816128ac565b92915050565b6000602082840312156128ee576128ed612876565b5b60006128fc848285016128c3565b91505092915050565b60008115159050919050565b61291a81612905565b82525050565b60006020820190506129356000830184612911565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561297557808201518184015260208101905061295a565b83811115612984576000848401525b50505050565b6000601f19601f8301169050919050565b60006129a68261293b565b6129b08185612946565b93506129c0818560208601612957565b6129c98161298a565b840191505092915050565b600060208201905081810360008301526129ee818461299b565b905092915050565b6000819050919050565b612a09816129f6565b8114612a1457600080fd5b50565b600081359050612a2681612a00565b92915050565b600060208284031215612a4257612a41612876565b5b6000612a5084828501612a17565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a8482612a59565b9050919050565b612a9481612a79565b82525050565b6000602082019050612aaf6000830184612a8b565b92915050565b612abe81612a79565b8114612ac957600080fd5b50565b600081359050612adb81612ab5565b92915050565b60008060408385031215612af857612af7612876565b5b6000612b0685828601612acc565b9250506020612b1785828601612a17565b9150509250929050565b612b2a816129f6565b82525050565b6000602082019050612b456000830184612b21565b92915050565b600080600060608486031215612b6457612b63612876565b5b6000612b7286828701612acc565b9350506020612b8386828701612acc565b9250506040612b9486828701612a17565b9150509250925092565b6000819050919050565b612bb181612b9e565b8114612bbc57600080fd5b50565b600081359050612bce81612ba8565b92915050565b600060208284031215612bea57612be9612876565b5b6000612bf884828501612bbf565b91505092915050565b612c0a81612905565b8114612c1557600080fd5b50565b600081359050612c2781612c01565b92915050565b600060208284031215612c4357612c42612876565b5b6000612c5184828501612c18565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c9c8261298a565b810181811067ffffffffffffffff82111715612cbb57612cba612c64565b5b80604052505050565b6000612cce61286c565b9050612cda8282612c93565b919050565b600067ffffffffffffffff821115612cfa57612cf9612c64565b5b612d038261298a565b9050602081019050919050565b82818337600083830152505050565b6000612d32612d2d84612cdf565b612cc4565b905082815260208101848484011115612d4e57612d4d612c5f565b5b612d59848285612d10565b509392505050565b600082601f830112612d7657612d75612c5a565b5b8135612d86848260208601612d1f565b91505092915050565b600060208284031215612da557612da4612876565b5b600082013567ffffffffffffffff811115612dc357612dc261287b565b5b612dcf84828501612d61565b91505092915050565b600060208284031215612dee57612ded612876565b5b6000612dfc84828501612acc565b91505092915050565b60008060408385031215612e1c57612e1b612876565b5b6000612e2a85828601612acc565b9250506020612e3b85828601612c18565b9150509250929050565b600067ffffffffffffffff821115612e6057612e5f612c64565b5b612e698261298a565b9050602081019050919050565b6000612e89612e8484612e45565b612cc4565b905082815260208101848484011115612ea557612ea4612c5f565b5b612eb0848285612d10565b509392505050565b600082601f830112612ecd57612ecc612c5a565b5b8135612edd848260208601612e76565b91505092915050565b60008060008060808587031215612f0057612eff612876565b5b6000612f0e87828801612acc565b9450506020612f1f87828801612acc565b9350506040612f3087828801612a17565b925050606085013567ffffffffffffffff811115612f5157612f5061287b565b5b612f5d87828801612eb8565b91505092959194509250565b600067ffffffffffffffff821115612f8457612f83612c64565b5b602082029050602081019050919050565b600080fd5b6000612fad612fa884612f69565b612cc4565b90508083825260208201905060208402830185811115612fd057612fcf612f95565b5b835b81811015612ff95780612fe58882612bbf565b845260208401935050602081019050612fd2565b5050509392505050565b600082601f83011261301857613017612c5a565b5b8135613028848260208601612f9a565b91505092915050565b6000806040838503121561304857613047612876565b5b600061305685828601612a17565b925050602083013567ffffffffffffffff8111156130775761307661287b565b5b61308385828601613003565b9150509250929050565b600060ff82169050919050565b6130a38161308d565b81146130ae57600080fd5b50565b6000813590506130c08161309a565b92915050565b6000602082840312156130dc576130db612876565b5b60006130ea848285016130b1565b91505092915050565b6000806040838503121561310a57613109612876565b5b600061311885828601612acc565b925050602061312985828601612acc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061317a57607f821691505b6020821081141561318e5761318d613133565b5b50919050565b7f455243373231415f5f496e697469616c697a61626c653a20636f6e747261637460008201527f20697320616c726561647920696e697469616c697a6564000000000000000000602082015250565b60006131f0603783612946565b91506131fb82613194565b604082019050919050565b6000602082019050818103600083015261321f816131e3565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000613282602e83612946565b915061328d82613226565b604082019050919050565b600060208201905081810360008301526132b181613275565b9050919050565b6000819050919050565b6000819050919050565b60006132e76132e26132dd846132b8565b6132c2565b61308d565b9050919050565b6132f7816132cc565b82525050565b600060208201905061331260008301846132ee565b92915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061334e601f83612946565b915061335982613318565b602082019050919050565b6000602082019050818103600083015261337d81613341565b9050919050565b7f4d696e74206e6f74206c69766500000000000000000000000000000000000000600082015250565b60006133ba600d83612946565b91506133c582613384565b602082019050919050565b600060208201905081810360008301526133e9816133ad565b9050919050565b7f596f75206d757374206d696e74206174206c65617374206f6e65000000000000600082015250565b6000613426601a83612946565b9150613431826133f0565b602082019050919050565b6000602082019050818103600083015261345581613419565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613496826129f6565b91506134a1836129f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134d6576134d561345c565b5b828201905092915050565b7f4578636565647320746f74616c20737570706c79000000000000000000000000600082015250565b6000613517601483612946565b9150613522826134e1565b602082019050919050565b600060208201905081810360008301526135468161350a565b9050919050565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b6000613583601b83612946565b915061358e8261354d565b602082019050919050565b600060208201905081810360008301526135b281613576565b9050919050565b60008160601b9050919050565b60006135d1826135b9565b9050919050565b60006135e3826135c6565b9050919050565b6135fb6135f682612a79565b6135d8565b82525050565b600061360d82846135ea565b60148201915081905092915050565b6000613627826129f6565b9150613632836129f6565b9250828210156136455761364461345c565b5b828203905092915050565b600061365b826129f6565b9150613666836129f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561369f5761369e61345c565b5b828202905092915050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b60006136e0600e83612946565b91506136eb826136aa565b602082019050919050565b6000602082019050818103600083015261370f816136d3565b9050919050565b600081905092915050565b600061372c8261293b565b6137368185613716565b9350613746818560208601612957565b80840191505092915050565b600061375e8285613721565b915061376a8284613721565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137d2602683612946565b91506137dd82613776565b604082019050919050565b60006020820190508181036000830152613801816137c5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061383e602083612946565b915061384982613808565b602082019050919050565b6000602082019050818103600083015261386d81613831565b9050919050565b7f455243373231415f5f496e697469616c697a61626c653a20636f6e747261637460008201527f206973206e6f7420696e697469616c697a696e67000000000000000000000000602082015250565b60006138d0603483612946565b91506138db82613874565b604082019050919050565b600060208201905081810360008301526138ff816138c3565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613962602b83612946565b915061396d82613906565b604082019050919050565b6000602082019050818103600083015261399181613955565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139bf82613998565b6139c981856139a3565b93506139d9818560208601612957565b6139e28161298a565b840191505092915050565b6000608082019050613a026000830187612a8b565b613a0f6020830186612a8b565b613a1c6040830185612b21565b8181036060830152613a2e81846139b4565b905095945050505050565b600081519050613a48816128ac565b92915050565b600060208284031215613a6457613a63612876565b5b6000613a7284828501613a39565b91505092915050565b6000819050919050565b613a96613a9182612b9e565b613a7b565b82525050565b6000819050919050565b613ab7613ab2826129f6565b613a9c565b82525050565b6000613ac982876135ea565b601482019150613ad98286613a85565b602082019150613ae98285613aa6565b602082019150613af982846135ea565b60148201915081905095945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b45826129f6565b9150613b50836129f6565b925082613b6057613b5f613b0b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613ba5826129f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bd857613bd761345c565b5b60018201905091905056fea26469706673582212205ef3ed1b0d7f2786c84f96cfea77a8589069a9496f82684e08a01a08c9f42e9764736f6c63430008090033
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063c87b56dd116100a0578063e58306f91161006f578063e58306f9146106b4578063e985e9c5146106dd578063f2fde38b1461071a578063f4a0a52814610743578063fdfc7aae1461076c576101ee565b8063c87b56dd146105e6578063ccfdd2f814610623578063d5abeb011461064c578063db4bec4414610677576101ee565b8063a22cb465116100dc578063a22cb4651461054f578063b88d4fde14610578578063ba41b0c6146105a1578063ba5d6395146105bd576101ee565b8063715018a6146104cb5780638129fc1c146104e25780638da5cb5b146104f957806395d89b4114610524576101ee565b80634b980d67116101855780636352211e116101545780636352211e146103fb5780636817c76c146104385780636c0360eb1461046357806370a082311461048e576101ee565b80634b980d671461035557806350dc46561461038057806353ca912a146103a957806355f804b3146103d2576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780633ccfd60b1461031557806342842e0e1461032c576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906128d8565b610797565b6040516102279190612920565b60405180910390f35b34801561023c57600080fd5b50610245610829565b60405161025291906129d4565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612a2c565b6108c4565b60405161028f9190612a9a565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612ae1565b61094c565b005b3480156102cd57600080fd5b506102d6610a99565b6040516102e39190612b30565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612b4b565b610ac2565b005b34801561032157600080fd5b5061032a610e1d565b005b34801561033857600080fd5b50610353600480360381019061034e9190612b4b565b610e75565b005b34801561036157600080fd5b5061036a610e95565b6040516103779190612b30565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612bd4565b610e9b565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612c2d565b610ead565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612d8f565b610ed2565b005b34801561040757600080fd5b50610422600480360381019061041d9190612a2c565b610ef4565b60405161042f9190612a9a565b60405180910390f35b34801561044457600080fd5b5061044d610f06565b60405161045a9190612b30565b60405180910390f35b34801561046f57600080fd5b50610478610f0c565b60405161048591906129d4565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190612dd8565b610f9a565b6040516104c29190612b30565b60405180910390f35b3480156104d757600080fd5b506104e061105c565b005b3480156104ee57600080fd5b506104f7611070565b005b34801561050557600080fd5b5061050e611395565b60405161051b9190612a9a565b60405180910390f35b34801561053057600080fd5b506105396113bf565b60405161054691906129d4565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190612e05565b61145a565b005b34801561058457600080fd5b5061059f600480360381019061059a9190612ee6565b6115db565b005b6105bb60048036038101906105b69190613031565b61164e565b005b3480156105c957600080fd5b506105e460048036038101906105df91906130c6565b6119c3565b005b3480156105f257600080fd5b5061060d60048036038101906106089190612a2c565b6119e9565b60405161061a91906129d4565b60405180910390f35b34801561062f57600080fd5b5061064a60048036038101906106459190612a2c565b611a88565b005b34801561065857600080fd5b50610661611a9a565b60405161066e9190612b30565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190612dd8565b611aa0565b6040516106ab9190612920565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d69190612ae1565b611ac0565b005b3480156106e957600080fd5b5061070460048036038101906106ff91906130f3565b611b2d565b6040516107119190612920565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c9190612dd8565b611bca565b005b34801561074f57600080fd5b5061076a60048036038101906107659190612a2c565b611c4e565b005b34801561077857600080fd5b50610781611c60565b60405161078e9190612920565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108225750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060610833611c73565b600201805461084190613162565b80601f016020809104026020016040519081016040528092919081815260200182805461086d90613162565b80156108ba5780601f1061088f576101008083540402835291602001916108ba565b820191906000526020600020905b81548152906001019060200180831161089d57829003601f168201915b5050505050905090565b60006108cf82611ca0565b610905576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61090d611c73565b600601600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095782610ef4565b90508073ffffffffffffffffffffffffffffffffffffffff16610978611d11565b73ffffffffffffffffffffffffffffffffffffffff16146109db576109a48161099f611d11565b611b2d565b6109da576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826109e4611c73565b600601600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610aa3611d19565b610aab611c73565b60010154610ab7611c73565b600001540303905090565b6000610acd82611d22565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b34576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b4084611e0b565b91509150610b568187610b51611d11565b611e3b565b610ba257610b6b86610b66611d11565b611b2d565b610ba1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c09576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c168686866001611e7f565b8015610c2157600082555b610c29611c73565b60050160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550610c80611c73565b60050160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d0185610cdd888887611e85565b7c020000000000000000000000000000000000000000000000000000000017611ead565b610d09611c73565b60040160008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dad5760006001850190506000610d5b611c73565b6004016000838152602001908152602001600020541415610dab57610d7e611c73565b600001548114610daa5783610d91611c73565b6004016000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e158686866001611ed8565b505050505050565b610e25611ede565b610e2d611395565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e72573d6000803e3d6000fd5b50565b610e90838383604051806020016040528060008152506115db565b505050565b60995481565b610ea3611ede565b80609d8190555050565b610eb5611ede565b80609a60006101000a81548160ff02191690831515021790555050565b610eda611ede565b8060979080519060200190610ef09291906127c9565b5050565b6000610eff82611d22565b9050919050565b609b5481565b60978054610f1990613162565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4590613162565b8015610f925780601f10610f6757610100808354040283529160200191610f92565b820191906000526020600020905b815481529060010190602001808311610f7557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611002576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff611013611c73565b60050160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611064611ede565b61106e6000611f5c565b565b611078612022565b60000160019054906101000a900460ff166110ac57611095612022565b60000160009054906101000a900460ff16156110b5565b6110b461204f565b5b6110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90613206565b60405180910390fd5b60006110fe612022565b60000160019054906101000a900460ff161590508015611161576001611122612022565b60000160016101000a81548160ff0219169083151502179055506001611146612022565b60000160006101000a81548160ff0219169083151502179055505b60008060019054906101000a900460ff161590508080156111925750600160008054906101000a900460ff1660ff16105b806111bf57506111a130612066565b1580156111be5750600160008054906101000a900460ff1660ff16145b5b6111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590613298565b60405180910390fd5b60016000806101000a81548160ff021916908360ff160217905550801561123b576001600060016101000a81548160ff0219169083151502179055505b6112af6040518060400160405280600981526020017f444956455247454e5400000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f444956455247454e540000000000000000000000000000000000000000000000815250612089565b6112b76120ef565b6115b3609881905550600a6099819055506001609a60006101000a81548160ff021916908315150217905550661c6bf526340000609b819055506007609c60006101000a81548160ff021916908360ff16021790555080156113665760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161135d91906132fd565b60405180910390a15b508015611392576000611377612022565b60000160016101000a81548160ff0219169083151502179055505b50565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606113c9611c73565b60030180546113d790613162565b80601f016020809104026020016040519081016040528092919081815260200182805461140390613162565b80156114505780601f1061142557610100808354040283529160200191611450565b820191906000526020600020905b81548152906001019060200180831161143357829003601f168201915b5050505050905090565b611462611d11565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806114d0611c73565b60070160006114dd611d11565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661158a611d11565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115cf9190612920565b60405180910390a35050565b6115e6848484610ac2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116485761161184848484612148565b611647576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60026065541415611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90613364565b60405180910390fd5b6002606581905550609a60009054906101000a900460ff166116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e2906133d0565b60405180910390fd5b6000821161172e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117259061343c565b60405180910390fd5b6098548261173a610a99565b611744919061348b565b1115611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c9061352d565b60405180910390fd5b6099548211156117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c190613599565b60405180910390fd5b600082905060001515609f60006117df6122a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561186c575061186b82609d546118406122a8565b6040516020016118509190613601565b604051602081830303815290604052805190602001206122b0565b5b156118e0576001609f600061187f6122a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001836118dd919061361c565b90505b80609b546118ee9190613650565b341015611930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611927906136f6565b60405180910390fd5b600061193a6122c7565b611945576000611954565b609b54826119539190613650565b5b905061195e6122a8565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156119a3573d6000803e3d6000fd5b506119b56119af6122a8565b85612336565b505060016065819055505050565b6119cb611ede565b80609c60006101000a81548160ff021916908360ff16021790555050565b60606119f482611ca0565b611a2a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a34612518565b9050600081511415611a555760405180602001604052806000815250611a80565b80611a5f846125aa565b604051602001611a70929190613752565b6040516020818303038152906040525b915050919050565b611a90611ede565b8060998190555050565b60985481565b609f6020528060005260406000206000915054906101000a900460ff1681565b611ac8611ede565b60985481611ad4610a99565b611ade919061348b565b1115611b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b169061352d565b60405180910390fd5b611b298282612336565b5050565b6000611b37611c73565b60070160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bd2611ede565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c39906137e8565b60405180910390fd5b611c4b81611f5c565b50565b611c56611ede565b80609b8190555050565b609a60009054906101000a900460ff1681565b6000807f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4090508091505090565b600081611cab611d19565b11158015611cc35750611cbc611c73565b6000015482105b8015611d0a575060007c0100000000000000000000000000000000000000000000000000000000611cf2611c73565b60040160008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611d31611d19565b11611dd457611d3e611c73565b60000154811015611dd3576000611d53611c73565b600401600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611dd1575b6000811415611dc757611da4611c73565b600401600083600190039350838152602001908152602001600020549050611d93565b8092505050611e06565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000611e18611c73565b600601600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e9c868684612604565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611ee66122a8565b73ffffffffffffffffffffffffffffffffffffffff16611f04611395565b73ffffffffffffffffffffffffffffffffffffffff1614611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5190613854565b60405180910390fd5b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000807fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f90508091505090565b6000803090506000813b9050600081149250505090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b612091612022565b60000160019054906101000a900460ff166120e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d8906138e6565b60405180910390fd5b6120eb828261260d565b5050565b600060019054906101000a900460ff1661213e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213590613978565b60405180910390fd5b6121466126c0565b565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261216e611d11565b8786866040518563ffffffff1660e01b815260040161219094939291906139ed565b602060405180830381600087803b1580156121aa57600080fd5b505af19250505080156121db57506040513d601f19601f820116820180604052508101906121d89190613a4e565b60015b612255573d806000811461220b576040519150601f19603f3d011682016040523d82523d6000602084013e612210565b606091505b5060008151141561224d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600033905090565b6000826122bd8584612721565b1490509392505050565b6000609c60009054906101000a900460ff1660ff16600a61ffff326001436122ef919061361c565b40426122f96122a8565b60405160200161230c9493929190613abd565b6040516020818303038152906040528051906020012060001c166123309190613b3a565b10905090565b6000612340611c73565b6000015490506000821415612381576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61238e6000848385611e7f565b600160406001901b1782026123a1611c73565b60050160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061240e836123ff6000866000611e85565b61240885612777565b17611ead565b612416611c73565b600401600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146124b857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061247d565b5060008214156124f4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806124fd611c73565b6000018190555050506125136000848385611ed8565b505050565b60606097805461252790613162565b80601f016020809104026020016040519081016040528092919081815260200182805461255390613162565b80156125a05780601f10612575576101008083540402835291602001916125a0565b820191906000526020600020905b81548152906001019060200180831161258357829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156125f057600183039250600a81066030018353600a810490506125d0565b508181036020830392508083525050919050565b60009392505050565b612615612022565b60000160019054906101000a900460ff16612665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265c906138e6565b60405180910390fd5b8161266e611c73565b60020190805190602001906126849291906127c9565b508061268e611c73565b60030190805190602001906126a49291906127c9565b506126ad611d19565b6126b5611c73565b600001819055505050565b600060019054906101000a900460ff1661270f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270690613978565b60405180910390fd5b61271f61271a6122a8565b611f5c565b565b60008082905060005b845181101561276c576127578286838151811061274a57612749613b6b565b5b6020026020010151612787565b9150808061276490613b9a565b91505061272a565b508091505092915050565b60006001821460e11b9050919050565b600081831061279f5761279a82846127b2565b6127aa565b6127a983836127b2565b5b905092915050565b600082600052816020526040600020905092915050565b8280546127d590613162565b90600052602060002090601f0160209004810192826127f7576000855561283e565b82601f1061281057805160ff191683800117855561283e565b8280016001018555821561283e579182015b8281111561283d578251825591602001919060010190612822565b5b50905061284b919061284f565b5090565b5b80821115612868576000816000905550600101612850565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128b581612880565b81146128c057600080fd5b50565b6000813590506128d2816128ac565b92915050565b6000602082840312156128ee576128ed612876565b5b60006128fc848285016128c3565b91505092915050565b60008115159050919050565b61291a81612905565b82525050565b60006020820190506129356000830184612911565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561297557808201518184015260208101905061295a565b83811115612984576000848401525b50505050565b6000601f19601f8301169050919050565b60006129a68261293b565b6129b08185612946565b93506129c0818560208601612957565b6129c98161298a565b840191505092915050565b600060208201905081810360008301526129ee818461299b565b905092915050565b6000819050919050565b612a09816129f6565b8114612a1457600080fd5b50565b600081359050612a2681612a00565b92915050565b600060208284031215612a4257612a41612876565b5b6000612a5084828501612a17565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a8482612a59565b9050919050565b612a9481612a79565b82525050565b6000602082019050612aaf6000830184612a8b565b92915050565b612abe81612a79565b8114612ac957600080fd5b50565b600081359050612adb81612ab5565b92915050565b60008060408385031215612af857612af7612876565b5b6000612b0685828601612acc565b9250506020612b1785828601612a17565b9150509250929050565b612b2a816129f6565b82525050565b6000602082019050612b456000830184612b21565b92915050565b600080600060608486031215612b6457612b63612876565b5b6000612b7286828701612acc565b9350506020612b8386828701612acc565b9250506040612b9486828701612a17565b9150509250925092565b6000819050919050565b612bb181612b9e565b8114612bbc57600080fd5b50565b600081359050612bce81612ba8565b92915050565b600060208284031215612bea57612be9612876565b5b6000612bf884828501612bbf565b91505092915050565b612c0a81612905565b8114612c1557600080fd5b50565b600081359050612c2781612c01565b92915050565b600060208284031215612c4357612c42612876565b5b6000612c5184828501612c18565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c9c8261298a565b810181811067ffffffffffffffff82111715612cbb57612cba612c64565b5b80604052505050565b6000612cce61286c565b9050612cda8282612c93565b919050565b600067ffffffffffffffff821115612cfa57612cf9612c64565b5b612d038261298a565b9050602081019050919050565b82818337600083830152505050565b6000612d32612d2d84612cdf565b612cc4565b905082815260208101848484011115612d4e57612d4d612c5f565b5b612d59848285612d10565b509392505050565b600082601f830112612d7657612d75612c5a565b5b8135612d86848260208601612d1f565b91505092915050565b600060208284031215612da557612da4612876565b5b600082013567ffffffffffffffff811115612dc357612dc261287b565b5b612dcf84828501612d61565b91505092915050565b600060208284031215612dee57612ded612876565b5b6000612dfc84828501612acc565b91505092915050565b60008060408385031215612e1c57612e1b612876565b5b6000612e2a85828601612acc565b9250506020612e3b85828601612c18565b9150509250929050565b600067ffffffffffffffff821115612e6057612e5f612c64565b5b612e698261298a565b9050602081019050919050565b6000612e89612e8484612e45565b612cc4565b905082815260208101848484011115612ea557612ea4612c5f565b5b612eb0848285612d10565b509392505050565b600082601f830112612ecd57612ecc612c5a565b5b8135612edd848260208601612e76565b91505092915050565b60008060008060808587031215612f0057612eff612876565b5b6000612f0e87828801612acc565b9450506020612f1f87828801612acc565b9350506040612f3087828801612a17565b925050606085013567ffffffffffffffff811115612f5157612f5061287b565b5b612f5d87828801612eb8565b91505092959194509250565b600067ffffffffffffffff821115612f8457612f83612c64565b5b602082029050602081019050919050565b600080fd5b6000612fad612fa884612f69565b612cc4565b90508083825260208201905060208402830185811115612fd057612fcf612f95565b5b835b81811015612ff95780612fe58882612bbf565b845260208401935050602081019050612fd2565b5050509392505050565b600082601f83011261301857613017612c5a565b5b8135613028848260208601612f9a565b91505092915050565b6000806040838503121561304857613047612876565b5b600061305685828601612a17565b925050602083013567ffffffffffffffff8111156130775761307661287b565b5b61308385828601613003565b9150509250929050565b600060ff82169050919050565b6130a38161308d565b81146130ae57600080fd5b50565b6000813590506130c08161309a565b92915050565b6000602082840312156130dc576130db612876565b5b60006130ea848285016130b1565b91505092915050565b6000806040838503121561310a57613109612876565b5b600061311885828601612acc565b925050602061312985828601612acc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061317a57607f821691505b6020821081141561318e5761318d613133565b5b50919050565b7f455243373231415f5f496e697469616c697a61626c653a20636f6e747261637460008201527f20697320616c726561647920696e697469616c697a6564000000000000000000602082015250565b60006131f0603783612946565b91506131fb82613194565b604082019050919050565b6000602082019050818103600083015261321f816131e3565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000613282602e83612946565b915061328d82613226565b604082019050919050565b600060208201905081810360008301526132b181613275565b9050919050565b6000819050919050565b6000819050919050565b60006132e76132e26132dd846132b8565b6132c2565b61308d565b9050919050565b6132f7816132cc565b82525050565b600060208201905061331260008301846132ee565b92915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061334e601f83612946565b915061335982613318565b602082019050919050565b6000602082019050818103600083015261337d81613341565b9050919050565b7f4d696e74206e6f74206c69766500000000000000000000000000000000000000600082015250565b60006133ba600d83612946565b91506133c582613384565b602082019050919050565b600060208201905081810360008301526133e9816133ad565b9050919050565b7f596f75206d757374206d696e74206174206c65617374206f6e65000000000000600082015250565b6000613426601a83612946565b9150613431826133f0565b602082019050919050565b6000602082019050818103600083015261345581613419565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613496826129f6565b91506134a1836129f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134d6576134d561345c565b5b828201905092915050565b7f4578636565647320746f74616c20737570706c79000000000000000000000000600082015250565b6000613517601483612946565b9150613522826134e1565b602082019050919050565b600060208201905081810360008301526135468161350a565b9050919050565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b6000613583601b83612946565b915061358e8261354d565b602082019050919050565b600060208201905081810360008301526135b281613576565b9050919050565b60008160601b9050919050565b60006135d1826135b9565b9050919050565b60006135e3826135c6565b9050919050565b6135fb6135f682612a79565b6135d8565b82525050565b600061360d82846135ea565b60148201915081905092915050565b6000613627826129f6565b9150613632836129f6565b9250828210156136455761364461345c565b5b828203905092915050565b600061365b826129f6565b9150613666836129f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561369f5761369e61345c565b5b828202905092915050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b60006136e0600e83612946565b91506136eb826136aa565b602082019050919050565b6000602082019050818103600083015261370f816136d3565b9050919050565b600081905092915050565b600061372c8261293b565b6137368185613716565b9350613746818560208601612957565b80840191505092915050565b600061375e8285613721565b915061376a8284613721565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137d2602683612946565b91506137dd82613776565b604082019050919050565b60006020820190508181036000830152613801816137c5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061383e602083612946565b915061384982613808565b602082019050919050565b6000602082019050818103600083015261386d81613831565b9050919050565b7f455243373231415f5f496e697469616c697a61626c653a20636f6e747261637460008201527f206973206e6f7420696e697469616c697a696e67000000000000000000000000602082015250565b60006138d0603483612946565b91506138db82613874565b604082019050919050565b600060208201905081810360008301526138ff816138c3565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613962602b83612946565b915061396d82613906565b604082019050919050565b6000602082019050818103600083015261399181613955565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139bf82613998565b6139c981856139a3565b93506139d9818560208601612957565b6139e28161298a565b840191505092915050565b6000608082019050613a026000830187612a8b565b613a0f6020830186612a8b565b613a1c6040830185612b21565b8181036060830152613a2e81846139b4565b905095945050505050565b600081519050613a48816128ac565b92915050565b600060208284031215613a6457613a63612876565b5b6000613a7284828501613a39565b91505092915050565b6000819050919050565b613a96613a9182612b9e565b613a7b565b82525050565b6000819050919050565b613ab7613ab2826129f6565b613a9c565b82525050565b6000613ac982876135ea565b601482019150613ad98286613a85565b602082019150613ae98285613aa6565b602082019150613af982846135ea565b60148201915081905095945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b45826129f6565b9150613b50836129f6565b925082613b6057613b5f613b0b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613ba5826129f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bd857613bd761345c565b5b60018201905091905056fea26469706673582212205ef3ed1b0d7f2786c84f96cfea77a8589069a9496f82684e08a01a08c9f42e9764736f6c63430008090033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.