ERC-721
Overview
Max Total Supply
888 MIZUKI
Holders
459
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MIZUKILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Mizuki_Daydreams_NFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT // @author: @MizukiReloadedTeam pragma solidity ^0.8.4; import './ERC721A.sol'; import './ERC721AQueryable.sol'; import './Ownable.sol'; contract Mizuki_Daydreams_NFT is ERC721A, ERC721AQueryable, Ownable { constructor() ERC721A("Mizuki Daydreams", "MIZUKI") {} uint256 public constant maxMizukiTokens = 888; bool public mintEnabled = false; bool public teamMintComplete = false; string public baseTokenURI = "https://api.mintmizuki.xyz/metadata/"; function flipSale() public onlyOwner { mintEnabled = !mintEnabled; } function mint(uint amount) external { require(mintEnabled == true, "Mint is not open yet"); require(_numberMinted(msg.sender) + amount <= 2, "Max 2 per wallet"); require(_totalMinted() + amount <= maxMizukiTokens, "Mizuki's have all been claimed!"); _mint(msg.sender, amount); } function teamMint() external onlyOwner { require(teamMintComplete == false, "Team mint already complete!"); teamMintComplete = true; _mint(msg.sender, 14); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 { 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; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @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 See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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 ''; } /** * @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)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _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 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` 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 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _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 { 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 Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _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)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { 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 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; } /** * @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 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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721AQueryable.sol'; import './ERC721A.sol'; /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * - `extraData` = `0` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * - `extraData` = `<Extra data when token was burned>` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` * - `extraData` = `<Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // 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 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of an ERC721AQueryable compliant contract. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMizukiTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMintComplete","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6008805461ffff60a01b1916905560e060405260246080818152906200282a60a039805162000037916009916020909101906200011d565b503480156200004557600080fd5b50604080518082018252601081526f4d697a756b6920446179647265616d7360801b6020808301918252835180850190945260068452654d495a554b4960d01b9084015281519192916200009c916002916200011d565b508051620000b29060039060208401906200011d565b5050600160005550620000c533620000cb565b62000200565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012b90620001c3565b90600052602060002090601f0160209004810192826200014f57600085556200019a565b82601f106200016a57805160ff19168380011785556200019a565b828001600101855582156200019a579182015b828111156200019a5782518255916020019190600101906200017d565b50620001a8929150620001ac565b5090565b5b80821115620001a85760008155600101620001ad565b600181811c90821680620001d857607f821691505b60208210811415620001fa57634e487b7160e01b600052602260045260246000fd5b50919050565b61261a80620002106000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638462151c11610104578063b94c8c0e116100a2578063d123973011610071578063d123973014610425578063d547cfb71461044a578063e985e9c514610452578063f2fde38b1461049b57600080fd5b8063b94c8c0e146103c4578063ba7a86b8146103ea578063c23dc68f146103f2578063c87b56dd1461041257600080fd5b806399a2557a116100de57806399a2557a14610378578063a0712d681461038b578063a22cb4651461039e578063b88d4fde146103b157600080fd5b80638462151c146103325780638da5cb5b1461035257806395d89b411461037057600080fd5b806342842e0e116101715780636352211e1161014b5780636352211e146102fc57806370a082311461030f578063715018a6146103225780637ba5e6211461032a57600080fd5b806342842e0e146102b657806355f804b3146102c95780635bbb2177146102dc57600080fd5b8063094766c1116101ad578063094766c114610249578063095ea7b31461026057806318160ddd1461027557806323b872dd146102a357600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e23660046121c5565b6104ae565b60405190151581526020015b60405180910390f35b610204610593565b6040516101f391906123e5565b61022461021f366004612248565b610625565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101f3565b61025261037881565b6040519081526020016101f3565b61027361026e3660046120bb565b61068f565b005b600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01610252565b6102736102b1366004611fc7565b6107a4565b6102736102c4366004611fc7565b610a56565b6102736102d73660046121ff565b610a76565b6102ef6102ea366004612118565b610b13565b6040516101f39190612323565b61022461030a366004612248565b610bff565b61025261031d366004611f79565b610c0a565b610273610c8c565b610273610d19565b610345610340366004611f79565b610de7565b6040516101f391906123ad565b60085473ffffffffffffffffffffffffffffffffffffffff16610224565b610204610f19565b6103456103863660046120e5565b610f28565b610273610399366004612248565b6110f4565b6102736103ac36600461207f565b6112be565b6102736103bf366004612003565b6113a5565b6008546101e7907501000000000000000000000000000000000000000000900460ff1681565b610273611415565b610405610400366004612248565b611567565b6040516101f391906123f8565b610204610420366004612248565b6115ef565b6008546101e79074010000000000000000000000000000000000000000900460ff1681565b61020461168c565b6101e7610460366004611f94565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102736104a9366004611f79565b61171a565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061054157507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061058d57507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546105a290612504565b80601f01602080910402602001604051908101604052809291908181526020018280546105ce90612504565b801561061b5780601f106105f05761010080835404028352916020019161061b565b820191906000526020600020905b8154815290600101906020018083116105fe57829003601f168201915b5050505050905090565b600061063082611847565b610666576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061069a82610bff565b90503373ffffffffffffffffffffffffffffffffffffffff8216146107235773ffffffffffffffffffffffffffffffffffffffff8116600090815260076020908152604080832033845290915290205460ff16610723576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006107af82611895565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610816576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080543380821473ffffffffffffffffffffffffffffffffffffffff8816909114176108b35773ffffffffffffffffffffffffffffffffffffffff8616600090815260076020908152604080832033845290915290205460ff166108b3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516610900576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b801561090b57600082555b73ffffffffffffffffffffffffffffffffffffffff86811660009081526005602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260409020557c020000000000000000000000000000000000000000000000000000000083166109f357600184016000818152600460205260409020546109f15760005481146109f15760008181526004602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610a71838383604051806020016040528060008152506113a5565b505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314610afc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051610b0f906009906020840190611e41565b5050565b805160609060008167ffffffffffffffff811115610b3357610b33612587565b604051908082528060200260200182016040528015610ba357816020015b6040805160808101825260008082526020808301829052928201819052606082015282527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff909201910181610b515790505b50905060005b828114610bf757610bd2858281518110610bc557610bc5612558565b6020026020010151611567565b828281518110610be457610be4612558565b6020908102919091010152600101610ba9565b509392505050565b600061058d82611895565b600073ffffffffffffffffffffffffffffffffffffffff8216610c59576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b60085473ffffffffffffffffffffffffffffffffffffffff163314610d0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b610d17600061194e565b565b60085473ffffffffffffffffffffffffffffffffffffffff163314610d9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116740100000000000000000000000000000000000000009182900460ff1615909102179055565b60606000806000610df785610c0a565b905060008167ffffffffffffffff811115610e1457610e14612587565b604051908082528060200260200182016040528015610e3d578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081019190915290915060015b838614610f0d57610e78816119c5565b9150816040015115610e8957610f05565b815173ffffffffffffffffffffffffffffffffffffffff1615610eab57815194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f055780838780600101985081518110610ef857610ef8612558565b6020026020010181815250505b600101610e68565b50909695505050505050565b6060600380546105a290612504565b6060818310610f63576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f6f60005490565b90506001851015610f7f57600194505b80841115610f8b578093505b6000610f9687610c0a565b905084861015610fb55785850381811015610faf578091505b50610fb9565b5060005b60008167ffffffffffffffff811115610fd457610fd4612587565b604051908082528060200260200182016040528015610ffd578160200160208202803683370190505b509050816110105793506110ed92505050565b600061101b88611567565b90506000816040015161102c575080515b885b88811415801561103e5750848714155b156110e15761104c816119c5565b925082604001511561105d576110d9565b825173ffffffffffffffffffffffffffffffffffffffff161561107f57825191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d957808488806001019950815181106110cc576110cc612558565b6020026020010181815250505b60010161102e565b50505092835250909150505b9392505050565b60085474010000000000000000000000000000000000000000900460ff16151560011461117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4d696e74206973206e6f74206f70656e207965740000000000000000000000006044820152606401610af3565b3360009081526005602052604090819020546002916111a89184911c67ffffffffffffffff16612499565b1115611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4d61782032207065722077616c6c6574000000000000000000000000000000006044820152606401610af3565b6103788161123f6000547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b6112499190612499565b11156112b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4d697a756b692773206861766520616c6c206265656e20636c61696d656421006044820152606401610af3565b6112bb3382611a6a565b50565b73ffffffffffffffffffffffffffffffffffffffff821633141561130e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113b08484846107a4565b73ffffffffffffffffffffffffffffffffffffffff83163b1561140f576113d984848484611ba1565b61140f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b6008547501000000000000000000000000000000000000000000900460ff161561151c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5465616d206d696e7420616c726561647920636f6d706c6574652100000000006044820152606401610af3565b600880547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff167501000000000000000000000000000000000000000000179055610d1733600e611a6a565b60408051608081018252600080825260208201819052918101829052606081019190915260408051608081018252600080825260208201819052918101829052606081019190915260018310806115c057506000548310155b156115cb5792915050565b6115d4836119c5565b90508060400151156115e65792915050565b6110ed83611d27565b60606115fa82611847565b611630576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061163a611dc5565b905080516000141561165b57604051806020016040528060008152506110ed565b8061166584611dd4565b6040516020016116769291906122ab565b6040516020818303038152906040529392505050565b6009805461169990612504565b80601f01602080910402602001604051908101604052809291908181526020018280546116c590612504565b80156117125780601f106116e757610100808354040283529160200191611712565b820191906000526020600020905b8154815290600101906020018083116116f557829003601f168201915b505050505081565b60085473ffffffffffffffffffffffffffffffffffffffff16331461179b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b73ffffffffffffffffffffffffffffffffffffffff811661183e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610af3565b6112bb8161194e565b60008160011115801561185b575060005482105b801561058d5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6000818060011161191c5760005481101561191c576000818152600460205260409020547c0100000000000000000000000000000000000000000000000000000000811661191a575b806110ed57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600460205260409020546118de565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461058d906040805160808101825273ffffffffffffffffffffffffffffffffffffffff8316815260a083901c67ffffffffffffffff1660208201527c0100000000000000000000000000000000000000000000000000000000831615159181019190915260e89190911c606082015290565b60005473ffffffffffffffffffffffffffffffffffffffff8316611aba576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81611af1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b60405160018301929073ffffffffffffffffffffffffffffffffffffffff8716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b485760005550505050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611bfc9033908990889088906004016122da565b602060405180830381600087803b158015611c1657600080fd5b505af1925050508015611c64575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611c61918101906121e2565b60015b611cd8573d808015611c92576040519150601f19603f3d011682016040523d82523d6000602084013e611c97565b606091505b508051611cd0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b60408051608081018252600080825260208201819052918101829052606081019190915261058d611d5783611895565b6040805160808101825273ffffffffffffffffffffffffffffffffffffffff8316815260a083901c67ffffffffffffffff1660208201527c0100000000000000000000000000000000000000000000000000000000831615159181019190915260e89190911c606082015290565b6060600980546105a290612504565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611e1157600183039250600a81066030018353600a9004611df3565b508190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909101908152919050565b828054611e4d90612504565b90600052602060002090601f016020900481019282611e6f5760008555611eb5565b82601f10611e8857805160ff1916838001178555611eb5565b82800160010185558215611eb5579182015b82811115611eb5578251825591602001919060010190611e9a565b50611ec1929150611ec5565b5090565b5b80821115611ec15760008155600101611ec6565b600067ffffffffffffffff831115611ef457611ef4612587565b611f2560207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601160161244a565b9050828152838383011115611f3957600080fd5b828260208301376000602084830101529392505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611f7457600080fd5b919050565b600060208284031215611f8b57600080fd5b6110ed82611f50565b60008060408385031215611fa757600080fd5b611fb083611f50565b9150611fbe60208401611f50565b90509250929050565b600080600060608486031215611fdc57600080fd5b611fe584611f50565b9250611ff360208501611f50565b9150604084013590509250925092565b6000806000806080858703121561201957600080fd5b61202285611f50565b935061203060208601611f50565b925060408501359150606085013567ffffffffffffffff81111561205357600080fd5b8501601f8101871361206457600080fd5b61207387823560208401611eda565b91505092959194509250565b6000806040838503121561209257600080fd5b61209b83611f50565b9150602083013580151581146120b057600080fd5b809150509250929050565b600080604083850312156120ce57600080fd5b6120d783611f50565b946020939093013593505050565b6000806000606084860312156120fa57600080fd5b61210384611f50565b95602085013595506040909401359392505050565b6000602080838503121561212b57600080fd5b823567ffffffffffffffff8082111561214357600080fd5b818501915085601f83011261215757600080fd5b81358181111561216957612169612587565b8060051b915061217a84830161244a565b8181528481019084860184860187018a101561219557600080fd5b600095505b838610156121b857803583526001959095019491860191860161219a565b5098975050505050505050565b6000602082840312156121d757600080fd5b81356110ed816125b6565b6000602082840312156121f457600080fd5b81516110ed816125b6565b60006020828403121561221157600080fd5b813567ffffffffffffffff81111561222857600080fd5b8201601f8101841361223957600080fd5b611d1f84823560208401611eda565b60006020828403121561225a57600080fd5b5035919050565b600081518084526122798160208601602086016124d8565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516122bd8184602088016124d8565b8351908301906122d18183602088016124d8565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526123196080830184612261565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610f0d5761239a83855173ffffffffffffffffffffffffffffffffffffffff815116825267ffffffffffffffff602082015116602083015260408101511515604083015262ffffff60608201511660608301525050565b928401926080929092019160010161233f565b6020808252825182820181905260009190848201906040850190845b81811015610f0d578351835292840192918401916001016123c9565b6020815260006110ed6020830184612261565b815173ffffffffffffffffffffffffffffffffffffffff16815260208083015167ffffffffffffffff169082015260408083015115159082015260608083015162ffffff16908201526080810161058d565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561249157612491612587565b604052919050565b600082198211156124d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b60005b838110156124f35781810151838201526020016124db565b8381111561140f5750506000910152565b600181811c9082168061251857607f821691505b60208210811415612552577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff00000000000000000000000000000000000000000000000000000000811681146112bb57600080fdfea2646970667358221220a5bc957906726ab7bd3ba686b806a8276d146834149b6a726864ed6c211c6d6164736f6c6343000807003368747470733a2f2f6170692e6d696e746d697a756b692e78797a2f6d657461646174612f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638462151c11610104578063b94c8c0e116100a2578063d123973011610071578063d123973014610425578063d547cfb71461044a578063e985e9c514610452578063f2fde38b1461049b57600080fd5b8063b94c8c0e146103c4578063ba7a86b8146103ea578063c23dc68f146103f2578063c87b56dd1461041257600080fd5b806399a2557a116100de57806399a2557a14610378578063a0712d681461038b578063a22cb4651461039e578063b88d4fde146103b157600080fd5b80638462151c146103325780638da5cb5b1461035257806395d89b411461037057600080fd5b806342842e0e116101715780636352211e1161014b5780636352211e146102fc57806370a082311461030f578063715018a6146103225780637ba5e6211461032a57600080fd5b806342842e0e146102b657806355f804b3146102c95780635bbb2177146102dc57600080fd5b8063094766c1116101ad578063094766c114610249578063095ea7b31461026057806318160ddd1461027557806323b872dd146102a357600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e23660046121c5565b6104ae565b60405190151581526020015b60405180910390f35b610204610593565b6040516101f391906123e5565b61022461021f366004612248565b610625565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101f3565b61025261037881565b6040519081526020016101f3565b61027361026e3660046120bb565b61068f565b005b600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01610252565b6102736102b1366004611fc7565b6107a4565b6102736102c4366004611fc7565b610a56565b6102736102d73660046121ff565b610a76565b6102ef6102ea366004612118565b610b13565b6040516101f39190612323565b61022461030a366004612248565b610bff565b61025261031d366004611f79565b610c0a565b610273610c8c565b610273610d19565b610345610340366004611f79565b610de7565b6040516101f391906123ad565b60085473ffffffffffffffffffffffffffffffffffffffff16610224565b610204610f19565b6103456103863660046120e5565b610f28565b610273610399366004612248565b6110f4565b6102736103ac36600461207f565b6112be565b6102736103bf366004612003565b6113a5565b6008546101e7907501000000000000000000000000000000000000000000900460ff1681565b610273611415565b610405610400366004612248565b611567565b6040516101f391906123f8565b610204610420366004612248565b6115ef565b6008546101e79074010000000000000000000000000000000000000000900460ff1681565b61020461168c565b6101e7610460366004611f94565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102736104a9366004611f79565b61171a565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061054157507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061058d57507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546105a290612504565b80601f01602080910402602001604051908101604052809291908181526020018280546105ce90612504565b801561061b5780601f106105f05761010080835404028352916020019161061b565b820191906000526020600020905b8154815290600101906020018083116105fe57829003601f168201915b5050505050905090565b600061063082611847565b610666576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061069a82610bff565b90503373ffffffffffffffffffffffffffffffffffffffff8216146107235773ffffffffffffffffffffffffffffffffffffffff8116600090815260076020908152604080832033845290915290205460ff16610723576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006107af82611895565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610816576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080543380821473ffffffffffffffffffffffffffffffffffffffff8816909114176108b35773ffffffffffffffffffffffffffffffffffffffff8616600090815260076020908152604080832033845290915290205460ff166108b3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516610900576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b801561090b57600082555b73ffffffffffffffffffffffffffffffffffffffff86811660009081526005602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260409020557c020000000000000000000000000000000000000000000000000000000083166109f357600184016000818152600460205260409020546109f15760005481146109f15760008181526004602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610a71838383604051806020016040528060008152506113a5565b505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314610afc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051610b0f906009906020840190611e41565b5050565b805160609060008167ffffffffffffffff811115610b3357610b33612587565b604051908082528060200260200182016040528015610ba357816020015b6040805160808101825260008082526020808301829052928201819052606082015282527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff909201910181610b515790505b50905060005b828114610bf757610bd2858281518110610bc557610bc5612558565b6020026020010151611567565b828281518110610be457610be4612558565b6020908102919091010152600101610ba9565b509392505050565b600061058d82611895565b600073ffffffffffffffffffffffffffffffffffffffff8216610c59576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b60085473ffffffffffffffffffffffffffffffffffffffff163314610d0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b610d17600061194e565b565b60085473ffffffffffffffffffffffffffffffffffffffff163314610d9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116740100000000000000000000000000000000000000009182900460ff1615909102179055565b60606000806000610df785610c0a565b905060008167ffffffffffffffff811115610e1457610e14612587565b604051908082528060200260200182016040528015610e3d578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081019190915290915060015b838614610f0d57610e78816119c5565b9150816040015115610e8957610f05565b815173ffffffffffffffffffffffffffffffffffffffff1615610eab57815194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f055780838780600101985081518110610ef857610ef8612558565b6020026020010181815250505b600101610e68565b50909695505050505050565b6060600380546105a290612504565b6060818310610f63576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f6f60005490565b90506001851015610f7f57600194505b80841115610f8b578093505b6000610f9687610c0a565b905084861015610fb55785850381811015610faf578091505b50610fb9565b5060005b60008167ffffffffffffffff811115610fd457610fd4612587565b604051908082528060200260200182016040528015610ffd578160200160208202803683370190505b509050816110105793506110ed92505050565b600061101b88611567565b90506000816040015161102c575080515b885b88811415801561103e5750848714155b156110e15761104c816119c5565b925082604001511561105d576110d9565b825173ffffffffffffffffffffffffffffffffffffffff161561107f57825191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d957808488806001019950815181106110cc576110cc612558565b6020026020010181815250505b60010161102e565b50505092835250909150505b9392505050565b60085474010000000000000000000000000000000000000000900460ff16151560011461117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4d696e74206973206e6f74206f70656e207965740000000000000000000000006044820152606401610af3565b3360009081526005602052604090819020546002916111a89184911c67ffffffffffffffff16612499565b1115611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4d61782032207065722077616c6c6574000000000000000000000000000000006044820152606401610af3565b6103788161123f6000547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b6112499190612499565b11156112b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4d697a756b692773206861766520616c6c206265656e20636c61696d656421006044820152606401610af3565b6112bb3382611a6a565b50565b73ffffffffffffffffffffffffffffffffffffffff821633141561130e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113b08484846107a4565b73ffffffffffffffffffffffffffffffffffffffff83163b1561140f576113d984848484611ba1565b61140f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b6008547501000000000000000000000000000000000000000000900460ff161561151c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5465616d206d696e7420616c726561647920636f6d706c6574652100000000006044820152606401610af3565b600880547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff167501000000000000000000000000000000000000000000179055610d1733600e611a6a565b60408051608081018252600080825260208201819052918101829052606081019190915260408051608081018252600080825260208201819052918101829052606081019190915260018310806115c057506000548310155b156115cb5792915050565b6115d4836119c5565b90508060400151156115e65792915050565b6110ed83611d27565b60606115fa82611847565b611630576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061163a611dc5565b905080516000141561165b57604051806020016040528060008152506110ed565b8061166584611dd4565b6040516020016116769291906122ab565b6040516020818303038152906040529392505050565b6009805461169990612504565b80601f01602080910402602001604051908101604052809291908181526020018280546116c590612504565b80156117125780601f106116e757610100808354040283529160200191611712565b820191906000526020600020905b8154815290600101906020018083116116f557829003601f168201915b505050505081565b60085473ffffffffffffffffffffffffffffffffffffffff16331461179b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af3565b73ffffffffffffffffffffffffffffffffffffffff811661183e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610af3565b6112bb8161194e565b60008160011115801561185b575060005482105b801561058d5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6000818060011161191c5760005481101561191c576000818152600460205260409020547c0100000000000000000000000000000000000000000000000000000000811661191a575b806110ed57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600460205260409020546118de565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461058d906040805160808101825273ffffffffffffffffffffffffffffffffffffffff8316815260a083901c67ffffffffffffffff1660208201527c0100000000000000000000000000000000000000000000000000000000831615159181019190915260e89190911c606082015290565b60005473ffffffffffffffffffffffffffffffffffffffff8316611aba576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81611af1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b60405160018301929073ffffffffffffffffffffffffffffffffffffffff8716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b485760005550505050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611bfc9033908990889088906004016122da565b602060405180830381600087803b158015611c1657600080fd5b505af1925050508015611c64575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611c61918101906121e2565b60015b611cd8573d808015611c92576040519150601f19603f3d011682016040523d82523d6000602084013e611c97565b606091505b508051611cd0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b60408051608081018252600080825260208201819052918101829052606081019190915261058d611d5783611895565b6040805160808101825273ffffffffffffffffffffffffffffffffffffffff8316815260a083901c67ffffffffffffffff1660208201527c0100000000000000000000000000000000000000000000000000000000831615159181019190915260e89190911c606082015290565b6060600980546105a290612504565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611e1157600183039250600a81066030018353600a9004611df3565b508190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0909101908152919050565b828054611e4d90612504565b90600052602060002090601f016020900481019282611e6f5760008555611eb5565b82601f10611e8857805160ff1916838001178555611eb5565b82800160010185558215611eb5579182015b82811115611eb5578251825591602001919060010190611e9a565b50611ec1929150611ec5565b5090565b5b80821115611ec15760008155600101611ec6565b600067ffffffffffffffff831115611ef457611ef4612587565b611f2560207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601160161244a565b9050828152838383011115611f3957600080fd5b828260208301376000602084830101529392505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611f7457600080fd5b919050565b600060208284031215611f8b57600080fd5b6110ed82611f50565b60008060408385031215611fa757600080fd5b611fb083611f50565b9150611fbe60208401611f50565b90509250929050565b600080600060608486031215611fdc57600080fd5b611fe584611f50565b9250611ff360208501611f50565b9150604084013590509250925092565b6000806000806080858703121561201957600080fd5b61202285611f50565b935061203060208601611f50565b925060408501359150606085013567ffffffffffffffff81111561205357600080fd5b8501601f8101871361206457600080fd5b61207387823560208401611eda565b91505092959194509250565b6000806040838503121561209257600080fd5b61209b83611f50565b9150602083013580151581146120b057600080fd5b809150509250929050565b600080604083850312156120ce57600080fd5b6120d783611f50565b946020939093013593505050565b6000806000606084860312156120fa57600080fd5b61210384611f50565b95602085013595506040909401359392505050565b6000602080838503121561212b57600080fd5b823567ffffffffffffffff8082111561214357600080fd5b818501915085601f83011261215757600080fd5b81358181111561216957612169612587565b8060051b915061217a84830161244a565b8181528481019084860184860187018a101561219557600080fd5b600095505b838610156121b857803583526001959095019491860191860161219a565b5098975050505050505050565b6000602082840312156121d757600080fd5b81356110ed816125b6565b6000602082840312156121f457600080fd5b81516110ed816125b6565b60006020828403121561221157600080fd5b813567ffffffffffffffff81111561222857600080fd5b8201601f8101841361223957600080fd5b611d1f84823560208401611eda565b60006020828403121561225a57600080fd5b5035919050565b600081518084526122798160208601602086016124d8565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600083516122bd8184602088016124d8565b8351908301906122d18183602088016124d8565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526123196080830184612261565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610f0d5761239a83855173ffffffffffffffffffffffffffffffffffffffff815116825267ffffffffffffffff602082015116602083015260408101511515604083015262ffffff60608201511660608301525050565b928401926080929092019160010161233f565b6020808252825182820181905260009190848201906040850190845b81811015610f0d578351835292840192918401916001016123c9565b6020815260006110ed6020830184612261565b815173ffffffffffffffffffffffffffffffffffffffff16815260208083015167ffffffffffffffff169082015260408083015115159082015260608083015162ffffff16908201526080810161058d565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561249157612491612587565b604052919050565b600082198211156124d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b60005b838110156124f35781810151838201526020016124db565b8381111561140f5750506000910152565b600181811c9082168061251857607f821691505b60208210811415612552577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff00000000000000000000000000000000000000000000000000000000811681146112bb57600080fdfea2646970667358221220a5bc957906726ab7bd3ba686b806a8276d146834149b6a726864ed6c211c6d6164736f6c63430008070033
Deployed Bytecode Sourcemap
180:1300:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5653:607:1;;;;;;:::i;:::-;;:::i;:::-;;;8640:14:7;;8633:22;8615:41;;8603:2;8588:18;5653:607:1;;;;;;;;11161:98;;;:::i;:::-;;;;;;;:::i;13048:200::-;;;;;;:::i;:::-;;:::i;:::-;;;6538:42:7;6526:55;;;6508:74;;6496:2;6481:18;13048:200:1;6362:226:7;317:45:5;;359:3;317:45;;;;;11488:25:7;;;11476:2;11461:18;317:45:5;11342:177:7;12611:376:1;;;;;;:::i;:::-;;:::i;:::-;;4736:309;1355:1:5;4998:12:1;4789:7;4982:13;:28;:46;;4736:309;;22055:2739;;;;;;:::i;:::-;;:::i;13912:179::-;;;;;;:::i;:::-;;:::i;1372:101:5:-;;;;;;:::i;:::-;;:::i;1654:459:2:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10957:142:1:-;;;;;;:::i;:::-;;:::i;6319:221::-;;;;;;:::i;:::-;;:::i;1714:103:6:-;;;:::i;528:82:5:-;;;:::i;5372:871:2:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1063:87:6:-;1136:6;;;;1063:87;;11323:102:1;;;:::i;2489:2446:2:-;;;;;;:::i;:::-;;:::i;618:319:5:-;;;;;;:::i;:::-;;:::i;13315:303:1:-;;;;;;:::i;:::-;;:::i;14157:388::-;;;;;;:::i;:::-;;:::i;407:36:5:-;;;;;;;;;;;;945:189;;;:::i;1091:410:2:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;11491:313:1:-;;;;;;:::i;:::-;;:::i;369:31:5:-;;;;;;;;;;;;452:67;;;:::i;13684:162:1:-;;;;;;:::i;:::-;13804:25;;;;13781:4;13804:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;13684:162;1972:201:6;;;;;;:::i;:::-;;:::i;5653:607:1:-;5738:4;6033:25;;;;;;:101;;-1:-1:-1;6109:25:1;;;;;6033:101;:177;;;-1:-1:-1;6185:25:1;;;;;6033:177;6014:196;5653:607;-1:-1:-1;;5653:607:1:o;11161:98::-;11215:13;11247:5;11240:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11161:98;:::o;13048:200::-;13116:7;13140:16;13148:7;13140;:16::i;:::-;13135:64;;13165:34;;;;;;;;;;;;;;13135:64;-1:-1:-1;13217:24:1;;;;:15;:24;;;;;;;;;13048:200::o;12611:376::-;12683:13;12699:16;12707:7;12699;:16::i;:::-;12683:32;-1:-1:-1;32960:10:1;12730:28;;;;12726:172;;13804:25;;;13781:4;13804:25;;;:18;:25;;;;;;;;32960:10;13804:35;;;;;;;;;;12772:126;;12848:35;;;;;;;;;;;;;;12772:126;12908:24;;;;:15;:24;;;;;;:29;;;;;;;;;;;;;;12952:28;;12908:24;;12952:28;;;;;;;12673:314;12611:376;;:::o;22055:2739::-;22184:27;22214;22233:7;22214:18;:27::i;:::-;22184:57;;22297:4;22256:45;;22272:19;22256:45;;;22252:86;;22310:28;;;;;;;;;;;;;;22252:86;22350:27;20821:21;;;20652:15;20862:4;20855:36;20943:4;20927:21;;21031:26;;32960:10;21766:30;;;21478:15;21468:26;;21745:19;;;21742:55;22526:173;;13804:25;;;13781:4;13804:25;;;:18;:25;;;;;;;;32960:10;13804:35;;;;;;;;;;22607:92;;22664:35;;;;;;;;;;;;;;22607:92;22714:16;;;22710:52;;22739:23;;;;;;;;;;;;;;22710:52;22905:15;22902:157;;;23043:1;23022:19;23015:30;22902:157;23429:24;;;;;;;;:18;:24;;;;;;23427:26;;;;;;23497:22;;;;;;;;;23495:24;;-1:-1:-1;23495:24:1;;;10863:11;10839:22;10835:40;10822:62;2046:8;10822:62;23783:26;;;;:17;:26;;;;;:171;2046:8;24071:46;;24067:616;;24174:1;24164:11;;24142:19;24295:30;;;:17;:30;;;;;;24291:378;;24431:13;;24416:11;:28;24412:239;;24576:30;;;;:17;:30;;;;;:52;;;24412:239;24124:559;24067:616;24727:7;24723:2;24708:27;;24717:4;24708:27;;;;;;;;;;;;22174:2620;;;22055:2739;;;:::o;13912:179::-;14045:39;14062:4;14068:2;14072:7;14045:39;;;;;;;;;;;;:16;:39::i;:::-;13912:179;;;:::o;1372:101:5:-;1136:6:6;;1283:23;1136:6;32960:10:1;1283:23:6;1275:68;;;;;;;10550:2:7;1275:68:6;;;10532:21:7;;;10569:18;;;10562:30;10628:34;10608:18;;;10601:62;10680:18;;1275:68:6;;;;;;;;;1443:22:5;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1372:101:::0;:::o;1654:459:2:-;1827:15;;1743:23;;1802:22;1827:15;1893:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1893:36:2;;;;;;;;;;;;;;;1856:73;;1948:9;1943:123;1964:14;1959:1;:19;1943:123;;2019:32;2039:8;2048:1;2039:11;;;;;;;;:::i;:::-;;;;;;;2019:19;:32::i;:::-;2003:10;2014:1;2003:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;1980:3;;1943:123;;;-1:-1:-1;2086:10:2;1654:459;-1:-1:-1;;;1654:459:2:o;10957:142:1:-;11021:7;11063:27;11082:7;11063:18;:27::i;6319:221::-;6383:7;6406:19;;;6402:60;;6434:28;;;;;;;;;;;;;;6402:60;-1:-1:-1;6479:25:1;;;;;;:18;:25;;;;;;1022:13;6479:54;;6319:221::o;1714:103:6:-;1136:6;;1283:23;1136:6;32960:10:1;1283:23:6;1275:68;;;;;;;10550:2:7;1275:68:6;;;10532:21:7;;;10569:18;;;10562:30;10628:34;10608:18;;;10601:62;10680:18;;1275:68:6;10348:356:7;1275:68:6;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;528:82:5:-;1136:6:6;;1283:23;1136:6;32960:10:1;1283:23:6;1275:68;;;;;;;10550:2:7;1275:68:6;;;10532:21:7;;;10569:18;;;10562:30;10628:34;10608:18;;;10601:62;10680:18;;1275:68:6;10348:356:7;1275:68:6;591:11:5::1;::::0;;576:26;;::::1;591:11:::0;;;;::::1;;;590:12;576:26:::0;;::::1;;::::0;;528:82::o;5372:871:2:-;5442:16;5494:19;5527:25;5566:22;5591:16;5601:5;5591:9;:16::i;:::-;5566:41;;5621:25;5663:14;5649:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5649:29:2;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5621:57:2;;-1:-1:-1;1355:1:5;5737:461:2;5786:14;5771:11;:29;5737:461;;5837:15;5850:1;5837:12;:15::i;:::-;5825:27;;5874:9;:16;;;5870:71;;;5914:8;;5870:71;5962:14;;:28;;;5958:109;;6034:14;;;-1:-1:-1;5958:109:2;6109:5;6088:26;;:17;:26;;;6084:100;;;6164:1;6138:8;6147:13;;;;;;6138:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;6084:100;5802:3;;5737:461;;;-1:-1:-1;6218:8:2;;5372:871;-1:-1:-1;;;;;;5372:871:2:o;11323:102:1:-;11379:13;11411:7;11404:14;;;;;:::i;2489:2446:2:-;2620:16;2685:4;2676:5;:13;2672:45;;2698:19;;;;;;;;;;;;;;2672:45;2731:19;2764:17;2784:14;4487:7:1;4513:13;;4440:93;2784:14:2;2764:34;-1:-1:-1;1355:1:5;2874:5:2;:23;2870:85;;;1355:1:5;2917:23:2;;2870:85;3029:9;3022:4;:16;3018:71;;;3065:9;3058:16;;3018:71;3102:25;3130:16;3140:5;3130:9;:16::i;:::-;3102:44;;3321:4;3313:5;:12;3309:271;;;3367:12;;;3401:31;;;3397:109;;;3476:11;3456:31;;3397:109;3327:193;3309:271;;;-1:-1:-1;3564:1:2;3309:271;3593:25;3635:17;3621:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3621:32:2;-1:-1:-1;3593:60:2;-1:-1:-1;3671:22:2;3667:76;;3720:8;-1:-1:-1;3713:15:2;;-1:-1:-1;;;3713:15:2;3667:76;3884:31;3918:26;3938:5;3918:19;:26::i;:::-;3884:60;;3958:25;4200:9;:16;;;4195:90;;-1:-1:-1;4256:14:2;;4195:90;4315:5;4298:467;4327:4;4322:1;:9;;:45;;;;;4350:17;4335:11;:32;;4322:45;4298:467;;;4404:15;4417:1;4404:12;:15::i;:::-;4392:27;;4441:9;:16;;;4437:71;;;4481:8;;4437:71;4529:14;;:28;;;4525:109;;4601:14;;;-1:-1:-1;4525:109:2;4676:5;4655:26;;:17;:26;;;4651:100;;;4731:1;4705:8;4714:13;;;;;;4705:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;4651:100;4369:3;;4298:467;;;-1:-1:-1;;;4847:29:2;;;-1:-1:-1;4854:8:2;;-1:-1:-1;;2489:2446:2;;;;;;:::o;618:319:5:-;673:11;;;;;;;:19;;688:4;673:19;665:52;;;;;;;10201:2:7;665:52:5;;;10183:21:7;10240:2;10220:18;;;10213:30;10279:22;10259:18;;;10252:50;10319:18;;665:52:5;9999:344:7;665:52:5;750:10;6678:7:1;6705:25;;;:18;:25;;1156:2;6705:25;;;;;774:1:5;;736:34;;764:6;;6705:49:1;1022:13;6704:80;736:34:5;:::i;:::-;:39;;728:68;;;;;;;9500:2:7;728:68:5;;;9482:21:7;9539:2;9519:18;;;9512:30;9578:18;9558;;;9551:46;9614:18;;728:68:5;9298:340:7;728:68:5;359:3;832:6;815:14;5185:7:1;5369:13;:31;;;5138:279;815:14:5;:23;;;;:::i;:::-;:42;;807:86;;;;;;;10911:2:7;807:86:5;;;10893:21:7;10950:2;10930:18;;;10923:30;10989:33;10969:18;;;10962:61;11040:18;;807:86:5;10709:355:7;807:86:5;904:25;910:10;922:6;904:5;:25::i;:::-;618:319;:::o;13315:303:1:-;13413:31;;;32960:10;13413:31;13409:61;;;13453:17;;;;;;;;;;;;;;13409:61;32960:10;13481:39;;;;:18;:39;;;;;;;;;:49;;;;;;;;;;;;:60;;;;;;;;;;;;;13556:55;;8615:41:7;;;13481:49:1;;32960:10;13556:55;;8588:18:7;13556:55:1;;;;;;;13315:303;;:::o;14157:388::-;14318:31;14331:4;14337:2;14341:7;14318:12;:31::i;:::-;14363:14;;;;:19;14359:180;;14401:56;14432:4;14438:2;14442:7;14451:5;14401:30;:56::i;:::-;14396:143;;14484:40;;;;;;;;;;;;;;14396:143;14157:388;;;;:::o;945:189:5:-;1136:6:6;;1283:23;1136:6;32960:10:1;1283:23:6;1275:68;;;;;;;10550:2:7;1275:68:6;;;10532:21:7;;;10569:18;;;10562:30;10628:34;10608:18;;;10601:62;10680:18;;1275:68:6;10348:356:7;1275:68:6;1003:16:5::1;::::0;;;::::1;;;:25;995:65;;;::::0;::::1;::::0;;9845:2:7;995:65:5::1;::::0;::::1;9827:21:7::0;9884:2;9864:18;;;9857:30;9923:29;9903:18;;;9896:57;9970:18;;995:65:5::1;9643:351:7::0;995:65:5::1;1071:16;:23:::0;;;::::1;::::0;::::1;::::0;;1105:21:::1;1111:10;1123:2;1105:5;:21::i;1091:410:2:-:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1355:1:5;1245:7:2;:25;:54;;;-1:-1:-1;4487:7:1;4513:13;1274:7:2;:25;;1245:54;1241:101;;;1322:9;1091:410;-1:-1:-1;;1091:410:2:o;1241:101::-;1363:21;1376:7;1363:12;:21::i;:::-;1351:33;;1398:9;:16;;;1394:63;;;1437:9;1091:410;-1:-1:-1;;1091:410:2:o;1394:63::-;1473:21;1486:7;1473:12;:21::i;11491:313:1:-;11564:13;11594:16;11602:7;11594;:16::i;:::-;11589:59;;11619:29;;;;;;;;;;;;;;11589:59;11659:21;11683:10;:8;:10::i;:::-;11659:34;;11716:7;11710:21;11735:1;11710:26;;:87;;;;;;;;;;;;;;;;;11763:7;11772:18;11782:7;11772:9;:18::i;:::-;11746:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11703:94;11491:313;-1:-1:-1;;;11491:313:1:o;452:67:5:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1972:201:6:-;1136:6;;1283:23;1136:6;32960:10:1;1283:23:6;1275:68;;;;;;;10550:2:7;1275:68:6;;;10532:21:7;;;10569:18;;;10562:30;10628:34;10608:18;;;10601:62;10680:18;;1275:68:6;10348:356:7;1275:68:6;2061:22:::1;::::0;::::1;2053:73;;;::::0;::::1;::::0;;9093:2:7;2053:73:6::1;::::0;::::1;9075:21:7::0;9132:2;9112:18;;;9105:30;9171:34;9151:18;;;9144:62;9242:8;9222:18;;;9215:36;9268:19;;2053:73:6::1;8891:402:7::0;2053:73:6::1;2137:28;2156:8;2137:18;:28::i;14791:268:1:-:0;14848:4;14902:7;1355:1:5;14883:26:1;;:65;;;;;14935:13;;14925:7;:23;14883:65;:150;;;;-1:-1:-1;;14985:26:1;;;;:17;:26;;;;;;1774:8;14985:43;:48;;14791:268::o;7949:1105::-;8016:7;8050;;1355:1:5;8096:23:1;8092:898;;8148:13;;8141:4;:20;8137:853;;;8185:14;8202:23;;;:17;:23;;;;;;1774:8;8289:23;;8285:687;;8800:111;8807:11;8800:111;;-1:-1:-1;8877:6:1;;8859:25;;;;:17;:25;;;;;;8800:111;;8285:687;8163:827;8137:853;9016:31;;;;;;;;;;;;;;2333:191:6;2426:6;;;;2443:17;;;;;;;;;;;2476:40;;2426:6;;;2443:17;2426:6;;2476:40;;2407:16;;2476:40;2396:128;2333:191;:::o;9587:151:1:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9706:24:1;;;;:17;:24;;;;;;9687:44;;-1:-1:-1;;;;;;;;9252:41:1;;;;;1661:3;9337:32;;;9303:67;;-1:-1:-1;;;9303:67:1;1774:8;9399:23;;:28;;-1:-1:-1;;;9380:47:1;;;;2166:3;9466:27;;;;-1:-1:-1;;;9437:57:1;-1:-1:-1;9143:358:1;16563:1492;16627:20;16650:13;16677:16;;;16673:48;;16702:19;;;;;;;;;;;;;;16673:48;16735:13;16731:44;;16757:18;;;;;;;;;;;;;;16731:44;17250:22;;;;;;;:18;:22;;1156:2;17250:22;;:70;;17288:31;17276:44;;17250:70;;;10863:11;10839:22;10835:40;-1:-1:-1;12522:15:1;;12497:23;12493:45;10832:51;10822:62;17556:31;;;;:17;:31;;;;;:170;17574:12;17799:23;;;17836:99;17862:35;;17887:9;;;;;17862:35;;;;17879:1;;17862:35;;17879:1;;17862:35;17930:3;17920:7;:13;17836:99;;17949:13;:19;-1:-1:-1;13912:179:1;;;:::o;28649:697::-;28827:88;;;;;28807:4;;28827:45;;;;;;:88;;32960:10;;28894:4;;28900:7;;28909:5;;28827:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28827:88:1;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;28823:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29105:13:1;;29101:229;;29150:40;;;;;;;;;;;;;;29101:229;29290:6;29284:13;29275:6;29271:2;29267:15;29260:38;28823:517;28983:64;;28993:54;28983:64;;-1:-1:-1;28823:517:1;28649:697;;;;;;:::o;10226:156::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10328:47:1;10347:27;10366:7;10347:18;:27::i;:::-;-1:-1:-1;;;;;;;;9252:41:1;;;;;1661:3;9337:32;;;9303:67;;-1:-1:-1;;;9303:67:1;1774:8;9399:23;;:28;;-1:-1:-1;;;9380:47:1;;;;2166:3;9466:27;;;;-1:-1:-1;;;9437:57:1;-1:-1:-1;9143:358:1;1142:113:5;1202:13;1235:12;1228:19;;;;;:::i;33078:1920:1:-;33541:4;33535:11;;33548:3;33531:21;;33624:17;;;;34307:11;;;34188:5;34437:2;34451;34441:13;;34433:22;34307:11;34420:36;34491:2;34481:13;;34082:682;34509:4;34082:682;;;34695:1;34690:3;34686:11;34679:18;;34745:2;34739:4;34735:13;34731:2;34727:22;34722:3;34714:36;34602:2;34592:13;;34082:682;;;-1:-1:-1;34792:13:1;;;34905:12;;;;34963:19;;;34905:12;33078:1920;-1:-1:-1;33078:1920:1:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:465:7;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:116;282:4;213:66;208:2;200:6;196:15;192:88;188:99;172:116;:::i;:::-;163:125;;311:6;304:5;297:21;351:3;342:6;337:3;333:16;330:25;327:45;;;368:1;365;358:12;327:45;417:6;412:3;405:4;398:5;394:16;381:43;471:1;464:4;455:6;448:5;444:18;440:29;433:40;14:465;;;;;:::o;484:196::-;552:20;;612:42;601:54;;591:65;;581:93;;670:1;667;660:12;581:93;484:196;;;:::o;685:186::-;744:6;797:2;785:9;776:7;772:23;768:32;765:52;;;813:1;810;803:12;765:52;836:29;855:9;836:29;:::i;876:260::-;944:6;952;1005:2;993:9;984:7;980:23;976:32;973:52;;;1021:1;1018;1011:12;973:52;1044:29;1063:9;1044:29;:::i;:::-;1034:39;;1092:38;1126:2;1115:9;1111:18;1092:38;:::i;:::-;1082:48;;876:260;;;;;:::o;1141:328::-;1218:6;1226;1234;1287:2;1275:9;1266:7;1262:23;1258:32;1255:52;;;1303:1;1300;1293:12;1255:52;1326:29;1345:9;1326:29;:::i;:::-;1316:39;;1374:38;1408:2;1397:9;1393:18;1374:38;:::i;:::-;1364:48;;1459:2;1448:9;1444:18;1431:32;1421:42;;1141:328;;;;;:::o;1474:666::-;1569:6;1577;1585;1593;1646:3;1634:9;1625:7;1621:23;1617:33;1614:53;;;1663:1;1660;1653:12;1614:53;1686:29;1705:9;1686:29;:::i;:::-;1676:39;;1734:38;1768:2;1757:9;1753:18;1734:38;:::i;:::-;1724:48;;1819:2;1808:9;1804:18;1791:32;1781:42;;1874:2;1863:9;1859:18;1846:32;1901:18;1893:6;1890:30;1887:50;;;1933:1;1930;1923:12;1887:50;1956:22;;2009:4;2001:13;;1997:27;-1:-1:-1;1987:55:7;;2038:1;2035;2028:12;1987:55;2061:73;2126:7;2121:2;2108:16;2103:2;2099;2095:11;2061:73;:::i;:::-;2051:83;;;1474:666;;;;;;;:::o;2145:347::-;2210:6;2218;2271:2;2259:9;2250:7;2246:23;2242:32;2239:52;;;2287:1;2284;2277:12;2239:52;2310:29;2329:9;2310:29;:::i;:::-;2300:39;;2389:2;2378:9;2374:18;2361:32;2436:5;2429:13;2422:21;2415:5;2412:32;2402:60;;2458:1;2455;2448:12;2402:60;2481:5;2471:15;;;2145:347;;;;;:::o;2497:254::-;2565:6;2573;2626:2;2614:9;2605:7;2601:23;2597:32;2594:52;;;2642:1;2639;2632:12;2594:52;2665:29;2684:9;2665:29;:::i;:::-;2655:39;2741:2;2726:18;;;;2713:32;;-1:-1:-1;;;2497:254:7:o;2756:322::-;2833:6;2841;2849;2902:2;2890:9;2881:7;2877:23;2873:32;2870:52;;;2918:1;2915;2908:12;2870:52;2941:29;2960:9;2941:29;:::i;:::-;2931:39;3017:2;3002:18;;2989:32;;-1:-1:-1;3068:2:7;3053:18;;;3040:32;;2756:322;-1:-1:-1;;;2756:322:7:o;3083:957::-;3167:6;3198:2;3241;3229:9;3220:7;3216:23;3212:32;3209:52;;;3257:1;3254;3247:12;3209:52;3297:9;3284:23;3326:18;3367:2;3359:6;3356:14;3353:34;;;3383:1;3380;3373:12;3353:34;3421:6;3410:9;3406:22;3396:32;;3466:7;3459:4;3455:2;3451:13;3447:27;3437:55;;3488:1;3485;3478:12;3437:55;3524:2;3511:16;3546:2;3542;3539:10;3536:36;;;3552:18;;:::i;:::-;3598:2;3595:1;3591:10;3581:20;;3621:28;3645:2;3641;3637:11;3621:28;:::i;:::-;3683:15;;;3714:12;;;;3746:11;;;3776;;;3772:20;;3769:33;-1:-1:-1;3766:53:7;;;3815:1;3812;3805:12;3766:53;3837:1;3828:10;;3847:163;3861:2;3858:1;3855:9;3847:163;;;3918:17;;3906:30;;3879:1;3872:9;;;;;3956:12;;;;3988;;3847:163;;;-1:-1:-1;4029:5:7;3083:957;-1:-1:-1;;;;;;;;3083:957:7:o;4045:245::-;4103:6;4156:2;4144:9;4135:7;4131:23;4127:32;4124:52;;;4172:1;4169;4162:12;4124:52;4211:9;4198:23;4230:30;4254:5;4230:30;:::i;4295:249::-;4364:6;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4465:9;4459:16;4484:30;4508:5;4484:30;:::i;4549:450::-;4618:6;4671:2;4659:9;4650:7;4646:23;4642:32;4639:52;;;4687:1;4684;4677:12;4639:52;4727:9;4714:23;4760:18;4752:6;4749:30;4746:50;;;4792:1;4789;4782:12;4746:50;4815:22;;4868:4;4860:13;;4856:27;-1:-1:-1;4846:55:7;;4897:1;4894;4887:12;4846:55;4920:73;4985:7;4980:2;4967:16;4962:2;4958;4954:11;4920:73;:::i;5004:180::-;5063:6;5116:2;5104:9;5095:7;5091:23;5087:32;5084:52;;;5132:1;5129;5122:12;5084:52;-1:-1:-1;5155:23:7;;5004:180;-1:-1:-1;5004:180:7:o;5189:316::-;5230:3;5268:5;5262:12;5295:6;5290:3;5283:19;5311:63;5367:6;5360:4;5355:3;5351:14;5344:4;5337:5;5333:16;5311:63;:::i;:::-;5419:2;5407:15;5424:66;5403:88;5394:98;;;;5494:4;5390:109;;5189:316;-1:-1:-1;;5189:316:7:o;5887:470::-;6066:3;6104:6;6098:13;6120:53;6166:6;6161:3;6154:4;6146:6;6142:17;6120:53;:::i;:::-;6236:13;;6195:16;;;;6258:57;6236:13;6195:16;6292:4;6280:17;;6258:57;:::i;:::-;6331:20;;5887:470;-1:-1:-1;;;;5887:470:7:o;6593:511::-;6787:4;6816:42;6897:2;6889:6;6885:15;6874:9;6867:34;6949:2;6941:6;6937:15;6932:2;6921:9;6917:18;6910:43;;6989:6;6984:2;6973:9;6969:18;6962:34;7032:3;7027:2;7016:9;7012:18;7005:31;7053:45;7093:3;7082:9;7078:19;7070:6;7053:45;:::i;:::-;7045:53;6593:511;-1:-1:-1;;;;;;6593:511:7:o;7109:724::-;7344:2;7396:21;;;7466:13;;7369:18;;;7488:22;;;7315:4;;7344:2;7567:15;;;;7541:2;7526:18;;;7315:4;7610:197;7624:6;7621:1;7618:13;7610:197;;;7673:52;7721:3;7712:6;7706:13;5608:42;5600:5;5594:12;5590:61;5585:3;5578:74;5713:18;5705:4;5698:5;5694:16;5688:23;5684:48;5677:4;5672:3;5668:14;5661:72;5796:4;5789:5;5785:16;5779:23;5772:31;5765:39;5758:4;5753:3;5749:14;5742:63;5866:8;5858:4;5851:5;5847:16;5841:23;5837:38;5830:4;5825:3;5821:14;5814:62;;;5510:372;7673:52;7782:15;;;;7754:4;7745:14;;;;;7646:1;7639:9;7610:197;;7838:632;8009:2;8061:21;;;8131:13;;8034:18;;;8153:22;;;7980:4;;8009:2;8232:15;;;;8206:2;8191:18;;;7980:4;8275:169;8289:6;8286:1;8283:13;8275:169;;;8350:13;;8338:26;;8419:15;;;;8384:12;;;;8311:1;8304:9;8275:169;;8667:219;8816:2;8805:9;8798:21;8779:4;8836:44;8876:2;8865:9;8861:18;8853:6;8836:44;:::i;11069:268::-;5594:12;;5608:42;5590:61;5578:74;;5705:4;5694:16;;;5688:23;5713:18;5684:48;5668:14;;;5661:72;5796:4;5785:16;;;5779:23;5772:31;5765:39;5749:14;;;5742:63;5858:4;5847:16;;;5841:23;5866:8;5837:38;5821:14;;;5814:62;11267:3;11252:19;;11280:51;5510:372;11524:334;11595:2;11589:9;11651:2;11641:13;;11656:66;11637:86;11625:99;;11754:18;11739:34;;11775:22;;;11736:62;11733:88;;;11801:18;;:::i;:::-;11837:2;11830:22;11524:334;;-1:-1:-1;11524:334:7:o;11863:282::-;11903:3;11934:1;11930:6;11927:1;11924:13;11921:193;;;11970:77;11967:1;11960:88;12071:4;12068:1;12061:15;12099:4;12096:1;12089:15;11921:193;-1:-1:-1;12130:9:7;;11863:282::o;12150:258::-;12222:1;12232:113;12246:6;12243:1;12240:13;12232:113;;;12322:11;;;12316:18;12303:11;;;12296:39;12268:2;12261:10;12232:113;;;12363:6;12360:1;12357:13;12354:48;;;-1:-1:-1;;12398:1:7;12380:16;;12373:27;12150:258::o;12413:437::-;12492:1;12488:12;;;;12535;;;12556:61;;12610:4;12602:6;12598:17;12588:27;;12556:61;12663:2;12655:6;12652:14;12632:18;12629:38;12626:218;;;12700:77;12697:1;12690:88;12801:4;12798:1;12791:15;12829:4;12826:1;12819:15;12626:218;;12413:437;;;:::o;12855:184::-;12907:77;12904:1;12897:88;13004:4;13001:1;12994:15;13028:4;13025:1;13018:15;13044:184;13096:77;13093:1;13086:88;13193:4;13190:1;13183:15;13217:4;13214:1;13207:15;13233:177;13318:66;13311:5;13307:78;13300:5;13297:89;13287:117;;13400:1;13397;13390:12
Swarm Source
ipfs://a5bc957906726ab7bd3ba686b806a8276d146834149b6a726864ed6c211c6d61
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.