Token NFT
Overview ERC-721
Total Supply:
1 NFT
Holders:
1 addresses
Transfers:
-
Contract:
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
wol
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-10 */ // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/wol.sol pragma solidity ^0.8.0; contract wol is ERC721A, Ownable, ReentrancyGuard { mapping (address => uint256) public WalletMint; bool public mintStatus = false; uint public MintPrice = 0.003 ether; string public baseURI; uint public freeMint = 1; uint public maxPerTx = 15; uint public maxSupply = 10000; constructor( string memory _name, string memory _symbol) ERC721A(_name, _symbol) {} function mint(uint256 qty) external payable { require(mintStatus , "Okay00ts: Minting Public Pause"); require(qty <= maxPerTx, "Okay00ts: Limit Per Transaction"); require(totalSupply() + qty <= maxSupply,"Okay00ts: Soldout"); _safemint(qty); } function _safemint(uint256 qty) internal { if(WalletMint[msg.sender] < freeMint) { if(qty < freeMint) qty = freeMint; require(msg.value >= (qty - freeMint) * MintPrice,"Okay00ts: Fund not enough"); WalletMint[msg.sender] += qty; _safeMint(msg.sender, qty); } else { require(msg.value >= qty * MintPrice,"Okay00ts: Fund not enough"); WalletMint[msg.sender] += qty; _safeMint(msg.sender, qty); } } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function airdrop(address to ,uint256 qty) external onlyOwner { _safeMint(to, qty); } function airdropBatch(address[] calldata listedAirdrop ,uint256 qty) external onlyOwner { for (uint256 i = 0; i < listedAirdrop.length; i++) { _safeMint(listedAirdrop[i], qty); } } function developerMint(uint256 qty) external onlyOwner { _safeMint(msg.sender, qty); } function setPublicMinting() external onlyOwner { mintStatus = !mintStatus ; } function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } function setPrice(uint256 price_) external onlyOwner { MintPrice = price_; } function setmaxMintPerTx(uint256 maxPerTx_) external onlyOwner { maxPerTx = maxPerTx_; } function setMaxFreeMint(uint256 qty_) external onlyOwner { freeMint = qty_; } function setmaxMint(uint256 maxMint_) external onlyOwner { maxSupply = maxMint_; } function withdraw() public onlyOwner { payable(msg.sender).transfer(payable(address(this)).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WalletMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"listedAirdrop","type":"address[]"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"airdropBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"developerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"uint256","name":"qty_","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint_","type":"uint256"}],"name":"setmaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setmaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600b60006101000a81548160ff021916908315150217905550660aa87bee538000600c556001600e55600f80556127106010553480156200004657600080fd5b50604051620034573803806200345783398181016040528101906200006c9190620002e9565b8181816002908051906020019062000086929190620001bb565b5080600390805190602001906200009f929190620001bb565b50620000b0620000e860201b60201c565b6000819055505050620000d8620000cc620000ed60201b60201c565b620000f560201b60201c565b60016009819055505050620004f2565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c99062000403565b90600052602060002090601f016020900481019282620001ed576000855562000239565b82601f106200020857805160ff191683800117855562000239565b8280016001018555821562000239579182015b82811115620002385782518255916020019190600101906200021b565b5b5090506200024891906200024c565b5090565b5b80821115620002675760008160009055506001016200024d565b5090565b6000620002826200027c8462000397565b6200036e565b905082815260208101848484011115620002a157620002a0620004d2565b5b620002ae848285620003cd565b509392505050565b600082601f830112620002ce57620002cd620004cd565b5b8151620002e08482602086016200026b565b91505092915050565b60008060408385031215620003035762000302620004dc565b5b600083015167ffffffffffffffff811115620003245762000323620004d7565b5b6200033285828601620002b6565b925050602083015167ffffffffffffffff811115620003565762000355620004d7565b5b6200036485828601620002b6565b9150509250929050565b60006200037a6200038d565b905062000388828262000439565b919050565b6000604051905090565b600067ffffffffffffffff821115620003b557620003b46200049e565b5b620003c082620004e1565b9050602081019050919050565b60005b83811015620003ed578082015181840152602081019050620003d0565b83811115620003fd576000848401525b50505050565b600060028204905060018216806200041c57607f821691505b602082108114156200043357620004326200046f565b5b50919050565b6200044482620004e1565b810181811067ffffffffffffffff821117156200046657620004656200049e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b612f5580620005026000396000f3fe60806040526004361061020f5760003560e01c80638ba4cc3c11610118578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c514610764578063f2fde38b146107a1578063f76fa7c1146107ca578063f968adbe146107f3578063fdbf9ef21461081e5761020f565b8063c87b56dd14610682578063d5abeb01146106bf578063dc33e681146106ea578063e645f708146107275761020f565b80639da3f8fd116100e75780639da3f8fd146105d2578063a0712d68146105fd578063a22cb46514610619578063ac915c0614610642578063b88d4fde146106595761020f565b80638ba4cc3c1461052a5780638da5cb5b1461055357806391b7f5ed1461057e57806395d89b41146105a75761020f565b806355f804b31161019b5780636c0360eb1161016a5780636c0360eb1461045957806370a0823114610484578063715018a6146104c1578063742a4c9b146104d857806379f34a10146105015761020f565b806355f804b31461039f5780635b70ea9f146103c85780636352211e146103f3578063671c3e4f146104305761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d5780632fc2e29c146103365780633ccfd60b1461035f57806342842e0e146103765761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906125c4565b610849565b60405161024891906128c5565b60405180910390f35b34801561025d57600080fd5b506102666108db565b60405161027391906128e0565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061266b565b61096d565b6040516102b0919061285e565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612524565b6109ec565b005b3480156102ee57600080fd5b506102f7610b30565b60405161030491906129c2565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f919061240e565b610b47565b005b34801561034257600080fd5b5061035d6004803603810190610358919061266b565b610e6c565b005b34801561036b57600080fd5b50610374610e7e565b005b34801561038257600080fd5b5061039d6004803603810190610398919061240e565b610ee6565b005b3480156103ab57600080fd5b506103c660048036038101906103c1919061261e565b610f06565b005b3480156103d457600080fd5b506103dd610f24565b6040516103ea91906129c2565b60405180910390f35b3480156103ff57600080fd5b5061041a6004803603810190610415919061266b565b610f2a565b604051610427919061285e565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612564565b610f3c565b005b34801561046557600080fd5b5061046e610f9c565b60405161047b91906128e0565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a691906123a1565b61102a565b6040516104b891906129c2565b60405180910390f35b3480156104cd57600080fd5b506104d66110e3565b005b3480156104e457600080fd5b506104ff60048036038101906104fa919061266b565b6110f7565b005b34801561050d57600080fd5b506105286004803603810190610523919061266b565b611109565b005b34801561053657600080fd5b50610551600480360381019061054c9190612524565b61111b565b005b34801561055f57600080fd5b50610568611131565b604051610575919061285e565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a0919061266b565b61115b565b005b3480156105b357600080fd5b506105bc61116d565b6040516105c991906128e0565b60405180910390f35b3480156105de57600080fd5b506105e76111ff565b6040516105f491906128c5565b60405180910390f35b6106176004803603810190610612919061266b565b611212565b005b34801561062557600080fd5b50610640600480360381019061063b91906124e4565b611309565b005b34801561064e57600080fd5b50610657611481565b005b34801561066557600080fd5b50610680600480360381019061067b9190612461565b6114b5565b005b34801561068e57600080fd5b506106a960048036038101906106a4919061266b565b611528565b6040516106b691906128e0565b60405180910390f35b3480156106cb57600080fd5b506106d46115c7565b6040516106e191906129c2565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c91906123a1565b6115cd565b60405161071e91906129c2565b60405180910390f35b34801561073357600080fd5b5061074e600480360381019061074991906123a1565b6115df565b60405161075b91906129c2565b60405180910390f35b34801561077057600080fd5b5061078b600480360381019061078691906123ce565b6115f7565b60405161079891906128c5565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c391906123a1565b61168b565b005b3480156107d657600080fd5b506107f160048036038101906107ec919061266b565b61170f565b005b3480156107ff57600080fd5b50610808611724565b60405161081591906129c2565b60405180910390f35b34801561082a57600080fd5b5061083361172a565b60405161084091906129c2565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108ea90612c10565b80601f016020809104026020016040519081016040528092919081815260200182805461091690612c10565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b5050505050905090565b600061097882611730565b6109ae576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f782610f2a565b90508073ffffffffffffffffffffffffffffffffffffffff16610a1861178f565b73ffffffffffffffffffffffffffffffffffffffff1614610a7b57610a4481610a3f61178f565b6115f7565b610a7a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b3a611797565b6001546000540303905090565b6000610b528261179c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bb9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bc58461186a565b91509150610bdb8187610bd661178f565b611891565b610c2757610bf086610beb61178f565b6115f7565b610c26576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c8e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c9b86868660016118d5565b8015610ca657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d7485610d508888876118db565b7c020000000000000000000000000000000000000000000000000000000017611903565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dfc576000600185019050600060046000838152602001908152602001600020541415610dfa576000548114610df9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e64868686600161192e565b505050505050565b610e74611934565b8060108190555050565b610e86611934565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610ee3573d6000803e3d6000fd5b50565b610f01838383604051806020016040528060008152506114b5565b505050565b610f0e611934565b8181600d9190610f1f929190612179565b505050565b600e5481565b6000610f358261179c565b9050919050565b610f44611934565b60005b83839050811015610f9657610f83848483818110610f6857610f67612d1a565b5b9050602002016020810190610f7d91906123a1565b836119b2565b8080610f8e90612c73565b915050610f47565b50505050565b600d8054610fa990612c10565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd590612c10565b80156110225780601f10610ff757610100808354040283529160200191611022565b820191906000526020600020905b81548152906001019060200180831161100557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611092576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110eb611934565b6110f560006119d0565b565b6110ff611934565b80600e8190555050565b611111611934565b80600f8190555050565b611123611934565b61112d82826119b2565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611163611934565b80600c8190555050565b60606003805461117c90612c10565b80601f01602080910402602001604051908101604052809291908181526020018280546111a890612c10565b80156111f55780601f106111ca576101008083540402835291602001916111f5565b820191906000526020600020905b8154815290600101906020018083116111d857829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1681565b600b60009054906101000a900460ff16611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906129a2565b60405180910390fd5b600f548111156112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d90612942565b60405180910390fd5b601054816112b2610b30565b6112bc9190612a76565b11156112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f490612922565b60405180910390fd5b61130681611a96565b50565b61131161178f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611376576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061138361178f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661143061178f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147591906128c5565b60405180910390a35050565b611489611934565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6114c0848484610b47565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611522576114eb84848484611c65565b611521576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061153382611730565b611569576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611573611dc5565b905060008151141561159457604051806020016040528060008152506115bf565b8061159e84611e57565b6040516020016115af92919061283a565b6040516020818303038152906040525b915050919050565b60105481565b60006115d882611ea7565b9050919050565b600a6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611693611934565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90612902565b60405180910390fd5b61170c816119d0565b50565b611717611934565b61172133826119b2565b50565b600f5481565b600c5481565b60008161173b611797565b1115801561174a575060005482105b8015611788575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806117ab611797565b11611833576000548110156118325760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611830575b60008114156118265760046000836001900393508381526020019081526020016000205490506117fb565b8092505050611865565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118f2868684611efe565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61193c611f07565b73ffffffffffffffffffffffffffffffffffffffff1661195a611131565b73ffffffffffffffffffffffffffffffffffffffff16146119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a790612962565b60405180910390fd5b565b6119cc828260405180602001604052806000815250611f0f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600e54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611bb157600e54811015611aef57600e5490505b600c54600e5482611b009190612b26565b611b0a9190612acc565b341015611b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4390612982565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b9b9190612a76565b92505081905550611bac33826119b2565b611c62565b600c5481611bbf9190612acc565b341015611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890612982565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c509190612a76565b92505081905550611c6133826119b2565b5b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c8b61178f565b8786866040518563ffffffff1660e01b8152600401611cad9493929190612879565b602060405180830381600087803b158015611cc757600080fd5b505af1925050508015611cf857506040513d601f19601f82011682018060405250810190611cf591906125f1565b60015b611d72573d8060008114611d28576040519150601f19603f3d011682016040523d82523d6000602084013e611d2d565b606091505b50600081511415611d6a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611dd490612c10565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0090612c10565b8015611e4d5780601f10611e2257610100808354040283529160200191611e4d565b820191906000526020600020905b815481529060010190602001808311611e3057829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611e9357600183039250600a81066030018353600a8104905080611e8e57611e93565b611e68565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b611f198383611fac565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fa757600080549050600083820390505b611f596000868380600101945086611c65565b611f8f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f46578160005414611fa457600080fd5b50505b505050565b6000805490506000821415611fed576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ffa60008483856118d5565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120718361206260008660006118db565b61206b85612169565b17611903565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461211257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120d7565b50600082141561214e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612164600084838561192e565b505050565b60006001821460e11b9050919050565b82805461218590612c10565b90600052602060002090601f0160209004810192826121a757600085556121ee565b82601f106121c057803560ff19168380011785556121ee565b828001600101855582156121ee579182015b828111156121ed5782358255916020019190600101906121d2565b5b5090506121fb91906121ff565b5090565b5b80821115612218576000816000905550600101612200565b5090565b600061222f61222a84612a02565b6129dd565b90508281526020810184848401111561224b5761224a612d87565b5b612256848285612bce565b509392505050565b60008135905061226d81612ec3565b92915050565b60008083601f84011261228957612288612d7d565b5b8235905067ffffffffffffffff8111156122a6576122a5612d78565b5b6020830191508360208202830111156122c2576122c1612d82565b5b9250929050565b6000813590506122d881612eda565b92915050565b6000813590506122ed81612ef1565b92915050565b60008151905061230281612ef1565b92915050565b600082601f83011261231d5761231c612d7d565b5b813561232d84826020860161221c565b91505092915050565b60008083601f84011261234c5761234b612d7d565b5b8235905067ffffffffffffffff81111561236957612368612d78565b5b60208301915083600182028301111561238557612384612d82565b5b9250929050565b60008135905061239b81612f08565b92915050565b6000602082840312156123b7576123b6612d91565b5b60006123c58482850161225e565b91505092915050565b600080604083850312156123e5576123e4612d91565b5b60006123f38582860161225e565b92505060206124048582860161225e565b9150509250929050565b60008060006060848603121561242757612426612d91565b5b60006124358682870161225e565b93505060206124468682870161225e565b92505060406124578682870161238c565b9150509250925092565b6000806000806080858703121561247b5761247a612d91565b5b60006124898782880161225e565b945050602061249a8782880161225e565b93505060406124ab8782880161238c565b925050606085013567ffffffffffffffff8111156124cc576124cb612d8c565b5b6124d887828801612308565b91505092959194509250565b600080604083850312156124fb576124fa612d91565b5b60006125098582860161225e565b925050602061251a858286016122c9565b9150509250929050565b6000806040838503121561253b5761253a612d91565b5b60006125498582860161225e565b925050602061255a8582860161238c565b9150509250929050565b60008060006040848603121561257d5761257c612d91565b5b600084013567ffffffffffffffff81111561259b5761259a612d8c565b5b6125a786828701612273565b935093505060206125ba8682870161238c565b9150509250925092565b6000602082840312156125da576125d9612d91565b5b60006125e8848285016122de565b91505092915050565b60006020828403121561260757612606612d91565b5b6000612615848285016122f3565b91505092915050565b6000806020838503121561263557612634612d91565b5b600083013567ffffffffffffffff81111561265357612652612d8c565b5b61265f85828601612336565b92509250509250929050565b60006020828403121561268157612680612d91565b5b600061268f8482850161238c565b91505092915050565b6126a181612b5a565b82525050565b6126b081612b6c565b82525050565b60006126c182612a33565b6126cb8185612a49565b93506126db818560208601612bdd565b6126e481612d96565b840191505092915050565b60006126fa82612a3e565b6127048185612a5a565b9350612714818560208601612bdd565b61271d81612d96565b840191505092915050565b600061273382612a3e565b61273d8185612a6b565b935061274d818560208601612bdd565b80840191505092915050565b6000612766602683612a5a565b915061277182612da7565b604082019050919050565b6000612789601183612a5a565b915061279482612df6565b602082019050919050565b60006127ac601f83612a5a565b91506127b782612e1f565b602082019050919050565b60006127cf602083612a5a565b91506127da82612e48565b602082019050919050565b60006127f2601983612a5a565b91506127fd82612e71565b602082019050919050565b6000612815601e83612a5a565b915061282082612e9a565b602082019050919050565b61283481612bc4565b82525050565b60006128468285612728565b91506128528284612728565b91508190509392505050565b60006020820190506128736000830184612698565b92915050565b600060808201905061288e6000830187612698565b61289b6020830186612698565b6128a8604083018561282b565b81810360608301526128ba81846126b6565b905095945050505050565b60006020820190506128da60008301846126a7565b92915050565b600060208201905081810360008301526128fa81846126ef565b905092915050565b6000602082019050818103600083015261291b81612759565b9050919050565b6000602082019050818103600083015261293b8161277c565b9050919050565b6000602082019050818103600083015261295b8161279f565b9050919050565b6000602082019050818103600083015261297b816127c2565b9050919050565b6000602082019050818103600083015261299b816127e5565b9050919050565b600060208201905081810360008301526129bb81612808565b9050919050565b60006020820190506129d7600083018461282b565b92915050565b60006129e76129f8565b90506129f38282612c42565b919050565b6000604051905090565b600067ffffffffffffffff821115612a1d57612a1c612d49565b5b612a2682612d96565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a8182612bc4565b9150612a8c83612bc4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ac157612ac0612cbc565b5b828201905092915050565b6000612ad782612bc4565b9150612ae283612bc4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b1b57612b1a612cbc565b5b828202905092915050565b6000612b3182612bc4565b9150612b3c83612bc4565b925082821015612b4f57612b4e612cbc565b5b828203905092915050565b6000612b6582612ba4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612bfb578082015181840152602081019050612be0565b83811115612c0a576000848401525b50505050565b60006002820490506001821680612c2857607f821691505b60208210811415612c3c57612c3b612ceb565b5b50919050565b612c4b82612d96565b810181811067ffffffffffffffff82111715612c6a57612c69612d49565b5b80604052505050565b6000612c7e82612bc4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612cb157612cb0612cbc565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f6b6179303074733a20536f6c646f7574000000000000000000000000000000600082015250565b7f4f6b6179303074733a204c696d697420506572205472616e73616374696f6e00600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4f6b6179303074733a2046756e64206e6f7420656e6f75676800000000000000600082015250565b7f4f6b6179303074733a204d696e74696e67205075626c69632050617573650000600082015250565b612ecc81612b5a565b8114612ed757600080fd5b50565b612ee381612b6c565b8114612eee57600080fd5b50565b612efa81612b78565b8114612f0557600080fd5b50565b612f1181612bc4565b8114612f1c57600080fd5b5056fea2646970667358221220e31d803760e8622ed9f04f8b699452bd646ae3f04deb4a828b26bcd830d9411d64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000034e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e46540000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000034e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e46540000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): NFT
Arg [1] : _symbol (string): NFT
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 4e46540000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4e46540000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
57245:2701:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18435:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19337:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25820:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25261:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15088:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29527:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59721:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59825:116;;;;;;;;;;;;;:::i;:::-;;32440:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59304:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57468:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20730:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58864:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57438:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16272:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56361:103;;;;;;;;;;;;;:::i;:::-;;59622:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59512:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58753:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55713:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59414:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19513:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57357:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57664:289;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26378:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59200:92;;;;;;;;;;;;;:::i;:::-;;33223:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19723:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57533:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58516:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57304:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26843:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56619:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59087:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57499:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57395:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18435:639;18520:4;18859:10;18844:25;;:11;:25;;;;:102;;;;18936:10;18921:25;;:11;:25;;;;18844:102;:179;;;;19013:10;18998:25;;:11;:25;;;;18844:179;18824:199;;18435:639;;;:::o;19337:100::-;19391:13;19424:5;19417:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19337:100;:::o;25820:218::-;25896:7;25921:16;25929:7;25921;:16::i;:::-;25916:64;;25946:34;;;;;;;;;;;;;;25916:64;26000:15;:24;26016:7;26000:24;;;;;;;;;;;:30;;;;;;;;;;;;25993:37;;25820:218;;;:::o;25261:400::-;25342:13;25358:16;25366:7;25358;:16::i;:::-;25342:32;;25414:5;25391:28;;:19;:17;:19::i;:::-;:28;;;25387:175;;25439:44;25456:5;25463:19;:17;:19::i;:::-;25439:16;:44::i;:::-;25434:128;;25511:35;;;;;;;;;;;;;;25434:128;25387:175;25607:2;25574:15;:24;25590:7;25574:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25645:7;25641:2;25625:28;;25634:5;25625:28;;;;;;;;;;;;25331:330;25261:400;;:::o;15088:323::-;15149:7;15377:15;:13;:15::i;:::-;15362:12;;15346:13;;:28;:46;15339:53;;15088:323;:::o;29527:2817::-;29661:27;29691;29710:7;29691:18;:27::i;:::-;29661:57;;29776:4;29735:45;;29751:19;29735:45;;;29731:86;;29789:28;;;;;;;;;;;;;;29731:86;29831:27;29860:23;29887:35;29914:7;29887:26;:35::i;:::-;29830:92;;;;30022:68;30047:15;30064:4;30070:19;:17;:19::i;:::-;30022:24;:68::i;:::-;30017:180;;30110:43;30127:4;30133:19;:17;:19::i;:::-;30110:16;:43::i;:::-;30105:92;;30162:35;;;;;;;;;;;;;;30105:92;30017:180;30228:1;30214:16;;:2;:16;;;30210:52;;;30239:23;;;;;;;;;;;;;;30210:52;30275:43;30297:4;30303:2;30307:7;30316:1;30275:21;:43::i;:::-;30411:15;30408:160;;;30551:1;30530:19;30523:30;30408:160;30948:18;:24;30967:4;30948:24;;;;;;;;;;;;;;;;30946:26;;;;;;;;;;;;31017:18;:22;31036:2;31017:22;;;;;;;;;;;;;;;;31015:24;;;;;;;;;;;31339:146;31376:2;31425:45;31440:4;31446:2;31450:19;31425:14;:45::i;:::-;11487:8;31397:73;31339:18;:146::i;:::-;31310:17;:26;31328:7;31310:26;;;;;;;;;;;:175;;;;31656:1;11487:8;31605:19;:47;:52;31601:627;;;31678:19;31710:1;31700:7;:11;31678:33;;31867:1;31833:17;:30;31851:11;31833:30;;;;;;;;;;;;:35;31829:384;;;31971:13;;31956:11;:28;31952:242;;32151:19;32118:17;:30;32136:11;32118:30;;;;;;;;;;;:52;;;;31952:242;31829:384;31659:569;31601:627;32275:7;32271:2;32256:27;;32265:4;32256:27;;;;;;;;;;;;32294:42;32315:4;32321:2;32325:7;32334:1;32294:20;:42::i;:::-;29650:2694;;;29527:2817;;;:::o;59721:96::-;55599:13;:11;:13::i;:::-;59801:8:::1;59789:9;:20;;;;59721:96:::0;:::o;59825:116::-;55599:13;:11;:13::i;:::-;59881:10:::1;59873:28;;:60;59918:4;59902:30;;;59873:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59825:116::o:0;32440:185::-;32578:39;32595:4;32601:2;32605:7;32578:39;;;;;;;;;;;;:16;:39::i;:::-;32440:185;;;:::o;59304:102::-;55599:13;:11;:13::i;:::-;59390:8:::1;;59380:7;:18;;;;;;;:::i;:::-;;59304:102:::0;;:::o;57468:24::-;;;;:::o;20730:152::-;20802:7;20845:27;20864:7;20845:18;:27::i;:::-;20822:52;;20730:152;;;:::o;58864:215::-;55599:13;:11;:13::i;:::-;58968:9:::1;58963:109;58987:13;;:20;;58983:1;:24;58963:109;;;59028:32;59038:13;;59052:1;59038:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;59056:3;59028:9;:32::i;:::-;59009:3;;;;;:::i;:::-;;;;58963:109;;;;58864:215:::0;;;:::o;57438:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16272:233::-;16344:7;16385:1;16368:19;;:5;:19;;;16364:60;;;16396:28;;;;;;;;;;;;;;16364:60;10431:13;16442:18;:25;16461:5;16442:25;;;;;;;;;;;;;;;;:55;16435:62;;16272:233;;;:::o;56361:103::-;55599:13;:11;:13::i;:::-;56426:30:::1;56453:1;56426:18;:30::i;:::-;56361:103::o:0;59622:91::-;55599:13;:11;:13::i;:::-;59701:4:::1;59690:8;:15;;;;59622:91:::0;:::o;59512:102::-;55599:13;:11;:13::i;:::-;59597:9:::1;59586:8;:20;;;;59512:102:::0;:::o;58753:103::-;55599:13;:11;:13::i;:::-;58830:18:::1;58840:2;58844:3;58830:9;:18::i;:::-;58753:103:::0;;:::o;55713:87::-;55759:7;55786:6;;;;;;;;;;;55779:13;;55713:87;:::o;59414:90::-;55599:13;:11;:13::i;:::-;59490:6:::1;59478:9;:18;;;;59414:90:::0;:::o;19513:104::-;19569:13;19602:7;19595:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19513:104;:::o;57357:31::-;;;;;;;;;;;;;:::o;57664:289::-;57732:10;;;;;;;;;;;57724:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57804:8;;57797:3;:15;;57789:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;57890:9;;57883:3;57867:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;57859:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;57931:14;57941:3;57931:9;:14::i;:::-;57664:289;:::o;26378:308::-;26489:19;:17;:19::i;:::-;26477:31;;:8;:31;;;26473:61;;;26517:17;;;;;;;;;;;;;;26473:61;26599:8;26547:18;:39;26566:19;:17;:19::i;:::-;26547:39;;;;;;;;;;;;;;;:49;26587:8;26547:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26659:8;26623:55;;26638:19;:17;:19::i;:::-;26623:55;;;26669:8;26623:55;;;;;;:::i;:::-;;;;;;;;26378:308;;:::o;59200:92::-;55599:13;:11;:13::i;:::-;59273:10:::1;;;;;;;;;;;59272:11;59258:10;;:25;;;;;;;;;;;;;;;;;;59200:92::o:0;33223:399::-;33390:31;33403:4;33409:2;33413:7;33390:12;:31::i;:::-;33454:1;33436:2;:14;;;:19;33432:183;;33475:56;33506:4;33512:2;33516:7;33525:5;33475:30;:56::i;:::-;33470:145;;33559:40;;;;;;;;;;;;;;33470:145;33432:183;33223:399;;;;:::o;19723:318::-;19796:13;19827:16;19835:7;19827;:16::i;:::-;19822:59;;19852:29;;;;;;;;;;;;;;19822:59;19894:21;19918:10;:8;:10::i;:::-;19894:34;;19971:1;19952:7;19946:21;:26;;:87;;;;;;;;;;;;;;;;;19999:7;20008:18;20018:7;20008:9;:18::i;:::-;19982:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19946:87;19939:94;;;19723:318;;;:::o;57533:29::-;;;;:::o;58516:113::-;58574:7;58601:20;58615:5;58601:13;:20::i;:::-;58594:27;;58516:113;;;:::o;57304:46::-;;;;;;;;;;;;;;;;;:::o;26843:164::-;26940:4;26964:18;:25;26983:5;26964:25;;;;;;;;;;;;;;;:35;26990:8;26964:35;;;;;;;;;;;;;;;;;;;;;;;;;26957:42;;26843:164;;;;:::o;56619:201::-;55599:13;:11;:13::i;:::-;56728:1:::1;56708:22;;:8;:22;;;;56700:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56784:28;56803:8;56784:18;:28::i;:::-;56619:201:::0;:::o;59087:105::-;55599:13;:11;:13::i;:::-;59158:26:::1;59168:10;59180:3;59158:9;:26::i;:::-;59087:105:::0;:::o;57499:25::-;;;;:::o;57395:35::-;;;;:::o;27265:282::-;27330:4;27386:7;27367:15;:13;:15::i;:::-;:26;;:66;;;;;27420:13;;27410:7;:23;27367:66;:153;;;;;27519:1;11207:8;27471:17;:26;27489:7;27471:26;;;;;;;;;;;;:44;:49;27367:153;27347:173;;27265:282;;;:::o;49031:105::-;49091:7;49118:10;49111:17;;49031:105;:::o;14604:92::-;14660:7;14604:92;:::o;21885:1275::-;21952:7;21972:12;21987:7;21972:22;;22055:4;22036:15;:13;:15::i;:::-;:23;22032:1061;;22089:13;;22082:4;:20;22078:1015;;;22127:14;22144:17;:23;22162:4;22144:23;;;;;;;;;;;;22127:40;;22261:1;11207:8;22233:6;:24;:29;22229:845;;;22898:113;22915:1;22905:6;:11;22898:113;;;22958:17;:25;22976:6;;;;;;;22958:25;;;;;;;;;;;;22949:34;;22898:113;;;23044:6;23037:13;;;;;;22229:845;22104:989;22078:1015;22032:1061;23121:31;;;;;;;;;;;;;;21885:1275;;;;:::o;28428:479::-;28530:27;28559:23;28600:38;28641:15;:24;28657:7;28641:24;;;;;;;;;;;28600:65;;28812:18;28789:41;;28869:19;28863:26;28844:45;;28774:126;28428:479;;;:::o;27656:659::-;27805:11;27970:16;27963:5;27959:28;27950:37;;28130:16;28119:9;28115:32;28102:45;;28280:15;28269:9;28266:30;28258:5;28247:9;28244:20;28241:56;28231:66;;27656:659;;;;;:::o;34284:159::-;;;;;:::o;48340:311::-;48475:7;48495:16;11611:3;48521:19;:41;;48495:68;;11611:3;48589:31;48600:4;48606:2;48610:9;48589:10;:31::i;:::-;48581:40;;:62;;48574:69;;;48340:311;;;;;:::o;23708:450::-;23788:14;23956:16;23949:5;23945:28;23936:37;;24133:5;24119:11;24094:23;24090:41;24087:52;24080:5;24077:63;24067:73;;23708:450;;;;:::o;35108:158::-;;;;;:::o;55878:132::-;55953:12;:10;:12::i;:::-;55942:23;;:7;:5;:7::i;:::-;:23;;;55934:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55878:132::o;42863:112::-;42940:27;42950:2;42954:8;42940:27;;;;;;;;;;;;:9;:27::i;:::-;42863:112;;:::o;56980:191::-;57054:16;57073:6;;;;;;;;;;;57054:25;;57099:8;57090:6;;:17;;;;;;;;;;;;;;;;;;57154:8;57123:40;;57144:8;57123:40;;;;;;;;;;;;57043:128;56980:191;:::o;57961:547::-;58046:8;;58021:10;:22;58032:10;58021:22;;;;;;;;;;;;;;;;:33;58018:483;;;58090:8;;58084:3;:14;58081:33;;;58106:8;;58100:14;;58081:33;58168:9;;58156:8;;58150:3;:14;;;;:::i;:::-;58149:28;;;;:::i;:::-;58136:9;:41;;58128:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;58247:3;58221:10;:22;58232:10;58221:22;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;58264:26;58274:10;58286:3;58264:9;:26::i;:::-;58018:483;;;58367:9;;58361:3;:15;;;;:::i;:::-;58348:9;:28;;58340:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;58446:3;58420:10;:22;58431:10;58420:22;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;58463:26;58473:10;58485:3;58463:9;:26::i;:::-;58018:483;57961:547;:::o;35706:716::-;35869:4;35915:2;35890:45;;;35936:19;:17;:19::i;:::-;35957:4;35963:7;35972:5;35890:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35886:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36190:1;36173:6;:13;:18;36169:235;;;36219:40;;;;;;;;;;;;;;36169:235;36362:6;36356:13;36347:6;36343:2;36339:15;36332:38;35886:529;36059:54;;;36049:64;;;:6;:64;;;;36042:71;;;35706:716;;;;;;:::o;58637:108::-;58697:13;58730:7;58723:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58637:108;:::o;49238:1581::-;49303:17;49728:4;49721;49715:11;49711:22;49704:29;;49820:3;49814:4;49807:17;49926:3;50165:5;50147:428;50173:1;50147:428;;;50213:1;50208:3;50204:11;50197:18;;50384:2;50378:4;50374:13;50370:2;50366:22;50361:3;50353:36;50478:2;50472:4;50468:13;50460:21;;50545:4;50535:25;;50553:5;;50535:25;50147:428;;;50151:21;50614:3;50609;50605:13;50729:4;50724:3;50720:14;50713:21;;50794:6;50789:3;50782:19;49342:1470;;49238:1581;;;:::o;16587:178::-;16648:7;10431:13;10569:2;16676:18;:25;16695:5;16676:25;;;;;;;;;;;;;;;;:50;;16675:82;16668:89;;16587:178;;;:::o;48041:147::-;48178:6;48041:147;;;;;:::o;54264:98::-;54317:7;54344:10;54337:17;;54264:98;:::o;42090:689::-;42221:19;42227:2;42231:8;42221:5;:19::i;:::-;42300:1;42282:2;:14;;;:19;42278:483;;42322:11;42336:13;;42322:27;;42368:13;42390:8;42384:3;:14;42368:30;;42417:233;42448:62;42487:1;42491:2;42495:7;;;;;;42504:5;42448:30;:62::i;:::-;42443:167;;42546:40;;;;;;;;;;;;;;42443:167;42645:3;42637:5;:11;42417:233;;42732:3;42715:13;;:20;42711:34;;42737:8;;;42711:34;42303:458;;42278:483;42090:689;;;:::o;36884:2454::-;36957:20;36980:13;;36957:36;;37020:1;37008:8;:13;37004:44;;;37030:18;;;;;;;;;;;;;;37004:44;37061:61;37091:1;37095:2;37099:12;37113:8;37061:21;:61::i;:::-;37605:1;10569:2;37575:1;:26;;37574:32;37562:8;:45;37536:18;:22;37555:2;37536:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37884:139;37921:2;37975:33;37998:1;38002:2;38006:1;37975:14;:33::i;:::-;37942:30;37963:8;37942:20;:30::i;:::-;:66;37884:18;:139::i;:::-;37850:17;:31;37868:12;37850:31;;;;;;;;;;;:173;;;;38040:16;38071:11;38100:8;38085:12;:23;38071:37;;38355:16;38351:2;38347:25;38335:37;;38727:12;38687:8;38646:1;38584:25;38525:1;38464;38437:335;38852:1;38838:12;38834:20;38792:346;38893:3;38884:7;38881:16;38792:346;;39111:7;39101:8;39098:1;39071:25;39068:1;39065;39060:59;38946:1;38937:7;38933:15;38922:26;;38792:346;;;38796:77;39183:1;39171:8;:13;39167:45;;;39193:19;;;;;;;;;;;;;;39167:45;39245:3;39229:13;:19;;;;37310:1950;;39270:60;39299:1;39303:2;39307:12;39321:8;39270:20;:60::i;:::-;36946:2392;36884:2454;;:::o;24260:324::-;24330:14;24563:1;24553:8;24550:15;24524:24;24520:46;24510:56;;24260:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1159:133;;;;:::o;1298:137::-;1343:5;1381:6;1368:20;1359:29;;1397:32;1423:5;1397:32;:::i;:::-;1298:137;;;;:::o;1441:141::-;1497:5;1528:6;1522:13;1513:22;;1544:32;1570:5;1544:32;:::i;:::-;1441:141;;;;:::o;1601:338::-;1656:5;1705:3;1698:4;1690:6;1686:17;1682:27;1672:122;;1713:79;;:::i;:::-;1672:122;1830:6;1817:20;1855:78;1929:3;1921:6;1914:4;1906:6;1902:17;1855:78;:::i;:::-;1846:87;;1662:277;1601:338;;;;:::o;1959:553::-;2017:8;2027:6;2077:3;2070:4;2062:6;2058:17;2054:27;2044:122;;2085:79;;:::i;:::-;2044:122;2198:6;2185:20;2175:30;;2228:18;2220:6;2217:30;2214:117;;;2250:79;;:::i;:::-;2214:117;2364:4;2356:6;2352:17;2340:29;;2418:3;2410:4;2402:6;2398:17;2388:8;2384:32;2381:41;2378:128;;;2425:79;;:::i;:::-;2378:128;1959:553;;;;;:::o;2518:139::-;2564:5;2602:6;2589:20;2580:29;;2618:33;2645:5;2618:33;:::i;:::-;2518:139;;;;:::o;2663:329::-;2722:6;2771:2;2759:9;2750:7;2746:23;2742:32;2739:119;;;2777:79;;:::i;:::-;2739:119;2897:1;2922:53;2967:7;2958:6;2947:9;2943:22;2922:53;:::i;:::-;2912:63;;2868:117;2663:329;;;;:::o;2998:474::-;3066:6;3074;3123:2;3111:9;3102:7;3098:23;3094:32;3091:119;;;3129:79;;:::i;:::-;3091:119;3249:1;3274:53;3319:7;3310:6;3299:9;3295:22;3274:53;:::i;:::-;3264:63;;3220:117;3376:2;3402:53;3447:7;3438:6;3427:9;3423:22;3402:53;:::i;:::-;3392:63;;3347:118;2998:474;;;;;:::o;3478:619::-;3555:6;3563;3571;3620:2;3608:9;3599:7;3595:23;3591:32;3588:119;;;3626:79;;:::i;:::-;3588:119;3746:1;3771:53;3816:7;3807:6;3796:9;3792:22;3771:53;:::i;:::-;3761:63;;3717:117;3873:2;3899:53;3944:7;3935:6;3924:9;3920:22;3899:53;:::i;:::-;3889:63;;3844:118;4001:2;4027:53;4072:7;4063:6;4052:9;4048:22;4027:53;:::i;:::-;4017:63;;3972:118;3478:619;;;;;:::o;4103:943::-;4198:6;4206;4214;4222;4271:3;4259:9;4250:7;4246:23;4242:33;4239:120;;;4278:79;;:::i;:::-;4239:120;4398:1;4423:53;4468:7;4459:6;4448:9;4444:22;4423:53;:::i;:::-;4413:63;;4369:117;4525:2;4551:53;4596:7;4587:6;4576:9;4572:22;4551:53;:::i;:::-;4541:63;;4496:118;4653:2;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4624:118;4809:2;4798:9;4794:18;4781:32;4840:18;4832:6;4829:30;4826:117;;;4862:79;;:::i;:::-;4826:117;4967:62;5021:7;5012:6;5001:9;4997:22;4967:62;:::i;:::-;4957:72;;4752:287;4103:943;;;;;;;:::o;5052:468::-;5117:6;5125;5174:2;5162:9;5153:7;5149:23;5145:32;5142:119;;;5180:79;;:::i;:::-;5142:119;5300:1;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5271:117;5427:2;5453:50;5495:7;5486:6;5475:9;5471:22;5453:50;:::i;:::-;5443:60;;5398:115;5052:468;;;;;:::o;5526:474::-;5594:6;5602;5651:2;5639:9;5630:7;5626:23;5622:32;5619:119;;;5657:79;;:::i;:::-;5619:119;5777:1;5802:53;5847:7;5838:6;5827:9;5823:22;5802:53;:::i;:::-;5792:63;;5748:117;5904:2;5930:53;5975:7;5966:6;5955:9;5951:22;5930:53;:::i;:::-;5920:63;;5875:118;5526:474;;;;;:::o;6006:704::-;6101:6;6109;6117;6166:2;6154:9;6145:7;6141:23;6137:32;6134:119;;;6172:79;;:::i;:::-;6134:119;6320:1;6309:9;6305:17;6292:31;6350:18;6342:6;6339:30;6336:117;;;6372:79;;:::i;:::-;6336:117;6485:80;6557:7;6548:6;6537:9;6533:22;6485:80;:::i;:::-;6467:98;;;;6263:312;6614:2;6640:53;6685:7;6676:6;6665:9;6661:22;6640:53;:::i;:::-;6630:63;;6585:118;6006:704;;;;;:::o;6716:327::-;6774:6;6823:2;6811:9;6802:7;6798:23;6794:32;6791:119;;;6829:79;;:::i;:::-;6791:119;6949:1;6974:52;7018:7;7009:6;6998:9;6994:22;6974:52;:::i;:::-;6964:62;;6920:116;6716:327;;;;:::o;7049:349::-;7118:6;7167:2;7155:9;7146:7;7142:23;7138:32;7135:119;;;7173:79;;:::i;:::-;7135:119;7293:1;7318:63;7373:7;7364:6;7353:9;7349:22;7318:63;:::i;:::-;7308:73;;7264:127;7049:349;;;;:::o;7404:529::-;7475:6;7483;7532:2;7520:9;7511:7;7507:23;7503:32;7500:119;;;7538:79;;:::i;:::-;7500:119;7686:1;7675:9;7671:17;7658:31;7716:18;7708:6;7705:30;7702:117;;;7738:79;;:::i;:::-;7702:117;7851:65;7908:7;7899:6;7888:9;7884:22;7851:65;:::i;:::-;7833:83;;;;7629:297;7404:529;;;;;:::o;7939:329::-;7998:6;8047:2;8035:9;8026:7;8022:23;8018:32;8015:119;;;8053:79;;:::i;:::-;8015:119;8173:1;8198:53;8243:7;8234:6;8223:9;8219:22;8198:53;:::i;:::-;8188:63;;8144:117;7939:329;;;;:::o;8274:118::-;8361:24;8379:5;8361:24;:::i;:::-;8356:3;8349:37;8274:118;;:::o;8398:109::-;8479:21;8494:5;8479:21;:::i;:::-;8474:3;8467:34;8398:109;;:::o;8513:360::-;8599:3;8627:38;8659:5;8627:38;:::i;:::-;8681:70;8744:6;8739:3;8681:70;:::i;:::-;8674:77;;8760:52;8805:6;8800:3;8793:4;8786:5;8782:16;8760:52;:::i;:::-;8837:29;8859:6;8837:29;:::i;:::-;8832:3;8828:39;8821:46;;8603:270;8513:360;;;;:::o;8879:364::-;8967:3;8995:39;9028:5;8995:39;:::i;:::-;9050:71;9114:6;9109:3;9050:71;:::i;:::-;9043:78;;9130:52;9175:6;9170:3;9163:4;9156:5;9152:16;9130:52;:::i;:::-;9207:29;9229:6;9207:29;:::i;:::-;9202:3;9198:39;9191:46;;8971:272;8879:364;;;;:::o;9249:377::-;9355:3;9383:39;9416:5;9383:39;:::i;:::-;9438:89;9520:6;9515:3;9438:89;:::i;:::-;9431:96;;9536:52;9581:6;9576:3;9569:4;9562:5;9558:16;9536:52;:::i;:::-;9613:6;9608:3;9604:16;9597:23;;9359:267;9249:377;;;;:::o;9632:366::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:118::-;11951:24;11969:5;11951:24;:::i;:::-;11946:3;11939:37;11864:118;;:::o;11988:435::-;12168:3;12190:95;12281:3;12272:6;12190:95;:::i;:::-;12183:102;;12302:95;12393:3;12384:6;12302:95;:::i;:::-;12295:102;;12414:3;12407:10;;11988:435;;;;;:::o;12429:222::-;12522:4;12560:2;12549:9;12545:18;12537:26;;12573:71;12641:1;12630:9;12626:17;12617:6;12573:71;:::i;:::-;12429:222;;;;:::o;12657:640::-;12852:4;12890:3;12879:9;12875:19;12867:27;;12904:71;12972:1;12961:9;12957:17;12948:6;12904:71;:::i;:::-;12985:72;13053:2;13042:9;13038:18;13029:6;12985:72;:::i;:::-;13067;13135:2;13124:9;13120:18;13111:6;13067:72;:::i;:::-;13186:9;13180:4;13176:20;13171:2;13160:9;13156:18;13149:48;13214:76;13285:4;13276:6;13214:76;:::i;:::-;13206:84;;12657:640;;;;;;;:::o;13303:210::-;13390:4;13428:2;13417:9;13413:18;13405:26;;13441:65;13503:1;13492:9;13488:17;13479:6;13441:65;:::i;:::-;13303:210;;;;:::o;13519:313::-;13632:4;13670:2;13659:9;13655:18;13647:26;;13719:9;13713:4;13709:20;13705:1;13694:9;13690:17;13683:47;13747:78;13820:4;13811:6;13747:78;:::i;:::-;13739:86;;13519:313;;;;:::o;13838:419::-;14004:4;14042:2;14031:9;14027:18;14019:26;;14091:9;14085:4;14081:20;14077:1;14066:9;14062:17;14055:47;14119:131;14245:4;14119:131;:::i;:::-;14111:139;;13838:419;;;:::o;14263:::-;14429:4;14467:2;14456:9;14452:18;14444:26;;14516:9;14510:4;14506:20;14502:1;14491:9;14487:17;14480:47;14544:131;14670:4;14544:131;:::i;:::-;14536:139;;14263:419;;;:::o;14688:::-;14854:4;14892:2;14881:9;14877:18;14869:26;;14941:9;14935:4;14931:20;14927:1;14916:9;14912:17;14905:47;14969:131;15095:4;14969:131;:::i;:::-;14961:139;;14688:419;;;:::o;15113:::-;15279:4;15317:2;15306:9;15302:18;15294:26;;15366:9;15360:4;15356:20;15352:1;15341:9;15337:17;15330:47;15394:131;15520:4;15394:131;:::i;:::-;15386:139;;15113:419;;;:::o;15538:::-;15704:4;15742:2;15731:9;15727:18;15719:26;;15791:9;15785:4;15781:20;15777:1;15766:9;15762:17;15755:47;15819:131;15945:4;15819:131;:::i;:::-;15811:139;;15538:419;;;:::o;15963:::-;16129:4;16167:2;16156:9;16152:18;16144:26;;16216:9;16210:4;16206:20;16202:1;16191:9;16187:17;16180:47;16244:131;16370:4;16244:131;:::i;:::-;16236:139;;15963:419;;;:::o;16388:222::-;16481:4;16519:2;16508:9;16504:18;16496:26;;16532:71;16600:1;16589:9;16585:17;16576:6;16532:71;:::i;:::-;16388:222;;;;:::o;16616:129::-;16650:6;16677:20;;:::i;:::-;16667:30;;16706:33;16734:4;16726:6;16706:33;:::i;:::-;16616:129;;;:::o;16751:75::-;16784:6;16817:2;16811:9;16801:19;;16751:75;:::o;16832:307::-;16893:4;16983:18;16975:6;16972:30;16969:56;;;17005:18;;:::i;:::-;16969:56;17043:29;17065:6;17043:29;:::i;:::-;17035:37;;17127:4;17121;17117:15;17109:23;;16832:307;;;:::o;17145:98::-;17196:6;17230:5;17224:12;17214:22;;17145:98;;;:::o;17249:99::-;17301:6;17335:5;17329:12;17319:22;;17249:99;;;:::o;17354:168::-;17437:11;17471:6;17466:3;17459:19;17511:4;17506:3;17502:14;17487:29;;17354:168;;;;:::o;17528:169::-;17612:11;17646:6;17641:3;17634:19;17686:4;17681:3;17677:14;17662:29;;17528:169;;;;:::o;17703:148::-;17805:11;17842:3;17827:18;;17703:148;;;;:::o;17857:305::-;17897:3;17916:20;17934:1;17916:20;:::i;:::-;17911:25;;17950:20;17968:1;17950:20;:::i;:::-;17945:25;;18104:1;18036:66;18032:74;18029:1;18026:81;18023:107;;;18110:18;;:::i;:::-;18023:107;18154:1;18151;18147:9;18140:16;;17857:305;;;;:::o;18168:348::-;18208:7;18231:20;18249:1;18231:20;:::i;:::-;18226:25;;18265:20;18283:1;18265:20;:::i;:::-;18260:25;;18453:1;18385:66;18381:74;18378:1;18375:81;18370:1;18363:9;18356:17;18352:105;18349:131;;;18460:18;;:::i;:::-;18349:131;18508:1;18505;18501:9;18490:20;;18168:348;;;;:::o;18522:191::-;18562:4;18582:20;18600:1;18582:20;:::i;:::-;18577:25;;18616:20;18634:1;18616:20;:::i;:::-;18611:25;;18655:1;18652;18649:8;18646:34;;;18660:18;;:::i;:::-;18646:34;18705:1;18702;18698:9;18690:17;;18522:191;;;;:::o;18719:96::-;18756:7;18785:24;18803:5;18785:24;:::i;:::-;18774:35;;18719:96;;;:::o;18821:90::-;18855:7;18898:5;18891:13;18884:21;18873:32;;18821:90;;;:::o;18917:149::-;18953:7;18993:66;18986:5;18982:78;18971:89;;18917:149;;;:::o;19072:126::-;19109:7;19149:42;19142:5;19138:54;19127:65;;19072:126;;;:::o;19204:77::-;19241:7;19270:5;19259:16;;19204:77;;;:::o;19287:154::-;19371:6;19366:3;19361;19348:30;19433:1;19424:6;19419:3;19415:16;19408:27;19287:154;;;:::o;19447:307::-;19515:1;19525:113;19539:6;19536:1;19533:13;19525:113;;;19624:1;19619:3;19615:11;19609:18;19605:1;19600:3;19596:11;19589:39;19561:2;19558:1;19554:10;19549:15;;19525:113;;;19656:6;19653:1;19650:13;19647:101;;;19736:1;19727:6;19722:3;19718:16;19711:27;19647:101;19496:258;19447:307;;;:::o;19760:320::-;19804:6;19841:1;19835:4;19831:12;19821:22;;19888:1;19882:4;19878:12;19909:18;19899:81;;19965:4;19957:6;19953:17;19943:27;;19899:81;20027:2;20019:6;20016:14;19996:18;19993:38;19990:84;;;20046:18;;:::i;:::-;19990:84;19811:269;19760:320;;;:::o;20086:281::-;20169:27;20191:4;20169:27;:::i;:::-;20161:6;20157:40;20299:6;20287:10;20284:22;20263:18;20251:10;20248:34;20245:62;20242:88;;;20310:18;;:::i;:::-;20242:88;20350:10;20346:2;20339:22;20129:238;20086:281;;:::o;20373:233::-;20412:3;20435:24;20453:5;20435:24;:::i;:::-;20426:33;;20481:66;20474:5;20471:77;20468:103;;;20551:18;;:::i;:::-;20468:103;20598:1;20591:5;20587:13;20580:20;;20373:233;;;:::o;20612:180::-;20660:77;20657:1;20650:88;20757:4;20754:1;20747:15;20781:4;20778:1;20771:15;20798:180;20846:77;20843:1;20836:88;20943:4;20940:1;20933:15;20967:4;20964:1;20957:15;20984:180;21032:77;21029:1;21022:88;21129:4;21126:1;21119:15;21153:4;21150:1;21143:15;21170:180;21218:77;21215:1;21208:88;21315:4;21312:1;21305:15;21339:4;21336:1;21329:15;21356:117;21465:1;21462;21455:12;21479:117;21588:1;21585;21578:12;21602:117;21711:1;21708;21701:12;21725:117;21834:1;21831;21824:12;21848:117;21957:1;21954;21947:12;21971:117;22080:1;22077;22070:12;22094:102;22135:6;22186:2;22182:7;22177:2;22170:5;22166:14;22162:28;22152:38;;22094:102;;;:::o;22202:225::-;22342:34;22338:1;22330:6;22326:14;22319:58;22411:8;22406:2;22398:6;22394:15;22387:33;22202:225;:::o;22433:167::-;22573:19;22569:1;22561:6;22557:14;22550:43;22433:167;:::o;22606:181::-;22746:33;22742:1;22734:6;22730:14;22723:57;22606:181;:::o;22793:182::-;22933:34;22929:1;22921:6;22917:14;22910:58;22793:182;:::o;22981:175::-;23121:27;23117:1;23109:6;23105:14;23098:51;22981:175;:::o;23162:180::-;23302:32;23298:1;23290:6;23286:14;23279:56;23162:180;:::o;23348:122::-;23421:24;23439:5;23421:24;:::i;:::-;23414:5;23411:35;23401:63;;23460:1;23457;23450:12;23401:63;23348:122;:::o;23476:116::-;23546:21;23561:5;23546:21;:::i;:::-;23539:5;23536:32;23526:60;;23582:1;23579;23572:12;23526:60;23476:116;:::o;23598:120::-;23670:23;23687:5;23670:23;:::i;:::-;23663:5;23660:34;23650:62;;23708:1;23705;23698:12;23650:62;23598:120;:::o;23724:122::-;23797:24;23815:5;23797:24;:::i;:::-;23790:5;23787:35;23777:63;;23836:1;23833;23826:12;23777:63;23724:122;:::o
Swarm Source
ipfs://e31d803760e8622ed9f04f8b699452bd646ae3f04deb4a828b26bcd830d9411d