ERC-721
Overview
Max Total Supply
654 BoBG
Holders
55
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MadMarauderBoxOBadGuys
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
import "Guardable/ERC721AGuardable.sol"; import "solmate/auth/Owned.sol"; import "solmate/utils/MerkleProofLib.sol"; import "./lib/MarauderErrors.sol"; import "./lib/MarauderEnums.sol"; import "./lib/MarauderStructs.sol"; // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.18; contract MadMarauderBoxOBadGuys is ERC721AGuardable, Owned { string private baseUri; address public immutable maraudersContract; address public immutable archerContract; address public immutable merchContract; address public immutable serumContract; bool public smashingEnabled; mapping(Phase => PhaseDetails) public phases; mapping(Item => ItemDetails) public itemDetails; mapping(address => mapping(Item => uint256)) public numMintedDuringNerdPhase; constructor( bytes32[3] memory roots, uint64 _startTime, address _marauders, address _archer, address _merch, address _serum, string memory _uri ) ERC721AGuardable("Box O Bad Guys", "BoBG") Owned(msg.sender) { phases[Phase.NERDS_ONLY] = PhaseDetails(roots[0], _startTime); phases[Phase.FRIENDS_AND_FAMILY] = PhaseDetails(roots[1], _startTime + 48 hours); phases[Phase.PUBLIC_ALLOWLIST] = PhaseDetails(roots[2], _startTime + 72 hours); phases[Phase.PUBLIC] = PhaseDetails(bytes32(0), _startTime + 96 hours); maraudersContract = _marauders; archerContract = _archer; merchContract = _merch; serumContract = _serum; itemDetails[Item.BOX_O_BAD_GUYS] = ItemDetails(0x4e6ec247, 0, 969, 5, address(this), 0.42069 ether, 0.3333 ether); itemDetails[Item.ENFORCER] = ItemDetails(0x956fd85b, 0, 3069, 10, maraudersContract, 0.1 ether, 0.0666 ether); itemDetails[Item.WARLORD] = ItemDetails(0x680b5093, 0, 2069, 10, maraudersContract, 0.169 ether, 0.0999 ether); itemDetails[Item.MYSTERY_SERUM] = ItemDetails(0x91ff7e01, 0, 2069, 10, serumContract, 0.269 ether, 0.2 ether); baseUri = _uri; } /** * @notice mint function that allows minting several item types * @param items item types where 0 = BoBG, 1 = Enforcers, 2 = Warlords, 3 = serums * @param amounts a matching array to items containing the number of each item type to mint * @param proof your merkle proof for the current phase (for public mint, use an empty array: []) */ function mint(Item[] calldata items, uint16[] calldata amounts, bytes32[] calldata proof) external payable { if (items.length != amounts.length) revert ArrayLengthMismatch(); Phase phase = currentPhase(); if (phase == Phase.NOT_STARTED) revert SaleNotActive(); PhaseDetails memory phaseDetails = phases[phase]; if (uint(phase) <= 3) _validateSender(phaseDetails.root, proof); bool isNerdsOnly = phase == Phase.NERDS_ONLY; uint256 totalCost = 0; for (uint256 i = 0; i < items.length;) { if (amounts[i] == 0) revert MintZeroAmount(); unchecked { totalCost += priceFor(items[i], phase, amounts[i]); _mintItem(items[i], amounts[i], isNerdsOnly); ++i; } } if (msg.value != totalCost) revert WrongValueSent(); } /** * @notice owner only mint function that still increments counters and reverts if maxSupply is exceeded for a given item type */ function bazookaMint(Item[] calldata items, uint16[] calldata amounts) external onlyOwner { if (items.length != amounts.length) revert ArrayLengthMismatch(); for (uint256 i = 0; i < items.length;) { unchecked { _mintItem(items[i], amounts[i], false); ++i; } } } /** * @notice function for smashing boxes and receiving contents in return. Your box will be burned during this process * @param tokenIds an array of boxes that you are prepared to burn */ function smashAndGrab(uint256[] memory tokenIds) external { if (!smashingEnabled) revert SmashingNotActive(); for (uint256 i = 0; i < tokenIds.length;) { _burn(tokenIds[i], true); // this checks ownership and also prevents duplicate tokenIds unchecked { ++i; } } address[4] memory mintContracts = [maraudersContract, archerContract, merchContract, serumContract]; for (uint256 i = 0; i < mintContracts.length; i++) { (bool success, ) = mintContracts[i].call(abi.encodeWithSelector(0x91ff7e01, msg.sender, tokenIds.length)); if (!success) revert FailedToMint(); } } // VIEW FUNCTIONS /** * @dev returns the price for a given item during a given phase * @param item item types where 0 = BoBG, 1 = Enforcers, 2 = Warlords, 3 = serums * @param phase phases where 0 = NOT_STARTED, 1 = NERDS_ONLY, 2 = FRIENDS_AND_FAMILY * 3 = PUBLIC_ALLOWLIST, 4 = PUBLIC * @param amount the number of units to use in price calculation */ function priceFor(Item item, Phase phase, uint256 amount) public view returns (uint256) { if (phase == Phase.NOT_STARTED) revert SaleNotActive(); return uint(phase) <= 2 ? itemDetails[item].discountedPrice * amount : itemDetails[item].price * amount; } function _baseURI() internal view virtual override returns (string memory) { return baseUri; } /** * @notice Returns the current phase based on the current timestamp, where * 0 = NOT_STARTED, 1 = NERDS_ONLY, 2 = FRIENDS_AND_FAMILY, 3 = PUBLIC_ALLOWLIST, 4 = PUBLIC */ function currentPhase() public view returns (Phase) { if (block.timestamp < phases[Phase.NERDS_ONLY].startTime) { return Phase.NOT_STARTED; } else if (block.timestamp < phases[Phase.FRIENDS_AND_FAMILY].startTime) { return Phase.NERDS_ONLY; } else if (block.timestamp < phases[Phase.PUBLIC_ALLOWLIST].startTime) { return Phase.FRIENDS_AND_FAMILY; } else if (block.timestamp < phases[Phase.PUBLIC].startTime) { return Phase.PUBLIC_ALLOWLIST; } else { return Phase.PUBLIC; } } // OWNER ONLY FUNCTIONS function setRoots(Phase[] calldata _phases, bytes32[] calldata _roots) external onlyOwner { if (_phases.length != _roots.length) revert ArrayLengthMismatch(); for (uint256 i = 0; i < _phases.length; i++) { phases[_phases[i]].root = _roots[i]; } } function setSmashingStatus(bool status) external onlyOwner { smashingEnabled = status; } function setBaseURI(string memory _uri) external onlyOwner { baseUri = _uri; } function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); if (!success) revert WrongValueSent(); } // INTERNAL HELPERS function _validateSender(bytes32 root, bytes32[] calldata _proof) private view { bytes32 leaf = keccak256((abi.encodePacked(msg.sender))); if (!MerkleProofLib.verify(_proof, root, leaf)) { revert InvalidProof(); } } function _mintItem(Item _item, uint16 amount, bool isNerdsOnly) internal { ItemDetails storage item = itemDetails[_item]; if (item.numUnitsSold + amount > item.maxUnitsAllowed) revert ExceedMaxSupply(); unchecked { item.numUnitsSold += amount; } if (isNerdsOnly) { if (numMintedDuringNerdPhase[msg.sender][_item] + amount > item.maxNerdPhaseUnitsAllowedPerWallet) revert ExceedMaxPerWallet(); unchecked { numMintedDuringNerdPhase[msg.sender][_item] += amount; } } if (_item == Item.BOX_O_BAD_GUYS) { _mint(msg.sender, amount); } else { (bool success, ) = item.mintContractAddress.call(abi.encodeWithSelector(item.mintFunctionSelector, msg.sender, amount)); if (!success) revert FailedToMint(); } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) { if (_startTokenId() <= tokenId) { packed = _packedOwnerships[tokenId]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= _currentIndex) revert OwnerQueryForNonexistentToken(); // 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, `tokenId` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. for (;;) { unchecked { packed = _packedOwnerships[--tokenId]; } if (packed == 0) continue; return packed; } } // Otherwise, the data exists and is not burned. We can skip the scan. // This is possible because we have already achieved the target condition. // This saves 2143 gas on transfers of initialized tokens. 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. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @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: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve( address to, uint256 tokenId, bool approvalCheck ) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck) if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "./IGuardable.sol"; /** * Abstract contract to be used with ERC1155 or ERC721 or their extensions. * See ERC721Guardable or ERC1155Guardable for examples of how to overwrite * setApprovalForAll and approve to be Guardable. Overwriting other functions * is possible but not recommended. */ abstract contract Guardable is IGuardable { mapping(address => address) internal locks; function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IGuardable).interfaceId; } function setGuardian(address guardian) public { if (msg.sender == guardian || guardian == address(0)) { revert InvalidGuardian(); } locks[msg.sender] = guardian; emit GuardianAdded(msg.sender, guardian); } function guardianOf(address tokenOwner) public view returns (address) { return locks[tokenOwner]; } function removeGuardianOf(address tokenOwner) external { if (msg.sender != guardianOf(tokenOwner)) { revert CallerGuardianMismatch(msg.sender, guardianOf(tokenOwner)); } delete locks[tokenOwner]; emit GuardianRemoved(tokenOwner); } function _lockToSelf() internal virtual { locks[msg.sender] = msg.sender; emit GuardianAdded(msg.sender, msg.sender); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "openzeppelin/contracts/utils/introspection/IERC165.sol"; interface IGuardable is IERC165 { // Interface ID 0x126f5523 error TokenIsLocked(); error CallerGuardianMismatch(address caller, address guardian); error InvalidGuardian(); event GuardianAdded(address indexed addressGuarded, address indexed guardian); event GuardianRemoved(address indexed addressGuarded); function setGuardian(address guardian) external; function removeGuardianOf(address tokenOwner) external; function guardianOf(address tokenOwner) external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "ERC721A/ERC721A.sol"; import "../Guardable.sol"; /** * @dev Contract module which provides added security functionality, where * where an account can assign a guardian to protect their NFTs. While a guardian * is assigned, setApprovalForAll and approve are both locked. New approvals cannot be set. There can * only ever be one guardian per account, and setting a new guardian will overwrite * any existing one. * * Existing approvals can still be leveraged as normal, and it is expected that this * functionality be used after a user has set the approvals they want to set. Approvals * can still be removed while a guardian is set. * * Setting a guardian has no effect on transfers, so users can move assets to a new wallet * to effectively "clear" guardians if a guardian is maliciously set, or keys to a guardian * are lost. * * It is not recommended to use _lockToSelf, as removing this lock would be easily added to * a malicious workflow, whereas removing a traditional lock from a guardian account would * be sufficiently prohibitive. */ contract ERC721AGuardable is ERC721A, Guardable { constructor(string memory name_, string memory symbol_) ERC721A(name_, symbol_) {} function supportsInterface(bytes4 interfaceId) public view virtual override(Guardable, ERC721A) returns (bool) { return Guardable.supportsInterface(interfaceId) || ERC721A.supportsInterface(interfaceId); } function approve(address to, uint256 tokenId) public payable override { if (locks[msg.sender] != address(0)) { revert TokenIsLocked(); } super.approve(to, tokenId); } function setApprovalForAll(address operator, bool approved) public override { if (locks[msg.sender] != address(0) && approved) { revert TokenIsLocked(); } super.setApprovalForAll(operator, approved); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// @notice Simple single owner authorization mixin. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Owned.sol) abstract contract Owned { /*////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event OwnershipTransferred(address indexed user, address indexed newOwner); /*////////////////////////////////////////////////////////////// OWNERSHIP STORAGE //////////////////////////////////////////////////////////////*/ address public owner; modifier onlyOwner() virtual { require(msg.sender == owner, "UNAUTHORIZED"); _; } /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor(address _owner) { owner = _owner; emit OwnershipTransferred(address(0), _owner); } /*////////////////////////////////////////////////////////////// OWNERSHIP LOGIC //////////////////////////////////////////////////////////////*/ function transferOwnership(address newOwner) public virtual onlyOwner { owner = newOwner; emit OwnershipTransferred(msg.sender, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; /// @notice Gas optimized merkle proof verification library. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/MerkleProofLib.sol) /// @author Modified from Solady (https://github.com/Vectorized/solady/blob/main/src/utils/MerkleProofLib.sol) library MerkleProofLib { function verify( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool isValid) { /// @solidity memory-safe-assembly assembly { if proof.length { // Left shifting by 5 is like multiplying by 32. let end := add(proof.offset, shl(5, proof.length)) // Initialize offset to the offset of the proof in calldata. let offset := proof.offset // Iterate over proof elements to compute root hash. // prettier-ignore for {} 1 {} { // Slot where the leaf should be put in scratch space. If // leaf > calldataload(offset): slot 32, otherwise: slot 0. let leafSlot := shl(5, gt(leaf, calldataload(offset))) // Store elements to hash contiguously in scratch space. // The xor puts calldataload(offset) in whichever slot leaf // is not occupying, so 0 if leafSlot is 32, and 32 otherwise. mstore(leafSlot, leaf) mstore(xor(leafSlot, 32), calldataload(offset)) // Reuse leaf to store the hash to reduce stack operations. leaf := keccak256(0, 64) // Hash both slots of scratch space. offset := add(offset, 32) // Shift 1 word per cycle. // prettier-ignore if iszero(lt(offset, end)) { break } } } isValid := eq(leaf, root) // The proof is valid if the roots match. } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; enum Phase { // 0: the sale has not started. No mints allowed NOT_STARTED, // 1: allowlisted nerds can mint for a discounted price NERDS_ONLY, // 2: allowlisted friends and family can mint for a discounted price FRIENDS_AND_FAMILY, // 3: all allowlisted addresses can mint PUBLIC_ALLOWLIST, // 4: anybody can mint PUBLIC } enum Item { // 0: box o bad guys BOX_O_BAD_GUYS, // 1: enforcers ENFORCER, // 2: warlords WARLORD, // 3: serums MYSTERY_SERUM }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.18; error InvalidProof(); error WrongValueSent(); error ExceedMaxSupply(); error InvalidCaller(); error TokenTypeSoldOut(); error MustOwnMatchingNerd(); error AllBerserkersMinted(); error AlreadyClaimed(); error ConsumerAlreadySet(); error SaleNotActive(); error ArrayLengthMismatch(); error ExceedMaxPerWallet(); error SmashingNotActive(); error FailedToMint(); error ClaimNotStarted(); error MintZeroAmount();
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; struct MintableTokenDetails { uint16 startTokenId; uint16 currentTokenId; } struct ClaimableTokenDetails { uint16 totalSupply; uint16 currentBonusTokenId; uint16 maxBonusTokenId; } struct PhaseDetails { bytes32 root; uint64 startTime; } struct ItemDetails { bytes4 mintFunctionSelector; uint16 numUnitsSold; uint16 maxUnitsAllowed; uint16 maxNerdPhaseUnitsAllowedPerWallet; address mintContractAddress; uint64 price; uint64 discountedPrice; } struct MintTracker { uint32 numBoxesMinted; uint32 numEnforcersMinted; uint32 numWarlordsMinted; uint32 numSerumsMinted; }
{ "remappings": [ "@openzeppelin/=lib/Guardable/lib/openzeppelin-contracts/", "ERC721A/=lib/ERC721A/contracts/", "Guardable/=lib/Guardable/src/tokens/", "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "openzeppelin/=lib/openzeppelin-contracts/", "solmate/=lib/solmate/src/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "london", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"bytes32[3]","name":"roots","type":"bytes32[3]"},{"internalType":"uint64","name":"_startTime","type":"uint64"},{"internalType":"address","name":"_marauders","type":"address"},{"internalType":"address","name":"_archer","type":"address"},{"internalType":"address","name":"_merch","type":"address"},{"internalType":"address","name":"_serum","type":"address"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ArrayLengthMismatch","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"guardian","type":"address"}],"name":"CallerGuardianMismatch","type":"error"},{"inputs":[],"name":"ExceedMaxPerWallet","type":"error"},{"inputs":[],"name":"ExceedMaxSupply","type":"error"},{"inputs":[],"name":"FailedToMint","type":"error"},{"inputs":[],"name":"InvalidGuardian","type":"error"},{"inputs":[],"name":"InvalidProof","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroAmount","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SaleNotActive","type":"error"},{"inputs":[],"name":"SmashingNotActive","type":"error"},{"inputs":[],"name":"TokenIsLocked","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"},{"inputs":[],"name":"WrongValueSent","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addressGuarded","type":"address"},{"indexed":true,"internalType":"address","name":"guardian","type":"address"}],"name":"GuardianAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addressGuarded","type":"address"}],"name":"GuardianRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"archerContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum Item[]","name":"items","type":"uint8[]"},{"internalType":"uint16[]","name":"amounts","type":"uint16[]"}],"name":"bazookaMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentPhase","outputs":[{"internalType":"enum Phase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"}],"name":"guardianOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum Item","name":"","type":"uint8"}],"name":"itemDetails","outputs":[{"internalType":"bytes4","name":"mintFunctionSelector","type":"bytes4"},{"internalType":"uint16","name":"numUnitsSold","type":"uint16"},{"internalType":"uint16","name":"maxUnitsAllowed","type":"uint16"},{"internalType":"uint16","name":"maxNerdPhaseUnitsAllowedPerWallet","type":"uint16"},{"internalType":"address","name":"mintContractAddress","type":"address"},{"internalType":"uint64","name":"price","type":"uint64"},{"internalType":"uint64","name":"discountedPrice","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maraudersContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merchContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum Item[]","name":"items","type":"uint8[]"},{"internalType":"uint16[]","name":"amounts","type":"uint16[]"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"enum Item","name":"","type":"uint8"}],"name":"numMintedDuringNerdPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum Phase","name":"","type":"uint8"}],"name":"phases","outputs":[{"internalType":"bytes32","name":"root","type":"bytes32"},{"internalType":"uint64","name":"startTime","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum Item","name":"item","type":"uint8"},{"internalType":"enum Phase","name":"phase","type":"uint8"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"priceFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"}],"name":"removeGuardianOf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"serumContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"guardian","type":"address"}],"name":"setGuardian","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Phase[]","name":"_phases","type":"uint8[]"},{"internalType":"bytes32[]","name":"_roots","type":"bytes32[]"}],"name":"setRoots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSmashingStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"smashAndGrab","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"smashingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101006040523480156200001257600080fd5b506040516200357e3803806200357e8339810160408190526200003591620009b6565b336040518060400160405280600e81526020016d426f78204f20426164204775797360901b81525060405180604001604052806004815260200163426f424760e01b815250818181600290816200008d919062000b38565b5060036200009c828262000b38565b506000808155600980546001600160a01b0319166001600160a01b0388169081179091556040519095509093507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09250839150a350604080518082018252885181526001600160401b0388811660208084019182526001600052600c815292517fd421a5181c571bba3f01190c922c3b2a896fc1d84e86c9f17ac10e67ebef8b5c55517fd421a5181c571bba3f01190c922c3b2a896fc1d84e86c9f17ac10e67ebef8b5d80546001600160401b031916919092161790558151808301909252808901518252810162000192886202a30062000c1a565b6001600160401b039081169091526002600052600c602090815282517f5d6016397a73f5e079297ac5a36fef17b4d9c3831618e63ab105738020ddd72055918201517f5d6016397a73f5e079297ac5a36fef17b4d9c3831618e63ab105738020ddd72180546001600160401b0319169190921617905560408051808201825290890151815290810162000229886203f48062000c1a565b6001600160401b0390811690915260036000908152600c602090815283517fc0da782485e77ae272268ae0a3ff44c1552ecb60b3743924de17a815e0a3cfd755928301517fc0da782485e77ae272268ae0a3ff44c1552ecb60b3743924de17a815e0a3cfd880546001600160401b031916919093161790915560408051808201909152908152908101620002c1886205460062000c1a565b6001600160401b03169052600c600060048152602080820192909252604090810160009081208451815593830151600190940180546001600160401b0319166001600160401b03909516949094179093556001600160a01b03888116608090815288821660a090815288831660c090815292881660e090815284519081018552634e6ec24760e01b81529485018690526103c9938501939093526005606085015230908401526705d697537a8f2000918301919091526704a01e9587a340009082015290600d90808152602080820192909252604090810160009081208451815486860151878601516060808a01516080808c015160e097881c65ffffffffffff199097169690961764010000000061ffff968716021763ffffffff60301b191666010000000000009486169490940261ffff60401b1916939093176801000000000000000094909116840217600160501b600160f01b0319166a01000000000000000000006001600160a01b039586160217865560a0808b01516001978801805460c09d8e01516001600160401b039384166001600160801b0319909216919091179216909502179093558751948501885263956fd85b60e01b8552978401869052610bfd96840196909652600a968301969096528451169381019390935267016345785d8a00009383019390935266ec9c58de0a80009382019390935291600d916003811115620004d857620004d862000c04565b8152602080820192909252604090810160009081208451815486860151878601516060808a01516080808c015160e097881c65ffffffffffff199097169690961764010000000061ffff968716021763ffffffff60301b191666010000000000009486169490940261ffff60401b1916939093176801000000000000000094909116840217600160501b600160f01b0319166a01000000000000000000006001600160a01b039586160217865560a0808b01516001909701805460c09c8d01516001600160401b03998a166001600160801b0319909216919091179816909402969096179092558651938401875263680b509360e01b845296830185905261081595830195909552600a94820194909452845190931693830193909352670258689ac70a800092820192909252670162ea854d0fc00092810192909252600d90600260038111156200062e576200062e62000c04565b8152602080820192909252604090810160009081208451815486860151878601516060808a01516080808c015160e097881c65ffffffffffff199097169690961764010000000061ffff968716021763ffffffff60301b191666010000000000009486169490940261ffff60401b1916939093176801000000000000000094909116840217600160501b600160f01b0319166a01000000000000000000006001600160a01b039586160217865560a0808b01516001909701805460c09c8d01516001600160401b03998a166001600160801b031990921691909117981690940296909617909255865180850188526391ff7e0160e01b815297880186905261081596880196909652600a90870152905116928401929092526703bbae1324948000918301919091526702c68af0bb1400009282019290925290600d906003808111156200077f576200077f62000c04565b815260208082019290925260409081016000208351815493850151928501516060860151608087015160e09390931c65ffffffffffff199096169590951764010000000061ffff958616021763ffffffff60301b191666010000000000009185169190910261ffff60401b1916176801000000000000000093909416830293909317600160501b600160f01b0319166a01000000000000000000006001600160a01b039094169390930292909217825560a08301516001909201805460c0909401516001600160401b039384166001600160801b0319909516949094179290931602179055600a62000872828262000b38565b505050505050505062000c50565b634e487b7160e01b600052604160045260246000fd5b604051606081016001600160401b0381118282101715620008bb57620008bb62000880565b60405290565b604051601f8201601f191681016001600160401b0381118282101715620008ec57620008ec62000880565b604052919050565b80516001600160401b03811681146200090c57600080fd5b919050565b80516001600160a01b03811681146200090c57600080fd5b600082601f8301126200093b57600080fd5b81516001600160401b0381111562000957576200095762000880565b60206200096d601f8301601f19168201620008c1565b82815285828487010111156200098257600080fd5b60005b83811015620009a257858101830151828201840152820162000985565b506000928101909101919091529392505050565b6000806000806000806000610120888a031215620009d357600080fd5b88601f890112620009e357600080fd5b620009ed62000896565b8060608a018b81111562000a0057600080fd5b8a5b8181101562000a1c57805184526020938401930162000a02565b5081995062000a2b81620008f4565b985050505062000a3e6080890162000911565b945062000a4e60a0890162000911565b935062000a5e60c0890162000911565b925062000a6e60e0890162000911565b6101008901519092506001600160401b0381111562000a8c57600080fd5b62000a9a8a828b0162000929565b91505092959891949750929550565b600181811c9082168062000abe57607f821691505b60208210810362000adf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000b3357600081815260208120601f850160051c8101602086101562000b0e5750805b601f850160051c820191505b8181101562000b2f5782815560010162000b1a565b5050505b505050565b81516001600160401b0381111562000b545762000b5462000880565b62000b6c8162000b65845462000aa9565b8462000ae5565b602080601f83116001811462000ba4576000841562000b8b5750858301515b600019600386901b1c1916600185901b17855562000b2f565b600085815260208120601f198616915b8281101562000bd55788860151825594840194600190910190840162000bb4565b508582101562000bf45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052602160045260246000fd5b6001600160401b0381811683821601908082111562000c4957634e487b7160e01b600052601160045260246000fd5b5092915050565b60805160a05160c05160e0516128d862000ca6600039600081816107a601526112940152600081816105ab015261126a01526000818161051701526112420152600081816106f8015261121d01526128d86000f3fe60806040526004361061020f5760003560e01c80638ad801de11610118578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c51461073a578063ed9e55b71461075a578063f2fde38b14610774578063f864dccf14610794578063ffa56ba9146107c857600080fd5b8063b88d4fde146106b3578063c87b56dd146106c6578063c8efaff4146106e6578063ddf68dbf1461071a57600080fd5b8063a22cb465116100e7578063a22cb465146105e2578063acd52e8d14610602578063b0c6828a1461063b578063b6a7367c1461065b578063b873b82f1461067b57600080fd5b80638ad801de146105595780638da5cb5b146105795780638dc27f571461059957806395d89b41146105cd57600080fd5b80633ccfd60b1161019b57806369eee0051161016a57806369eee0051461047857806370a08231146104d25780637a731ec6146104f2578063881f447c146105055780638a0dac4a1461053957600080fd5b80633ccfd60b1461041057806342842e0e1461042557806355f804b3146104385780636352211e1461045857600080fd5b8063095ea7b3116101e2578063095ea7b3146102c557806318160ddd146102da5780631c20ab53146102fd57806323b872dd146103dd57806334b7d7e4146103f057600080fd5b806301ffc9a714610214578063055ad42e1461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004611fce565b6107e8565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e610813565b6040516102409190612001565b34801561027757600080fd5b50610280610923565b6040516102409190612079565b34801561029957600080fd5b506102ad6102a836600461208c565b6109b5565b6040516001600160a01b039091168152602001610240565b6102d86102d33660046120bc565b6109f9565b005b3480156102e657600080fd5b50600154600054035b604051908152602001610240565b34801561030957600080fd5b506103816103183660046120f5565b600d602052600090815260409020805460019091015460e082901b91640100000000810461ffff9081169266010000000000008304821692600160401b80820490931692600160501b9091046001600160a01b0316916001600160401b03808216929091041687565b604080516001600160e01b0319909816885261ffff9687166020890152948616948701949094529390911660608501526001600160a01b031660808401526001600160401b0391821660a08401521660c082015260e001610240565b6102d86103eb366004612110565b610a3e565b3480156103fc57600080fd5b506102d861040b36600461214c565b610bcf565b34801561041c57600080fd5b506102d8610c81565b6102d8610433366004612110565b610d17565b34801561044457600080fd5b506102d8610453366004612204565b610d37565b34801561046457600080fd5b506102ad61047336600461208c565b610d6d565b34801561048457600080fd5b506104b561049336600461225b565b600c60205260009081526040902080546001909101546001600160401b031682565b604080519283526001600160401b03909116602083015201610240565b3480156104de57600080fd5b506102ef6104ed36600461214c565b610d78565b6102d86105003660046122c1565b610dc6565b34801561051157600080fd5b506102ad7f000000000000000000000000000000000000000000000000000000000000000081565b34801561054557600080fd5b506102d861055436600461214c565b611003565b34801561056557600080fd5b506102d861057436600461235a565b611096565b34801561058557600080fd5b506009546102ad906001600160a01b031681565b3480156105a557600080fd5b506102ad7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105d957600080fd5b50610280611152565b3480156105ee57600080fd5b506102d86105fd3660046123d5565b611161565b34801561060e57600080fd5b506102ad61061d36600461214c565b6001600160a01b039081166000908152600860205260409020541690565b34801561064757600080fd5b506102d8610656366004612408565b6111ad565b34801561066757600080fd5b506102d86106763660046124ad565b6113af565b34801561068757600080fd5b506102ef6106963660046124c8565b600e60209081526000928352604080842090915290825290205481565b6102d86106c13660046124f2565b6113ec565b3480156106d257600080fd5b506102806106e136600461208c565b611436565b3480156106f257600080fd5b506102ad7f000000000000000000000000000000000000000000000000000000000000000081565b34801561072657600080fd5b506102d861073536600461235a565b6114ba565b34801561074657600080fd5b5061023461075536600461256d565b611598565b34801561076657600080fd5b50600b546102349060ff1681565b34801561078057600080fd5b506102d861078f36600461214c565b6115c6565b3480156107a057600080fd5b506102ad7f000000000000000000000000000000000000000000000000000000000000000081565b3480156107d457600080fd5b506102ef6107e3366004612597565b61163c565b600063126f552360e01b6001600160e01b03198316148061080d575061080d8261173b565b92915050565b60016000908152600c6020527fd421a5181c571bba3f01190c922c3b2a896fc1d84e86c9f17ac10e67ebef8b5d546001600160401b03164210156108575750600090565b6002600052600c6020527f5d6016397a73f5e079297ac5a36fef17b4d9c3831618e63ab105738020ddd721546001600160401b03164210156108995750600190565b6003600052600c6020527fc0da782485e77ae272268ae0a3ff44c1552ecb60b3743924de17a815e0a3cfd8546001600160401b03164210156108db5750600290565b6004600052600c6020527f5b84bb9e0f5aa9cc45a8bb66468db5d4816d1e75ff86b5e1f1dd8d144dab8098546001600160401b031642101561091d5750600390565b50600490565b606060028054610932906125c3565b80601f016020809104026020016040519081016040528092919081815260200182805461095e906125c3565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b5050505050905090565b60006109c082611789565b6109dd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b336000908152600860205260409020546001600160a01b031615610a305760405163c066bae760e01b815260040160405180910390fd5b610a3a82826117b0565b5050565b6000610a49826117bc565b9050836001600160a01b0316816001600160a01b031614610a7c5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054610aa88187335b6001600160a01b039081169116811491141790565b610ad357610ab68633611598565b610ad357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610afa57604051633a954ecd60e21b815260040160405180910390fd5b8015610b0557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610b9757600184016000818152600460205260408120549003610b95576000548114610b955760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061288383398151915260405160405180910390a45b505050505050565b6001600160a01b03818116600090815260086020526040902054163314610c32576001600160a01b038181166000908152600860205260409081902054905163731b25c760e11b8152336004820152911660248201526044015b60405180910390fd5b6001600160a01b03811660008181526008602052604080822080546001600160a01b0319169055517fb8107d0c6b40be480ce3172ee66ba6d64b71f6b1685a851340036e6e2e3e3c529190a250565b6009546001600160a01b03163314610cab5760405162461bcd60e51b8152600401610c29906125fd565b604051600090339047908381818185875af1925050503d8060008114610ced576040519150601f19603f3d011682016040523d82523d6000602084013e610cf2565b606091505b5050905080610d1457604051632f4613eb60e01b815260040160405180910390fd5b50565b610d32838383604051806020016040528060008152506113ec565b505050565b6009546001600160a01b03163314610d615760405162461bcd60e51b8152600401610c29906125fd565b600a610a3a8282612669565b600061080d826117bc565b60006001600160a01b038216610da1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b848314610de65760405163512509d360e11b815260040160405180910390fd5b6000610df0610813565b90506000816004811115610e0657610e06611feb565b03610e245760405163b7b2409760e01b815260040160405180910390fd5b6000600c6000836004811115610e3c57610e3c611feb565b6004811115610e4d57610e4d611feb565b81526020808201929092526040908101600020815180830190925280548252600101546001600160401b03169181019190915290506003826004811115610e9657610e96611feb565b11610ea8578051610ea890858561183d565b60006001836004811115610ebe57610ebe611feb565b1490506000805b89811015610fd657888882818110610edf57610edf612728565b9050602002016020810190610ef4919061273e565b61ffff16600003610f185760405163cd53609f60e01b815260040160405180910390fd5b610f738b8b83818110610f2d57610f2d612728565b9050602002016020810190610f4291906120f5565b868b8b85818110610f5557610f55612728565b9050602002016020810190610f6a919061273e565b61ffff1661163c565b82019150610fce8b8b83818110610f8c57610f8c612728565b9050602002016020810190610fa191906120f5565b8a8a84818110610fb357610fb3612728565b9050602002016020810190610fc8919061273e565b8561189f565b600101610ec5565b50803414610ff757604051632f4613eb60e01b815260040160405180910390fd5b50505050505050505050565b336001600160a01b038216148061102157506001600160a01b038116155b1561103f5760405163a6c1146b60e01b815260040160405180910390fd5b3360008181526008602052604080822080546001600160a01b0319166001600160a01b03861690811790915590519092917fbc3292102fa77e083913064b282926717cdfaede4d35f553d66366c0a3da755a91a350565b6009546001600160a01b031633146110c05760405162461bcd60e51b8152600401610c29906125fd565b8281146110e05760405163512509d360e11b815260040160405180910390fd5b60005b8381101561114b5761114385858381811061110057611100612728565b905060200201602081019061111591906120f5565b84848481811061112757611127612728565b905060200201602081019061113c919061273e565b600061189f565b6001016110e3565b5050505050565b606060038054610932906125c3565b336000908152600860205260409020546001600160a01b0316158015906111855750805b156111a35760405163c066bae760e01b815260040160405180910390fd5b610a3a8282611b1b565b600b5460ff166111d057604051631b45eaeb60e21b815260040160405180910390fd5b60005b8151811015611208576112008282815181106111f1576111f1612728565b60200260200101516001611b87565b6001016111d3565b50604080516080810182526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811682527f0000000000000000000000000000000000000000000000000000000000000000811660208301527f00000000000000000000000000000000000000000000000000000000000000008116928201929092527f0000000000000000000000000000000000000000000000000000000000000000909116606082015260005b6004811015610d325760008282600481106112db576112db612728565b6020908102919091015185516040805133602482015260448082019390935281518082039093018352606401815292810180516001600160e01b03166391ff7e0160e01b17905291516001600160a01b039091169161133991612762565b6000604051808303816000865af19150503d8060008114611376576040519150601f19603f3d011682016040523d82523d6000602084013e61137b565b606091505b505090508061139c576040516248195d60e01b815260040160405180910390fd5b50806113a781612794565b9150506112be565b6009546001600160a01b031633146113d95760405162461bcd60e51b8152600401610c29906125fd565b600b805460ff1916911515919091179055565b6113f7848484610a3e565b6001600160a01b0383163b156114305761141384848484611cbf565b611430576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061144182611789565b61145e57604051630a14c4b560e41b815260040160405180910390fd5b6000611468611daa565b9050805160000361148857604051806020016040528060008152506114b3565b8061149284611db9565b6040516020016114a39291906127ad565b6040516020818303038152906040525b9392505050565b6009546001600160a01b031633146114e45760405162461bcd60e51b8152600401610c29906125fd565b8281146115045760405163512509d360e11b815260040160405180910390fd5b60005b8381101561114b5782828281811061152157611521612728565b90506020020135600c600087878581811061153e5761153e612728565b9050602002016020810190611553919061225b565b600481111561156457611564611feb565b600481111561157557611575611feb565b81526020810191909152604001600020558061159081612794565b915050611507565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6009546001600160a01b031633146115f05760405162461bcd60e51b8152600401610c29906125fd565b600980546001600160a01b0319166001600160a01b03831690811790915560405133907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a350565b60008083600481111561165157611651611feb565b0361166f5760405163b7b2409760e01b815260040160405180910390fd5b600283600481111561168357611683611feb565b11156116dd5781600d60008660038111156116a0576116a0611feb565b60038111156116b1576116b1611feb565b81526020810191909152604001600020600101546116d891906001600160401b03166127dc565b611733565b81600d60008660038111156116f4576116f4611feb565b600381111561170557611705611feb565b81526020810191909152604001600020600101546117339190600160401b90046001600160401b03166127dc565b949350505050565b60006301ffc9a760e01b6001600160e01b03198316148061176c57506380ac58cd60e01b6001600160e01b03198316145b8061080d5750506001600160e01b031916635b5e139f60e01b1490565b600080548210801561080d575050600090815260046020526040902054600160e01b161590565b610a3a82826001611dfd565b60008181526004602052604081205490600160e01b82169003611824578060000361181f57600054821061180357604051636f96cda160e11b815260040160405180910390fd5b5b50600019016000818152600460205260409020548015611804575b919050565b604051636f96cda160e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061188283838684611ea4565b611430576040516309bde33960e01b815260040160405180910390fd5b6000600d60008560038111156118b7576118b7611feb565b60038111156118c8576118c8611feb565b81526020810191909152604001600020805490915061ffff660100000000000082048116916119019186916401000000009004166127f3565b61ffff16111561192457604051630f0c37b960e11b815260040160405180910390fd5b805461ffff640100000000808304821686019091160265ffff00000000199091161781558115611a1b578054336000908152600e6020526040812061ffff600160401b90930483169286169187600381111561198257611982611feb565b600381111561199357611993611feb565b8152602001908152602001600020546119ac9190612815565b11156119cb57604051636c80554560e11b815260040160405180910390fd5b336000908152600e6020526040812061ffff8516918660038111156119f2576119f2611feb565b6003811115611a0357611a03611feb565b81526020810191909152604001600020805490910190555b6000846003811115611a2f57611a2f611feb565b03611a4757611a42338461ffff16611ede565b611430565b805460405133602482015261ffff85166044820152600091600160501b81046001600160a01b03169160e09190911b9060640160408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909416939093179092529051611ab89190612762565b6000604051808303816000865af19150503d8060008114611af5576040519150601f19603f3d011682016040523d82523d6000602084013e611afa565b606091505b505090508061114b576040516248195d60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000611b92836117bc565b905080600080611bb086600090815260066020526040902080549091565b915091508415611bf057611bc5818433610a93565b611bf057611bd38333611598565b611bf057604051632ce44b5f60e11b815260040160405180910390fd5b8015611bfb57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003611c8957600186016000818152600460205260408120549003611c87576000548114611c875760008181526004602052604090208590555b505b60405186906000906001600160a01b03861690600080516020612883833981519152908390a45050600180548101905550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611cf4903390899088908890600401612828565b6020604051808303816000875af1925050508015611d2f575060408051601f3d908101601f19168201909252611d2c91810190612865565b60015b611d8d573d808015611d5d576040519150601f19603f3d011682016040523d82523d6000602084013e611d62565b606091505b508051600003611d85576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600a8054610932906125c3565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611dd35750819003601f19909101908152919050565b6000611e0883610d6d565b90508115611e4757336001600160a01b03821614611e4757611e2a8133611598565b611e47576040516367d9dca160e11b815260040160405180910390fd5b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b60008315611ed6578360051b8501855b803580851160051b94855260209485185260406000209301818110611eb45750505b501492915050565b6000805490829003611f035760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083906000805160206128838339815191528180a4600183015b818114611f8e5780836000600080516020612883833981519152600080a4600101611f68565b5081600003611faf57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b031981168114610d1457600080fd5b600060208284031215611fe057600080fd5b81356114b381611fb8565b634e487b7160e01b600052602160045260246000fd5b602081016005831061202357634e487b7160e01b600052602160045260246000fd5b91905290565b60005b8381101561204457818101518382015260200161202c565b50506000910152565b60008151808452612065816020860160208601612029565b601f01601f19169290920160200192915050565b6020815260006114b3602083018461204d565b60006020828403121561209e57600080fd5b5035919050565b80356001600160a01b038116811461181f57600080fd5b600080604083850312156120cf57600080fd5b6120d8836120a5565b946020939093013593505050565b80356004811061181f57600080fd5b60006020828403121561210757600080fd5b6114b3826120e6565b60008060006060848603121561212557600080fd5b61212e846120a5565b925061213c602085016120a5565b9150604084013590509250925092565b60006020828403121561215e57600080fd5b6114b3826120a5565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156121a5576121a5612167565b604052919050565b60006001600160401b038311156121c6576121c6612167565b6121d9601f8401601f191660200161217d565b90508281528383830111156121ed57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561221657600080fd5b81356001600160401b0381111561222c57600080fd5b8201601f8101841361223d57600080fd5b611733848235602084016121ad565b80356005811061181f57600080fd5b60006020828403121561226d57600080fd5b6114b38261224c565b60008083601f84011261228857600080fd5b5081356001600160401b0381111561229f57600080fd5b6020830191508360208260051b85010111156122ba57600080fd5b9250929050565b600080600080600080606087890312156122da57600080fd5b86356001600160401b03808211156122f157600080fd5b6122fd8a838b01612276565b9098509650602089013591508082111561231657600080fd5b6123228a838b01612276565b9096509450604089013591508082111561233b57600080fd5b5061234889828a01612276565b979a9699509497509295939492505050565b6000806000806040858703121561237057600080fd5b84356001600160401b038082111561238757600080fd5b61239388838901612276565b909650945060208701359150808211156123ac57600080fd5b506123b987828801612276565b95989497509550505050565b8035801515811461181f57600080fd5b600080604083850312156123e857600080fd5b6123f1836120a5565b91506123ff602084016123c5565b90509250929050565b6000602080838503121561241b57600080fd5b82356001600160401b038082111561243257600080fd5b818501915085601f83011261244657600080fd5b81358181111561245857612458612167565b8060051b915061246984830161217d565b818152918301840191848101908884111561248357600080fd5b938501935b838510156124a157843582529385019390850190612488565b98975050505050505050565b6000602082840312156124bf57600080fd5b6114b3826123c5565b600080604083850312156124db57600080fd5b6124e4836120a5565b91506123ff602084016120e6565b6000806000806080858703121561250857600080fd5b612511856120a5565b935061251f602086016120a5565b92506040850135915060608501356001600160401b0381111561254157600080fd5b8501601f8101871361255257600080fd5b612561878235602084016121ad565b91505092959194509250565b6000806040838503121561258057600080fd5b612589836120a5565b91506123ff602084016120a5565b6000806000606084860312156125ac57600080fd5b6125b5846120e6565b925061213c6020850161224c565b600181811c908216806125d757607f821691505b6020821081036125f757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b601f821115610d3257600081815260208120601f850160051c8101602086101561264a5750805b601f850160051c820191505b81811015610bc757828155600101612656565b81516001600160401b0381111561268257612682612167565b6126968161269084546125c3565b84612623565b602080601f8311600181146126cb57600084156126b35750858301515b600019600386901b1c1916600185901b178555610bc7565b600085815260208120601f198616915b828110156126fa578886015182559484019460019091019084016126db565b50858210156127185787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561275057600080fd5b813561ffff811681146114b357600080fd5b60008251612774818460208701612029565b9190910192915050565b634e487b7160e01b600052601160045260246000fd5b6000600182016127a6576127a661277e565b5060010190565b600083516127bf818460208801612029565b8351908301906127d3818360208801612029565b01949350505050565b808202811582820484141761080d5761080d61277e565b61ffff81811683821601908082111561280e5761280e61277e565b5092915050565b8082018082111561080d5761080d61277e565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061285b9083018461204d565b9695505050505050565b60006020828403121561287757600080fd5b81516114b381611fb856feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220687ce82ebe95725f1e28375de345fd2fe644b11457687724fdd0b7eb97e4802064736f6c63430008120033d884a7f4dc3b2d7f541fe56203187e7f6af51e0b363749e5377899950b921253f7b1b75cd2e0090574b1f47e622c1f17816675155518ef03b4ecb8e9a48ecac5a420c3f26c149bd6484c34725250d9de896d3d6f5173d313f023fa0e57944730000000000000000000000000000000000000000000000000000000006408fc00000000000000000000000000026234c69cdfa4dc0c7f01806df6b9d63e238b80000000000000000000000000fab41b4a7f38676dcee8b811f67e68e71b5e50b6000000000000000000000000abd894720127e8a3bd048c7228781ee2607cea7e000000000000000000000000072d62047b03b9ee68596557aee848188422150b0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f6e75636c6561726e6572642e6d7970696e6174612e636c6f75642f697066732f516d62316e624a6e54784a5a477850366b6a4b67474d533245624553475455747043513431764a536876324378752f000000000000000000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80638ad801de11610118578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c51461073a578063ed9e55b71461075a578063f2fde38b14610774578063f864dccf14610794578063ffa56ba9146107c857600080fd5b8063b88d4fde146106b3578063c87b56dd146106c6578063c8efaff4146106e6578063ddf68dbf1461071a57600080fd5b8063a22cb465116100e7578063a22cb465146105e2578063acd52e8d14610602578063b0c6828a1461063b578063b6a7367c1461065b578063b873b82f1461067b57600080fd5b80638ad801de146105595780638da5cb5b146105795780638dc27f571461059957806395d89b41146105cd57600080fd5b80633ccfd60b1161019b57806369eee0051161016a57806369eee0051461047857806370a08231146104d25780637a731ec6146104f2578063881f447c146105055780638a0dac4a1461053957600080fd5b80633ccfd60b1461041057806342842e0e1461042557806355f804b3146104385780636352211e1461045857600080fd5b8063095ea7b3116101e2578063095ea7b3146102c557806318160ddd146102da5780631c20ab53146102fd57806323b872dd146103dd57806334b7d7e4146103f057600080fd5b806301ffc9a714610214578063055ad42e1461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004611fce565b6107e8565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e610813565b6040516102409190612001565b34801561027757600080fd5b50610280610923565b6040516102409190612079565b34801561029957600080fd5b506102ad6102a836600461208c565b6109b5565b6040516001600160a01b039091168152602001610240565b6102d86102d33660046120bc565b6109f9565b005b3480156102e657600080fd5b50600154600054035b604051908152602001610240565b34801561030957600080fd5b506103816103183660046120f5565b600d602052600090815260409020805460019091015460e082901b91640100000000810461ffff9081169266010000000000008304821692600160401b80820490931692600160501b9091046001600160a01b0316916001600160401b03808216929091041687565b604080516001600160e01b0319909816885261ffff9687166020890152948616948701949094529390911660608501526001600160a01b031660808401526001600160401b0391821660a08401521660c082015260e001610240565b6102d86103eb366004612110565b610a3e565b3480156103fc57600080fd5b506102d861040b36600461214c565b610bcf565b34801561041c57600080fd5b506102d8610c81565b6102d8610433366004612110565b610d17565b34801561044457600080fd5b506102d8610453366004612204565b610d37565b34801561046457600080fd5b506102ad61047336600461208c565b610d6d565b34801561048457600080fd5b506104b561049336600461225b565b600c60205260009081526040902080546001909101546001600160401b031682565b604080519283526001600160401b03909116602083015201610240565b3480156104de57600080fd5b506102ef6104ed36600461214c565b610d78565b6102d86105003660046122c1565b610dc6565b34801561051157600080fd5b506102ad7f000000000000000000000000fab41b4a7f38676dcee8b811f67e68e71b5e50b681565b34801561054557600080fd5b506102d861055436600461214c565b611003565b34801561056557600080fd5b506102d861057436600461235a565b611096565b34801561058557600080fd5b506009546102ad906001600160a01b031681565b3480156105a557600080fd5b506102ad7f000000000000000000000000abd894720127e8a3bd048c7228781ee2607cea7e81565b3480156105d957600080fd5b50610280611152565b3480156105ee57600080fd5b506102d86105fd3660046123d5565b611161565b34801561060e57600080fd5b506102ad61061d36600461214c565b6001600160a01b039081166000908152600860205260409020541690565b34801561064757600080fd5b506102d8610656366004612408565b6111ad565b34801561066757600080fd5b506102d86106763660046124ad565b6113af565b34801561068757600080fd5b506102ef6106963660046124c8565b600e60209081526000928352604080842090915290825290205481565b6102d86106c13660046124f2565b6113ec565b3480156106d257600080fd5b506102806106e136600461208c565b611436565b3480156106f257600080fd5b506102ad7f000000000000000000000000026234c69cdfa4dc0c7f01806df6b9d63e238b8081565b34801561072657600080fd5b506102d861073536600461235a565b6114ba565b34801561074657600080fd5b5061023461075536600461256d565b611598565b34801561076657600080fd5b50600b546102349060ff1681565b34801561078057600080fd5b506102d861078f36600461214c565b6115c6565b3480156107a057600080fd5b506102ad7f000000000000000000000000072d62047b03b9ee68596557aee848188422150b81565b3480156107d457600080fd5b506102ef6107e3366004612597565b61163c565b600063126f552360e01b6001600160e01b03198316148061080d575061080d8261173b565b92915050565b60016000908152600c6020527fd421a5181c571bba3f01190c922c3b2a896fc1d84e86c9f17ac10e67ebef8b5d546001600160401b03164210156108575750600090565b6002600052600c6020527f5d6016397a73f5e079297ac5a36fef17b4d9c3831618e63ab105738020ddd721546001600160401b03164210156108995750600190565b6003600052600c6020527fc0da782485e77ae272268ae0a3ff44c1552ecb60b3743924de17a815e0a3cfd8546001600160401b03164210156108db5750600290565b6004600052600c6020527f5b84bb9e0f5aa9cc45a8bb66468db5d4816d1e75ff86b5e1f1dd8d144dab8098546001600160401b031642101561091d5750600390565b50600490565b606060028054610932906125c3565b80601f016020809104026020016040519081016040528092919081815260200182805461095e906125c3565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b5050505050905090565b60006109c082611789565b6109dd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b336000908152600860205260409020546001600160a01b031615610a305760405163c066bae760e01b815260040160405180910390fd5b610a3a82826117b0565b5050565b6000610a49826117bc565b9050836001600160a01b0316816001600160a01b031614610a7c5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054610aa88187335b6001600160a01b039081169116811491141790565b610ad357610ab68633611598565b610ad357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610afa57604051633a954ecd60e21b815260040160405180910390fd5b8015610b0557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610b9757600184016000818152600460205260408120549003610b95576000548114610b955760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061288383398151915260405160405180910390a45b505050505050565b6001600160a01b03818116600090815260086020526040902054163314610c32576001600160a01b038181166000908152600860205260409081902054905163731b25c760e11b8152336004820152911660248201526044015b60405180910390fd5b6001600160a01b03811660008181526008602052604080822080546001600160a01b0319169055517fb8107d0c6b40be480ce3172ee66ba6d64b71f6b1685a851340036e6e2e3e3c529190a250565b6009546001600160a01b03163314610cab5760405162461bcd60e51b8152600401610c29906125fd565b604051600090339047908381818185875af1925050503d8060008114610ced576040519150601f19603f3d011682016040523d82523d6000602084013e610cf2565b606091505b5050905080610d1457604051632f4613eb60e01b815260040160405180910390fd5b50565b610d32838383604051806020016040528060008152506113ec565b505050565b6009546001600160a01b03163314610d615760405162461bcd60e51b8152600401610c29906125fd565b600a610a3a8282612669565b600061080d826117bc565b60006001600160a01b038216610da1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b848314610de65760405163512509d360e11b815260040160405180910390fd5b6000610df0610813565b90506000816004811115610e0657610e06611feb565b03610e245760405163b7b2409760e01b815260040160405180910390fd5b6000600c6000836004811115610e3c57610e3c611feb565b6004811115610e4d57610e4d611feb565b81526020808201929092526040908101600020815180830190925280548252600101546001600160401b03169181019190915290506003826004811115610e9657610e96611feb565b11610ea8578051610ea890858561183d565b60006001836004811115610ebe57610ebe611feb565b1490506000805b89811015610fd657888882818110610edf57610edf612728565b9050602002016020810190610ef4919061273e565b61ffff16600003610f185760405163cd53609f60e01b815260040160405180910390fd5b610f738b8b83818110610f2d57610f2d612728565b9050602002016020810190610f4291906120f5565b868b8b85818110610f5557610f55612728565b9050602002016020810190610f6a919061273e565b61ffff1661163c565b82019150610fce8b8b83818110610f8c57610f8c612728565b9050602002016020810190610fa191906120f5565b8a8a84818110610fb357610fb3612728565b9050602002016020810190610fc8919061273e565b8561189f565b600101610ec5565b50803414610ff757604051632f4613eb60e01b815260040160405180910390fd5b50505050505050505050565b336001600160a01b038216148061102157506001600160a01b038116155b1561103f5760405163a6c1146b60e01b815260040160405180910390fd5b3360008181526008602052604080822080546001600160a01b0319166001600160a01b03861690811790915590519092917fbc3292102fa77e083913064b282926717cdfaede4d35f553d66366c0a3da755a91a350565b6009546001600160a01b031633146110c05760405162461bcd60e51b8152600401610c29906125fd565b8281146110e05760405163512509d360e11b815260040160405180910390fd5b60005b8381101561114b5761114385858381811061110057611100612728565b905060200201602081019061111591906120f5565b84848481811061112757611127612728565b905060200201602081019061113c919061273e565b600061189f565b6001016110e3565b5050505050565b606060038054610932906125c3565b336000908152600860205260409020546001600160a01b0316158015906111855750805b156111a35760405163c066bae760e01b815260040160405180910390fd5b610a3a8282611b1b565b600b5460ff166111d057604051631b45eaeb60e21b815260040160405180910390fd5b60005b8151811015611208576112008282815181106111f1576111f1612728565b60200260200101516001611b87565b6001016111d3565b50604080516080810182526001600160a01b037f000000000000000000000000026234c69cdfa4dc0c7f01806df6b9d63e238b80811682527f000000000000000000000000fab41b4a7f38676dcee8b811f67e68e71b5e50b6811660208301527f000000000000000000000000abd894720127e8a3bd048c7228781ee2607cea7e8116928201929092527f000000000000000000000000072d62047b03b9ee68596557aee848188422150b909116606082015260005b6004811015610d325760008282600481106112db576112db612728565b6020908102919091015185516040805133602482015260448082019390935281518082039093018352606401815292810180516001600160e01b03166391ff7e0160e01b17905291516001600160a01b039091169161133991612762565b6000604051808303816000865af19150503d8060008114611376576040519150601f19603f3d011682016040523d82523d6000602084013e61137b565b606091505b505090508061139c576040516248195d60e01b815260040160405180910390fd5b50806113a781612794565b9150506112be565b6009546001600160a01b031633146113d95760405162461bcd60e51b8152600401610c29906125fd565b600b805460ff1916911515919091179055565b6113f7848484610a3e565b6001600160a01b0383163b156114305761141384848484611cbf565b611430576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061144182611789565b61145e57604051630a14c4b560e41b815260040160405180910390fd5b6000611468611daa565b9050805160000361148857604051806020016040528060008152506114b3565b8061149284611db9565b6040516020016114a39291906127ad565b6040516020818303038152906040525b9392505050565b6009546001600160a01b031633146114e45760405162461bcd60e51b8152600401610c29906125fd565b8281146115045760405163512509d360e11b815260040160405180910390fd5b60005b8381101561114b5782828281811061152157611521612728565b90506020020135600c600087878581811061153e5761153e612728565b9050602002016020810190611553919061225b565b600481111561156457611564611feb565b600481111561157557611575611feb565b81526020810191909152604001600020558061159081612794565b915050611507565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6009546001600160a01b031633146115f05760405162461bcd60e51b8152600401610c29906125fd565b600980546001600160a01b0319166001600160a01b03831690811790915560405133907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a350565b60008083600481111561165157611651611feb565b0361166f5760405163b7b2409760e01b815260040160405180910390fd5b600283600481111561168357611683611feb565b11156116dd5781600d60008660038111156116a0576116a0611feb565b60038111156116b1576116b1611feb565b81526020810191909152604001600020600101546116d891906001600160401b03166127dc565b611733565b81600d60008660038111156116f4576116f4611feb565b600381111561170557611705611feb565b81526020810191909152604001600020600101546117339190600160401b90046001600160401b03166127dc565b949350505050565b60006301ffc9a760e01b6001600160e01b03198316148061176c57506380ac58cd60e01b6001600160e01b03198316145b8061080d5750506001600160e01b031916635b5e139f60e01b1490565b600080548210801561080d575050600090815260046020526040902054600160e01b161590565b610a3a82826001611dfd565b60008181526004602052604081205490600160e01b82169003611824578060000361181f57600054821061180357604051636f96cda160e11b815260040160405180910390fd5b5b50600019016000818152600460205260409020548015611804575b919050565b604051636f96cda160e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061188283838684611ea4565b611430576040516309bde33960e01b815260040160405180910390fd5b6000600d60008560038111156118b7576118b7611feb565b60038111156118c8576118c8611feb565b81526020810191909152604001600020805490915061ffff660100000000000082048116916119019186916401000000009004166127f3565b61ffff16111561192457604051630f0c37b960e11b815260040160405180910390fd5b805461ffff640100000000808304821686019091160265ffff00000000199091161781558115611a1b578054336000908152600e6020526040812061ffff600160401b90930483169286169187600381111561198257611982611feb565b600381111561199357611993611feb565b8152602001908152602001600020546119ac9190612815565b11156119cb57604051636c80554560e11b815260040160405180910390fd5b336000908152600e6020526040812061ffff8516918660038111156119f2576119f2611feb565b6003811115611a0357611a03611feb565b81526020810191909152604001600020805490910190555b6000846003811115611a2f57611a2f611feb565b03611a4757611a42338461ffff16611ede565b611430565b805460405133602482015261ffff85166044820152600091600160501b81046001600160a01b03169160e09190911b9060640160408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909416939093179092529051611ab89190612762565b6000604051808303816000865af19150503d8060008114611af5576040519150601f19603f3d011682016040523d82523d6000602084013e611afa565b606091505b505090508061114b576040516248195d60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000611b92836117bc565b905080600080611bb086600090815260066020526040902080549091565b915091508415611bf057611bc5818433610a93565b611bf057611bd38333611598565b611bf057604051632ce44b5f60e11b815260040160405180910390fd5b8015611bfb57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003611c8957600186016000818152600460205260408120549003611c87576000548114611c875760008181526004602052604090208590555b505b60405186906000906001600160a01b03861690600080516020612883833981519152908390a45050600180548101905550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611cf4903390899088908890600401612828565b6020604051808303816000875af1925050508015611d2f575060408051601f3d908101601f19168201909252611d2c91810190612865565b60015b611d8d573d808015611d5d576040519150601f19603f3d011682016040523d82523d6000602084013e611d62565b606091505b508051600003611d85576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600a8054610932906125c3565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611dd35750819003601f19909101908152919050565b6000611e0883610d6d565b90508115611e4757336001600160a01b03821614611e4757611e2a8133611598565b611e47576040516367d9dca160e11b815260040160405180910390fd5b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b60008315611ed6578360051b8501855b803580851160051b94855260209485185260406000209301818110611eb45750505b501492915050565b6000805490829003611f035760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083906000805160206128838339815191528180a4600183015b818114611f8e5780836000600080516020612883833981519152600080a4600101611f68565b5081600003611faf57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b031981168114610d1457600080fd5b600060208284031215611fe057600080fd5b81356114b381611fb8565b634e487b7160e01b600052602160045260246000fd5b602081016005831061202357634e487b7160e01b600052602160045260246000fd5b91905290565b60005b8381101561204457818101518382015260200161202c565b50506000910152565b60008151808452612065816020860160208601612029565b601f01601f19169290920160200192915050565b6020815260006114b3602083018461204d565b60006020828403121561209e57600080fd5b5035919050565b80356001600160a01b038116811461181f57600080fd5b600080604083850312156120cf57600080fd5b6120d8836120a5565b946020939093013593505050565b80356004811061181f57600080fd5b60006020828403121561210757600080fd5b6114b3826120e6565b60008060006060848603121561212557600080fd5b61212e846120a5565b925061213c602085016120a5565b9150604084013590509250925092565b60006020828403121561215e57600080fd5b6114b3826120a5565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156121a5576121a5612167565b604052919050565b60006001600160401b038311156121c6576121c6612167565b6121d9601f8401601f191660200161217d565b90508281528383830111156121ed57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561221657600080fd5b81356001600160401b0381111561222c57600080fd5b8201601f8101841361223d57600080fd5b611733848235602084016121ad565b80356005811061181f57600080fd5b60006020828403121561226d57600080fd5b6114b38261224c565b60008083601f84011261228857600080fd5b5081356001600160401b0381111561229f57600080fd5b6020830191508360208260051b85010111156122ba57600080fd5b9250929050565b600080600080600080606087890312156122da57600080fd5b86356001600160401b03808211156122f157600080fd5b6122fd8a838b01612276565b9098509650602089013591508082111561231657600080fd5b6123228a838b01612276565b9096509450604089013591508082111561233b57600080fd5b5061234889828a01612276565b979a9699509497509295939492505050565b6000806000806040858703121561237057600080fd5b84356001600160401b038082111561238757600080fd5b61239388838901612276565b909650945060208701359150808211156123ac57600080fd5b506123b987828801612276565b95989497509550505050565b8035801515811461181f57600080fd5b600080604083850312156123e857600080fd5b6123f1836120a5565b91506123ff602084016123c5565b90509250929050565b6000602080838503121561241b57600080fd5b82356001600160401b038082111561243257600080fd5b818501915085601f83011261244657600080fd5b81358181111561245857612458612167565b8060051b915061246984830161217d565b818152918301840191848101908884111561248357600080fd5b938501935b838510156124a157843582529385019390850190612488565b98975050505050505050565b6000602082840312156124bf57600080fd5b6114b3826123c5565b600080604083850312156124db57600080fd5b6124e4836120a5565b91506123ff602084016120e6565b6000806000806080858703121561250857600080fd5b612511856120a5565b935061251f602086016120a5565b92506040850135915060608501356001600160401b0381111561254157600080fd5b8501601f8101871361255257600080fd5b612561878235602084016121ad565b91505092959194509250565b6000806040838503121561258057600080fd5b612589836120a5565b91506123ff602084016120a5565b6000806000606084860312156125ac57600080fd5b6125b5846120e6565b925061213c6020850161224c565b600181811c908216806125d757607f821691505b6020821081036125f757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b601f821115610d3257600081815260208120601f850160051c8101602086101561264a5750805b601f850160051c820191505b81811015610bc757828155600101612656565b81516001600160401b0381111561268257612682612167565b6126968161269084546125c3565b84612623565b602080601f8311600181146126cb57600084156126b35750858301515b600019600386901b1c1916600185901b178555610bc7565b600085815260208120601f198616915b828110156126fa578886015182559484019460019091019084016126db565b50858210156127185787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561275057600080fd5b813561ffff811681146114b357600080fd5b60008251612774818460208701612029565b9190910192915050565b634e487b7160e01b600052601160045260246000fd5b6000600182016127a6576127a661277e565b5060010190565b600083516127bf818460208801612029565b8351908301906127d3818360208801612029565b01949350505050565b808202811582820484141761080d5761080d61277e565b61ffff81811683821601908082111561280e5761280e61277e565b5092915050565b8082018082111561080d5761080d61277e565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061285b9083018461204d565b9695505050505050565b60006020828403121561287757600080fd5b81516114b381611fb856feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220687ce82ebe95725f1e28375de345fd2fe644b11457687724fdd0b7eb97e4802064736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
d884a7f4dc3b2d7f541fe56203187e7f6af51e0b363749e5377899950b921253f7b1b75cd2e0090574b1f47e622c1f17816675155518ef03b4ecb8e9a48ecac5a420c3f26c149bd6484c34725250d9de896d3d6f5173d313f023fa0e57944730000000000000000000000000000000000000000000000000000000006408fc00000000000000000000000000026234c69cdfa4dc0c7f01806df6b9d63e238b80000000000000000000000000fab41b4a7f38676dcee8b811f67e68e71b5e50b6000000000000000000000000abd894720127e8a3bd048c7228781ee2607cea7e000000000000000000000000072d62047b03b9ee68596557aee848188422150b0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f6e75636c6561726e6572642e6d7970696e6174612e636c6f75642f697066732f516d62316e624a6e54784a5a477850366b6a4b67474d533245624553475455747043513431764a536876324378752f000000000000000000
-----Decoded View---------------
Arg [0] : roots (bytes32[3]): System.Byte[],System.Byte[],System.Byte[]
Arg [1] : _startTime (uint64): 1678310400
Arg [2] : _marauders (address): 0x026234c69cdFa4dc0c7f01806Df6B9d63E238B80
Arg [3] : _archer (address): 0xfAb41B4A7F38676DCEe8B811F67E68e71B5E50b6
Arg [4] : _merch (address): 0xaBD894720127e8A3bd048C7228781ee2607cea7e
Arg [5] : _serum (address): 0x072D62047b03B9eE68596557aee848188422150B
Arg [6] : _uri (string): https://nuclearnerd.mypinata.cloud/ipfs/Qmb1nbJnTxJZGxP6kjKgGMS2EbESGTUtpCQ41vJShv2Cxu/
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : d884a7f4dc3b2d7f541fe56203187e7f6af51e0b363749e5377899950b921253
Arg [1] : f7b1b75cd2e0090574b1f47e622c1f17816675155518ef03b4ecb8e9a48ecac5
Arg [2] : a420c3f26c149bd6484c34725250d9de896d3d6f5173d313f023fa0e57944730
Arg [3] : 000000000000000000000000000000000000000000000000000000006408fc00
Arg [4] : 000000000000000000000000026234c69cdfa4dc0c7f01806df6b9d63e238b80
Arg [5] : 000000000000000000000000fab41b4a7f38676dcee8b811f67e68e71b5e50b6
Arg [6] : 000000000000000000000000abd894720127e8a3bd048c7228781ee2607cea7e
Arg [7] : 000000000000000000000000072d62047b03b9ee68596557aee848188422150b
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000057
Arg [10] : 68747470733a2f2f6e75636c6561726e6572642e6d7970696e6174612e636c6f
Arg [11] : 75642f697066732f516d62316e624a6e54784a5a477850366b6a4b67474d5332
Arg [12] : 45624553475455747043513431764a536876324378752f000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.