Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
4,000 APOLLO
Holders
990
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 APOLLOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
APOLLO
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-12 */ // SPDX-License-Identifier: MIT // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: erc721a/contracts/extensions/IERC721AQueryable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File: erc721a/contracts/extensions/ERC721AQueryable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/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: APOLLO.sol pragma solidity ^0.8.4; contract APOLLO is ERC721AQueryable, Ownable { using Strings for uint256; uint256 public constant TOTAL_MAX_SUPPLY = 4000; uint256 public totalFreeMints = 1000; uint256 public maxFreeMintPerWallet = 1; uint256 public maxPublicMintPerWallet = 20; uint256 public publicTokenPrice = .0025 ether; string _contractURI; bool public saleStarted = false; uint256 public freeMintCount; mapping(address => uint256) public freeMintClaimed; string private _baseTokenURI; constructor() ERC721A("APOLLO", "APOLLO") {} modifier callerIsUser() { require(tx.origin == msg.sender, 'APOLLO: The caller is another contract'); _; } modifier underMaxSupply(uint256 _quantity) { require( _totalMinted() + _quantity <= TOTAL_MAX_SUPPLY, "APOLLO: Purchase exceeds max supply" ); _; } function mint(uint256 _quantity) external payable callerIsUser underMaxSupply(_quantity) { require(balanceOf(msg.sender) < maxPublicMintPerWallet, "APOLLO: Mint limit exceeded"); require(saleStarted, "APOLLO: Sale has not begun"); if (_totalMinted() < (TOTAL_MAX_SUPPLY)) { if (freeMintCount >= totalFreeMints) { require(msg.value >= _quantity * publicTokenPrice, "APOLLO: More ETH required to save one of the survivors!"); _mint(msg.sender, _quantity); } else if (freeMintClaimed[msg.sender] < maxFreeMintPerWallet) { uint256 _mintableFreeQuantity = maxFreeMintPerWallet - freeMintClaimed[msg.sender]; if (_quantity <= _mintableFreeQuantity) { freeMintCount += _quantity; freeMintClaimed[msg.sender] += _quantity; } else { freeMintCount += _mintableFreeQuantity; freeMintClaimed[msg.sender] += _mintableFreeQuantity; require( msg.value >= (_quantity - _mintableFreeQuantity) * publicTokenPrice, "APOLLO: Insufficient ETH" ); } _mint(msg.sender, _quantity); } else { require(msg.value >= (_quantity * publicTokenPrice), "APOLLO: Not enough ETH to save one of the survivors"); _mint(msg.sender, _quantity); } } } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 tokenId) public view virtual override(ERC721A, IERC721A) returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function ownerMint(uint256 _numberToMint) external onlyOwner underMaxSupply(_numberToMint) { _mint(msg.sender, _numberToMint); } function ownerMintToAddress(address _recipient, uint256 _numberToMint) external onlyOwner underMaxSupply(_numberToMint) { _mint(_recipient, _numberToMint); } function setFreeMintCount(uint256 _count) external onlyOwner { totalFreeMints = _count; } function setMaxFreeMintPerWallet(uint256 _count) external onlyOwner { maxFreeMintPerWallet = _count; } function setMaxPublicMintPerWallet(uint256 _count) external onlyOwner { maxPublicMintPerWallet = _count; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } // Storefront metadata // https://docs.opensea.io/docs/contract-level-metadata function contractURI() public view returns (string memory) { return _contractURI; } function setContractURI(string memory _URI) external onlyOwner { _contractURI = _URI; } function withdrawFunds() external onlyOwner { (bool success, ) = msg.sender.call{ value: address(this).balance }(""); require(success, "APOLLO: Transfer failed."); } function withdrawFundsToAddress(address _address, uint256 amount) external onlyOwner { (bool success, ) = _address.call{ value: amount }(""); require(success, "APOLLO: Transfer failed."); } function flipSaleStarted() external onlyOwner { saleStarted = !saleStarted; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOTAL_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintCount","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":"maxFreeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"_numberToMint","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_numberToMint","type":"uint256"}],"name":"ownerMintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setFreeMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxPublicMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFundsToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526103e86009556001600a556014600b556608e1bc9bf04000600c55600e805460ff191690553480156200003657600080fd5b5060408051808201825260068082526541504f4c4c4f60d01b602080840182905284518086019095529184529083015290600262000075838262000194565b50600362000084828262000194565b505060016000555062000097336200009d565b62000260565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200011a57607f821691505b6020821081036200013b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018f57600081815260208120601f850160051c810160208610156200016a5750805b601f850160051c820191505b818110156200018b5782815560010162000176565b5050505b505050565b81516001600160401b03811115620001b057620001b0620000ef565b620001c881620001c1845462000105565b8462000141565b602080601f831160018114620002005760008415620001e75750858301515b600019600386901b1c1916600185901b1785556200018b565b600085815260208120601f198616915b82811015620002315788860151825594840194600190910190840162000210565b5085821015620002505787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6124b880620002706000396000f3fe6080604052600436106102515760003560e01c8063857c4b6211610139578063c23dc68f116100b6578063e8a3d4851161007a578063e8a3d4851461069b578063e985e9c5146106b0578063efdcb04a146106f9578063f19e75d41461070f578063f2fde38b1461072f578063f77b1edd1461074f57600080fd5b8063c23dc68f146105eb578063c87b56dd14610618578063dc33e68114610638578063e0ec7c3614610658578063e55f58bb1461068557600080fd5b806399a2557a116100fd57806399a2557a146105655780639aaf21f414610585578063a0712d68146105a5578063a22cb465146105b8578063b88d4fde146105d857600080fd5b8063857c4b62146104e7578063899d7b38146104fd5780638da5cb5b14610512578063938e3d7b1461053057806395d89b411461055057600080fd5b80634c10337c116101d25780636352211e116101965780636352211e1461043957806365b1de201461045957806370a082311461046f578063715018a61461048f578063845bb3bb146104a45780638462151c146104ba57600080fd5b80634c10337c1461039c5780634f7f8976146103b257806355f804b3146103d25780635bbb2177146103f25780635c474f9e1461041f57600080fd5b806323b872dd1161021957806323b872dd1461032157806324600fc314610334578063253ca934146103495780633267838f1461036957806342842e0e1461038957600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806318160ddd146102fa575b600080fd5b34801561026257600080fd5b50610276610271366004611c91565b61076f565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107c1565b6040516102829190611cfe565b3480156102b957600080fd5b506102cd6102c8366004611d11565b610853565b6040516001600160a01b039091168152602001610282565b6102f86102f3366004611d46565b610897565b005b34801561030657600080fd5b5060015460005403600019015b604051908152602001610282565b6102f861032f366004611d70565b610937565b34801561034057600080fd5b506102f8610ad0565b34801561035557600080fd5b506102f8610364366004611d11565b610b73565b34801561037557600080fd5b506102f8610384366004611d11565b610b80565b6102f8610397366004611d70565b610b8d565b3480156103a857600080fd5b50610313600c5481565b3480156103be57600080fd5b506102f86103cd366004611d46565b610bad565b3480156103de57600080fd5b506102f86103ed366004611dac565b610c53565b3480156103fe57600080fd5b5061041261040d366004611e1d565b610c68565b6040516102829190611ebb565b34801561042b57600080fd5b50600e546102769060ff1681565b34801561044557600080fd5b506102cd610454366004611d11565b610d33565b34801561046557600080fd5b50610313610fa081565b34801561047b57600080fd5b5061031361048a366004611efd565b610d3e565b34801561049b57600080fd5b506102f8610d8c565b3480156104b057600080fd5b50610313600a5481565b3480156104c657600080fd5b506104da6104d5366004611efd565b610da0565b6040516102829190611f18565b3480156104f357600080fd5b50610313600b5481565b34801561050957600080fd5b506102f8610ea8565b34801561051e57600080fd5b506008546001600160a01b03166102cd565b34801561053c57600080fd5b506102f861054b366004611fdb565b610ec4565b34801561055c57600080fd5b506102a0610edc565b34801561057157600080fd5b506104da610580366004612023565b610eeb565b34801561059157600080fd5b506102f86105a0366004611d46565b611072565b6102f86105b3366004611d11565b6110be565b3480156105c457600080fd5b506102f86105d3366004612056565b611451565b6102f86105e6366004612092565b6114bd565b3480156105f757600080fd5b5061060b610606366004611d11565b611507565b604051610282919061210d565b34801561062457600080fd5b506102a0610633366004611d11565b61158f565b34801561064457600080fd5b50610313610653366004611efd565b611612565b34801561066457600080fd5b50610313610673366004611efd565b60106020526000908152604090205481565b34801561069157600080fd5b50610313600f5481565b3480156106a757600080fd5b506102a061163c565b3480156106bc57600080fd5b506102766106cb36600461211b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070557600080fd5b5061031360095481565b34801561071b57600080fd5b506102f861072a366004611d11565b61164b565b34801561073b57600080fd5b506102f861074a366004611efd565b61168d565b34801561075b57600080fd5b506102f861076a366004611d11565b611703565b60006301ffc9a760e01b6001600160e01b0319831614806107a057506380ac58cd60e01b6001600160e01b03198316145b806107bb5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107d09061214e565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc9061214e565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b5050505050905090565b600061085e82611710565b61087b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108a282610d33565b9050336001600160a01b038216146108db576108be81336106cb565b6108db576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061094282611745565b9050836001600160a01b0316816001600160a01b0316146109755760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109c2576109a586336106cb565b6109c257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109e957604051633a954ecd60e21b815260040160405180910390fd5b80156109f457600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a8657600184016000818152600460205260408120549003610a84576000548114610a845760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610ad86117b4565b604051600090339047908381818185875af1925050503d8060008114610b1a576040519150601f19603f3d011682016040523d82523d6000602084013e610b1f565b606091505b5050905080610b705760405162461bcd60e51b815260206004820152601860248201527720a827a626279d102a3930b739b332b9103330b4b632b21760411b60448201526064015b60405180910390fd5b50565b610b7b6117b4565b600955565b610b886117b4565b600b55565b610ba8838383604051806020016040528060008152506114bd565b505050565b610bb56117b4565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610c02576040519150601f19603f3d011682016040523d82523d6000602084013e610c07565b606091505b5050905080610ba85760405162461bcd60e51b815260206004820152601860248201527720a827a626279d102a3930b739b332b9103330b4b632b21760411b6044820152606401610b67565b610c5b6117b4565b6011610ba88284836121ce565b6060816000816001600160401b03811115610c8557610c85611f50565b604051908082528060200260200182016040528015610cd757816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610ca35790505b50905060005b828114610d2a57610d05868683818110610cf957610cf961228e565b90506020020135611507565b828281518110610d1757610d1761228e565b6020908102919091010152600101610cdd565b50949350505050565b60006107bb82611745565b60006001600160a01b038216610d67576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610d946117b4565b610d9e600061180e565b565b60606000806000610db085610d3e565b90506000816001600160401b03811115610dcc57610dcc611f50565b604051908082528060200260200182016040528015610df5578160200160208202803683370190505b509050610e2260408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610e9c57610e3581611860565b91508160400151610e945781516001600160a01b031615610e5557815194505b876001600160a01b0316856001600160a01b031603610e945780838780600101985081518110610e8757610e8761228e565b6020026020010181815250505b600101610e25565b50909695505050505050565b610eb06117b4565b600e805460ff19811660ff90911615179055565b610ecc6117b4565b600d610ed882826122a4565b5050565b6060600380546107d09061214e565b6060818310610f0d57604051631960ccad60e11b815260040160405180910390fd5b600080610f1960005490565b90506001851015610f2957600194505b80841115610f35578093505b6000610f4087610d3e565b905084861015610f5f5785850381811015610f59578091505b50610f63565b5060005b6000816001600160401b03811115610f7d57610f7d611f50565b604051908082528060200260200182016040528015610fa6578160200160208202803683370190505b50905081600003610fbc57935061106b92505050565b6000610fc788611507565b905060008160400151610fd8575080515b885b888114158015610fea5750848714155b1561105f57610ff881611860565b925082604001516110575782516001600160a01b03161561101857825191505b8a6001600160a01b0316826001600160a01b031603611057578084888060010199508151811061104a5761104a61228e565b6020026020010181815250505b600101610fda565b50505092835250909150505b9392505050565b61107a6117b4565b80610fa08161108c6000546000190190565b6110969190612379565b11156110b45760405162461bcd60e51b8152600401610b679061238c565b610ba8838361189c565b32331461111c5760405162461bcd60e51b815260206004820152602660248201527f41504f4c4c4f3a205468652063616c6c657220697320616e6f7468657220636f6044820152651b9d1c9858dd60d21b6064820152608401610b67565b80610fa08161112e6000546000190190565b6111389190612379565b11156111565760405162461bcd60e51b8152600401610b679061238c565b600b5461116233610d3e565b106111af5760405162461bcd60e51b815260206004820152601b60248201527f41504f4c4c4f3a204d696e74206c696d697420657863656564656400000000006044820152606401610b67565b600e5460ff166112015760405162461bcd60e51b815260206004820152601a60248201527f41504f4c4c4f3a2053616c6520686173206e6f7420626567756e0000000000006044820152606401610b67565b610fa06112116000546000190190565b1015610ed857600954600f54106112ae57600c5461122f90836123cf565b3410156112a45760405162461bcd60e51b815260206004820152603760248201527f41504f4c4c4f3a204d6f72652045544820726571756972656420746f2073617660448201527f65206f6e65206f6620746865207375727669766f7273210000000000000000006064820152608401610b67565b610ed8338361189c565b600a543360009081526010602052604090205410156113d95733600090815260106020526040812054600a546112e491906123e6565b905080831161132e5782600f60008282546112ff9190612379565b90915550503360009081526010602052604081208054859290611323908490612379565b909155506113cf9050565b80600f60008282546113409190612379565b90915550503360009081526010602052604081208054839290611364908490612379565b9091555050600c5461137682856123e6565b61138091906123cf565b3410156113cf5760405162461bcd60e51b815260206004820152601860248201527f41504f4c4c4f3a20496e73756666696369656e742045544800000000000000006044820152606401610b67565b610ba8338461189c565b600c546113e690836123cf565b3410156112a45760405162461bcd60e51b815260206004820152603360248201527f41504f4c4c4f3a204e6f7420656e6f7567682045544820746f2073617665206f6044820152726e65206f6620746865207375727669766f727360681b6064820152608401610b67565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114c8848484610937565b6001600160a01b0383163b15611501576114e48484848461199a565b611501576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061156057506000548310155b1561156b5792915050565b61157483611860565b90508060400151156115865792915050565b61106b83611a86565b606061159a82611710565b6115b757604051630a14c4b560e41b815260040160405180910390fd5b60006115c1611abb565b905080516000036115e1576040518060200160405280600081525061106b565b806115eb84611aca565b6040516020016115fc9291906123f9565b6040516020818303038152906040529392505050565b6001600160a01b038116600090815260056020526040808220546001600160401b03911c166107bb565b6060600d80546107d09061214e565b6116536117b4565b80610fa0816116656000546000190190565b61166f9190612379565b11156112a45760405162461bcd60e51b8152600401610b679061238c565b6116956117b4565b6001600160a01b0381166116fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b67565b610b708161180e565b61170b6117b4565b600a55565b600081600111158015611724575060005482105b80156107bb575050600090815260046020526040902054600160e01b161590565b6000818060011161179b5760005481101561179b5760008181526004602052604081205490600160e01b82169003611799575b8060000361106b575060001901600081815260046020526040902054611778565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610d9e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b67565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160808101825260008082526020820181905291810182905260608101919091526000828152600460205260409020546107bb90611b5c565b60008054908290036118c15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461197057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611938565b508160000361199157604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119cf903390899088908890600401612428565b6020604051808303816000875af1925050508015611a0a575060408051601f3d908101601f19168201909252611a0791810190612465565b60015b611a68573d808015611a38576040519150601f19603f3d011682016040523d82523d6000602084013e611a3d565b606091505b508051600003611a60576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6040805160808101825260008082526020820181905291810182905260608101919091526107bb611ab683611745565b611b5c565b6060601180546107d09061214e565b60606000611ad783611ba3565b60010190506000816001600160401b03811115611af657611af6611f50565b6040519080825280601f01601f191660200182016040528015611b20576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611b2a57509392505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611be25772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611c0e576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611c2c57662386f26fc10000830492506010015b6305f5e1008310611c44576305f5e100830492506008015b6127108310611c5857612710830492506004015b60648310611c6a576064830492506002015b600a83106107bb5760010192915050565b6001600160e01b031981168114610b7057600080fd5b600060208284031215611ca357600080fd5b813561106b81611c7b565b60005b83811015611cc9578181015183820152602001611cb1565b50506000910152565b60008151808452611cea816020860160208601611cae565b601f01601f19169290920160200192915050565b60208152600061106b6020830184611cd2565b600060208284031215611d2357600080fd5b5035919050565b80356001600160a01b0381168114611d4157600080fd5b919050565b60008060408385031215611d5957600080fd5b611d6283611d2a565b946020939093013593505050565b600080600060608486031215611d8557600080fd5b611d8e84611d2a565b9250611d9c60208501611d2a565b9150604084013590509250925092565b60008060208385031215611dbf57600080fd5b82356001600160401b0380821115611dd657600080fd5b818501915085601f830112611dea57600080fd5b813581811115611df957600080fd5b866020828501011115611e0b57600080fd5b60209290920196919550909350505050565b60008060208385031215611e3057600080fd5b82356001600160401b0380821115611e4757600080fd5b818501915085601f830112611e5b57600080fd5b813581811115611e6a57600080fd5b8660208260051b8501011115611e0b57600080fd5b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610e9c57611eea838551611e7f565b9284019260809290920191600101611ed7565b600060208284031215611f0f57600080fd5b61106b82611d2a565b6020808252825182820181905260009190848201906040850190845b81811015610e9c57835183529284019291840191600101611f34565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611f8057611f80611f50565b604051601f8501601f19908116603f01168101908282118183101715611fa857611fa8611f50565b81604052809350858152868686011115611fc157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fed57600080fd5b81356001600160401b0381111561200357600080fd5b8201601f8101841361201457600080fd5b611a7e84823560208401611f66565b60008060006060848603121561203857600080fd5b61204184611d2a565b95602085013595506040909401359392505050565b6000806040838503121561206957600080fd5b61207283611d2a565b91506020830135801515811461208757600080fd5b809150509250929050565b600080600080608085870312156120a857600080fd5b6120b185611d2a565b93506120bf60208601611d2a565b92506040850135915060608501356001600160401b038111156120e157600080fd5b8501601f810187136120f257600080fd5b61210187823560208401611f66565b91505092959194509250565b608081016107bb8284611e7f565b6000806040838503121561212e57600080fd5b61213783611d2a565b915061214560208401611d2a565b90509250929050565b600181811c9082168061216257607f821691505b60208210810361218257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610ba857600081815260208120601f850160051c810160208610156121af5750805b601f850160051c820191505b81811015610ac8578281556001016121bb565b6001600160401b038311156121e5576121e5611f50565b6121f9836121f3835461214e565b83612188565b6000601f84116001811461222d57600085156122155750838201355b600019600387901b1c1916600186901b178355612287565b600083815260209020601f19861690835b8281101561225e578685013582556020948501946001909201910161223e565b508682101561227b5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052603260045260246000fd5b81516001600160401b038111156122bd576122bd611f50565b6122d1816122cb845461214e565b84612188565b602080601f83116001811461230657600084156122ee5750858301515b600019600386901b1c1916600185901b178555610ac8565b600085815260208120601f198616915b8281101561233557888601518255948401946001909101908401612316565b50858210156123535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808201808211156107bb576107bb612363565b60208082526023908201527f41504f4c4c4f3a2050757263686173652065786365656473206d617820737570604082015262706c7960e81b606082015260800190565b80820281158282048414176107bb576107bb612363565b818103818111156107bb576107bb612363565b6000835161240b818460208801611cae565b83519083019061241f818360208801611cae565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061245b90830184611cd2565b9695505050505050565b60006020828403121561247757600080fd5b815161106b81611c7b56fea2646970667358221220af511b18b19f3ecf4e59a58e6754bc1cb79793e9ede8b066ac204a1789df4f4664736f6c63430008120033
Deployed Bytecode
0x6080604052600436106102515760003560e01c8063857c4b6211610139578063c23dc68f116100b6578063e8a3d4851161007a578063e8a3d4851461069b578063e985e9c5146106b0578063efdcb04a146106f9578063f19e75d41461070f578063f2fde38b1461072f578063f77b1edd1461074f57600080fd5b8063c23dc68f146105eb578063c87b56dd14610618578063dc33e68114610638578063e0ec7c3614610658578063e55f58bb1461068557600080fd5b806399a2557a116100fd57806399a2557a146105655780639aaf21f414610585578063a0712d68146105a5578063a22cb465146105b8578063b88d4fde146105d857600080fd5b8063857c4b62146104e7578063899d7b38146104fd5780638da5cb5b14610512578063938e3d7b1461053057806395d89b411461055057600080fd5b80634c10337c116101d25780636352211e116101965780636352211e1461043957806365b1de201461045957806370a082311461046f578063715018a61461048f578063845bb3bb146104a45780638462151c146104ba57600080fd5b80634c10337c1461039c5780634f7f8976146103b257806355f804b3146103d25780635bbb2177146103f25780635c474f9e1461041f57600080fd5b806323b872dd1161021957806323b872dd1461032157806324600fc314610334578063253ca934146103495780633267838f1461036957806342842e0e1461038957600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806318160ddd146102fa575b600080fd5b34801561026257600080fd5b50610276610271366004611c91565b61076f565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107c1565b6040516102829190611cfe565b3480156102b957600080fd5b506102cd6102c8366004611d11565b610853565b6040516001600160a01b039091168152602001610282565b6102f86102f3366004611d46565b610897565b005b34801561030657600080fd5b5060015460005403600019015b604051908152602001610282565b6102f861032f366004611d70565b610937565b34801561034057600080fd5b506102f8610ad0565b34801561035557600080fd5b506102f8610364366004611d11565b610b73565b34801561037557600080fd5b506102f8610384366004611d11565b610b80565b6102f8610397366004611d70565b610b8d565b3480156103a857600080fd5b50610313600c5481565b3480156103be57600080fd5b506102f86103cd366004611d46565b610bad565b3480156103de57600080fd5b506102f86103ed366004611dac565b610c53565b3480156103fe57600080fd5b5061041261040d366004611e1d565b610c68565b6040516102829190611ebb565b34801561042b57600080fd5b50600e546102769060ff1681565b34801561044557600080fd5b506102cd610454366004611d11565b610d33565b34801561046557600080fd5b50610313610fa081565b34801561047b57600080fd5b5061031361048a366004611efd565b610d3e565b34801561049b57600080fd5b506102f8610d8c565b3480156104b057600080fd5b50610313600a5481565b3480156104c657600080fd5b506104da6104d5366004611efd565b610da0565b6040516102829190611f18565b3480156104f357600080fd5b50610313600b5481565b34801561050957600080fd5b506102f8610ea8565b34801561051e57600080fd5b506008546001600160a01b03166102cd565b34801561053c57600080fd5b506102f861054b366004611fdb565b610ec4565b34801561055c57600080fd5b506102a0610edc565b34801561057157600080fd5b506104da610580366004612023565b610eeb565b34801561059157600080fd5b506102f86105a0366004611d46565b611072565b6102f86105b3366004611d11565b6110be565b3480156105c457600080fd5b506102f86105d3366004612056565b611451565b6102f86105e6366004612092565b6114bd565b3480156105f757600080fd5b5061060b610606366004611d11565b611507565b604051610282919061210d565b34801561062457600080fd5b506102a0610633366004611d11565b61158f565b34801561064457600080fd5b50610313610653366004611efd565b611612565b34801561066457600080fd5b50610313610673366004611efd565b60106020526000908152604090205481565b34801561069157600080fd5b50610313600f5481565b3480156106a757600080fd5b506102a061163c565b3480156106bc57600080fd5b506102766106cb36600461211b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070557600080fd5b5061031360095481565b34801561071b57600080fd5b506102f861072a366004611d11565b61164b565b34801561073b57600080fd5b506102f861074a366004611efd565b61168d565b34801561075b57600080fd5b506102f861076a366004611d11565b611703565b60006301ffc9a760e01b6001600160e01b0319831614806107a057506380ac58cd60e01b6001600160e01b03198316145b806107bb5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107d09061214e565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc9061214e565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b5050505050905090565b600061085e82611710565b61087b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108a282610d33565b9050336001600160a01b038216146108db576108be81336106cb565b6108db576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061094282611745565b9050836001600160a01b0316816001600160a01b0316146109755760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109c2576109a586336106cb565b6109c257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109e957604051633a954ecd60e21b815260040160405180910390fd5b80156109f457600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a8657600184016000818152600460205260408120549003610a84576000548114610a845760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610ad86117b4565b604051600090339047908381818185875af1925050503d8060008114610b1a576040519150601f19603f3d011682016040523d82523d6000602084013e610b1f565b606091505b5050905080610b705760405162461bcd60e51b815260206004820152601860248201527720a827a626279d102a3930b739b332b9103330b4b632b21760411b60448201526064015b60405180910390fd5b50565b610b7b6117b4565b600955565b610b886117b4565b600b55565b610ba8838383604051806020016040528060008152506114bd565b505050565b610bb56117b4565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610c02576040519150601f19603f3d011682016040523d82523d6000602084013e610c07565b606091505b5050905080610ba85760405162461bcd60e51b815260206004820152601860248201527720a827a626279d102a3930b739b332b9103330b4b632b21760411b6044820152606401610b67565b610c5b6117b4565b6011610ba88284836121ce565b6060816000816001600160401b03811115610c8557610c85611f50565b604051908082528060200260200182016040528015610cd757816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610ca35790505b50905060005b828114610d2a57610d05868683818110610cf957610cf961228e565b90506020020135611507565b828281518110610d1757610d1761228e565b6020908102919091010152600101610cdd565b50949350505050565b60006107bb82611745565b60006001600160a01b038216610d67576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610d946117b4565b610d9e600061180e565b565b60606000806000610db085610d3e565b90506000816001600160401b03811115610dcc57610dcc611f50565b604051908082528060200260200182016040528015610df5578160200160208202803683370190505b509050610e2260408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610e9c57610e3581611860565b91508160400151610e945781516001600160a01b031615610e5557815194505b876001600160a01b0316856001600160a01b031603610e945780838780600101985081518110610e8757610e8761228e565b6020026020010181815250505b600101610e25565b50909695505050505050565b610eb06117b4565b600e805460ff19811660ff90911615179055565b610ecc6117b4565b600d610ed882826122a4565b5050565b6060600380546107d09061214e565b6060818310610f0d57604051631960ccad60e11b815260040160405180910390fd5b600080610f1960005490565b90506001851015610f2957600194505b80841115610f35578093505b6000610f4087610d3e565b905084861015610f5f5785850381811015610f59578091505b50610f63565b5060005b6000816001600160401b03811115610f7d57610f7d611f50565b604051908082528060200260200182016040528015610fa6578160200160208202803683370190505b50905081600003610fbc57935061106b92505050565b6000610fc788611507565b905060008160400151610fd8575080515b885b888114158015610fea5750848714155b1561105f57610ff881611860565b925082604001516110575782516001600160a01b03161561101857825191505b8a6001600160a01b0316826001600160a01b031603611057578084888060010199508151811061104a5761104a61228e565b6020026020010181815250505b600101610fda565b50505092835250909150505b9392505050565b61107a6117b4565b80610fa08161108c6000546000190190565b6110969190612379565b11156110b45760405162461bcd60e51b8152600401610b679061238c565b610ba8838361189c565b32331461111c5760405162461bcd60e51b815260206004820152602660248201527f41504f4c4c4f3a205468652063616c6c657220697320616e6f7468657220636f6044820152651b9d1c9858dd60d21b6064820152608401610b67565b80610fa08161112e6000546000190190565b6111389190612379565b11156111565760405162461bcd60e51b8152600401610b679061238c565b600b5461116233610d3e565b106111af5760405162461bcd60e51b815260206004820152601b60248201527f41504f4c4c4f3a204d696e74206c696d697420657863656564656400000000006044820152606401610b67565b600e5460ff166112015760405162461bcd60e51b815260206004820152601a60248201527f41504f4c4c4f3a2053616c6520686173206e6f7420626567756e0000000000006044820152606401610b67565b610fa06112116000546000190190565b1015610ed857600954600f54106112ae57600c5461122f90836123cf565b3410156112a45760405162461bcd60e51b815260206004820152603760248201527f41504f4c4c4f3a204d6f72652045544820726571756972656420746f2073617660448201527f65206f6e65206f6620746865207375727669766f7273210000000000000000006064820152608401610b67565b610ed8338361189c565b600a543360009081526010602052604090205410156113d95733600090815260106020526040812054600a546112e491906123e6565b905080831161132e5782600f60008282546112ff9190612379565b90915550503360009081526010602052604081208054859290611323908490612379565b909155506113cf9050565b80600f60008282546113409190612379565b90915550503360009081526010602052604081208054839290611364908490612379565b9091555050600c5461137682856123e6565b61138091906123cf565b3410156113cf5760405162461bcd60e51b815260206004820152601860248201527f41504f4c4c4f3a20496e73756666696369656e742045544800000000000000006044820152606401610b67565b610ba8338461189c565b600c546113e690836123cf565b3410156112a45760405162461bcd60e51b815260206004820152603360248201527f41504f4c4c4f3a204e6f7420656e6f7567682045544820746f2073617665206f6044820152726e65206f6620746865207375727669766f727360681b6064820152608401610b67565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114c8848484610937565b6001600160a01b0383163b15611501576114e48484848461199a565b611501576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061156057506000548310155b1561156b5792915050565b61157483611860565b90508060400151156115865792915050565b61106b83611a86565b606061159a82611710565b6115b757604051630a14c4b560e41b815260040160405180910390fd5b60006115c1611abb565b905080516000036115e1576040518060200160405280600081525061106b565b806115eb84611aca565b6040516020016115fc9291906123f9565b6040516020818303038152906040529392505050565b6001600160a01b038116600090815260056020526040808220546001600160401b03911c166107bb565b6060600d80546107d09061214e565b6116536117b4565b80610fa0816116656000546000190190565b61166f9190612379565b11156112a45760405162461bcd60e51b8152600401610b679061238c565b6116956117b4565b6001600160a01b0381166116fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b67565b610b708161180e565b61170b6117b4565b600a55565b600081600111158015611724575060005482105b80156107bb575050600090815260046020526040902054600160e01b161590565b6000818060011161179b5760005481101561179b5760008181526004602052604081205490600160e01b82169003611799575b8060000361106b575060001901600081815260046020526040902054611778565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610d9e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b67565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160808101825260008082526020820181905291810182905260608101919091526000828152600460205260409020546107bb90611b5c565b60008054908290036118c15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461197057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611938565b508160000361199157604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119cf903390899088908890600401612428565b6020604051808303816000875af1925050508015611a0a575060408051601f3d908101601f19168201909252611a0791810190612465565b60015b611a68573d808015611a38576040519150601f19603f3d011682016040523d82523d6000602084013e611a3d565b606091505b508051600003611a60576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6040805160808101825260008082526020820181905291810182905260608101919091526107bb611ab683611745565b611b5c565b6060601180546107d09061214e565b60606000611ad783611ba3565b60010190506000816001600160401b03811115611af657611af6611f50565b6040519080825280601f01601f191660200182016040528015611b20576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611b2a57509392505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611be25772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611c0e576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611c2c57662386f26fc10000830492506010015b6305f5e1008310611c44576305f5e100830492506008015b6127108310611c5857612710830492506004015b60648310611c6a576064830492506002015b600a83106107bb5760010192915050565b6001600160e01b031981168114610b7057600080fd5b600060208284031215611ca357600080fd5b813561106b81611c7b565b60005b83811015611cc9578181015183820152602001611cb1565b50506000910152565b60008151808452611cea816020860160208601611cae565b601f01601f19169290920160200192915050565b60208152600061106b6020830184611cd2565b600060208284031215611d2357600080fd5b5035919050565b80356001600160a01b0381168114611d4157600080fd5b919050565b60008060408385031215611d5957600080fd5b611d6283611d2a565b946020939093013593505050565b600080600060608486031215611d8557600080fd5b611d8e84611d2a565b9250611d9c60208501611d2a565b9150604084013590509250925092565b60008060208385031215611dbf57600080fd5b82356001600160401b0380821115611dd657600080fd5b818501915085601f830112611dea57600080fd5b813581811115611df957600080fd5b866020828501011115611e0b57600080fd5b60209290920196919550909350505050565b60008060208385031215611e3057600080fd5b82356001600160401b0380821115611e4757600080fd5b818501915085601f830112611e5b57600080fd5b813581811115611e6a57600080fd5b8660208260051b8501011115611e0b57600080fd5b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610e9c57611eea838551611e7f565b9284019260809290920191600101611ed7565b600060208284031215611f0f57600080fd5b61106b82611d2a565b6020808252825182820181905260009190848201906040850190845b81811015610e9c57835183529284019291840191600101611f34565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611f8057611f80611f50565b604051601f8501601f19908116603f01168101908282118183101715611fa857611fa8611f50565b81604052809350858152868686011115611fc157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fed57600080fd5b81356001600160401b0381111561200357600080fd5b8201601f8101841361201457600080fd5b611a7e84823560208401611f66565b60008060006060848603121561203857600080fd5b61204184611d2a565b95602085013595506040909401359392505050565b6000806040838503121561206957600080fd5b61207283611d2a565b91506020830135801515811461208757600080fd5b809150509250929050565b600080600080608085870312156120a857600080fd5b6120b185611d2a565b93506120bf60208601611d2a565b92506040850135915060608501356001600160401b038111156120e157600080fd5b8501601f810187136120f257600080fd5b61210187823560208401611f66565b91505092959194509250565b608081016107bb8284611e7f565b6000806040838503121561212e57600080fd5b61213783611d2a565b915061214560208401611d2a565b90509250929050565b600181811c9082168061216257607f821691505b60208210810361218257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610ba857600081815260208120601f850160051c810160208610156121af5750805b601f850160051c820191505b81811015610ac8578281556001016121bb565b6001600160401b038311156121e5576121e5611f50565b6121f9836121f3835461214e565b83612188565b6000601f84116001811461222d57600085156122155750838201355b600019600387901b1c1916600186901b178355612287565b600083815260209020601f19861690835b8281101561225e578685013582556020948501946001909201910161223e565b508682101561227b5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052603260045260246000fd5b81516001600160401b038111156122bd576122bd611f50565b6122d1816122cb845461214e565b84612188565b602080601f83116001811461230657600084156122ee5750858301515b600019600386901b1c1916600185901b178555610ac8565b600085815260208120601f198616915b8281101561233557888601518255948401946001909101908401612316565b50858210156123535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808201808211156107bb576107bb612363565b60208082526023908201527f41504f4c4c4f3a2050757263686173652065786365656473206d617820737570604082015262706c7960e81b606082015260800190565b80820281158282048414176107bb576107bb612363565b818103818111156107bb576107bb612363565b6000835161240b818460208801611cae565b83519083019061241f818360208801611cae565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061245b90830184611cd2565b9695505050505050565b60006020828403121561247757600080fd5b815161106b81611c7b56fea2646970667358221220af511b18b19f3ecf4e59a58e6754bc1cb79793e9ede8b066ac204a1789df4f4664736f6c63430008120033
Deployed Bytecode Sourcemap
79297:4406:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18437:639;;;;;;;;;;-1:-1:-1;18437:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18437:639:0;;;;;;;;19339:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25830:218::-;;;;;;;;;;-1:-1:-1;25830:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;25830:218:0;1533:203:1;25263:408:0;;;;;;:::i;:::-;;:::i;:::-;;15090:323;;;;;;;;;;-1:-1:-1;82151:1:0;15364:12;15151:7;15348:13;:28;-1:-1:-1;;15348:46:0;15090:323;;;2324:25:1;;;2312:2;2297:18;15090:323:0;2178:177:1;29469:2825:0;;;;;;:::i;:::-;;:::i;83223:178::-;;;;;;;;;;;;;:::i;82495:97::-;;;;;;;;;;-1:-1:-1;82495:97:0;;;;;:::i;:::-;;:::i;82714:114::-;;;;;;;;;;-1:-1:-1;82714:114:0;;;;;:::i;:::-;;:::i;32390:193::-;;;;;;:::i;:::-;;:::i;79563:45::-;;;;;;;;;;;;;;;;83407:202;;;;;;;;;;-1:-1:-1;83407:202:0;;;;;:::i;:::-;;:::i;82834:100::-;;;;;;;;;;-1:-1:-1;82834:100:0;;;;;:::i;:::-;;:::i;55660:528::-;;;;;;;;;;-1:-1:-1;55660:528:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;79639:31::-;;;;;;;;;;-1:-1:-1;79639:31:0;;;;;;;;20732:152;;;;;;;;;;-1:-1:-1;20732:152:0;;;;;:::i;:::-;;:::i;79379:47::-;;;;;;;;;;;;79422:4;79379:47;;16274:233;;;;;;;;;;-1:-1:-1;16274:233:0;;;;;:::i;:::-;;:::i;78418:103::-;;;;;;;;;;;;;:::i;79472:39::-;;;;;;;;;;;;;;;;59536:900;;;;;;;;;;-1:-1:-1;59536:900:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;79516:42::-;;;;;;;;;;;;;;;;83615:85;;;;;;;;;;;;;:::i;77770:87::-;;;;;;;;;;-1:-1:-1;77843:6:0;;-1:-1:-1;;;;;77843:6:0;77770:87;;83122:95;;;;;;;;;;-1:-1:-1;83122:95:0;;;;;:::i;:::-;;:::i;19515:104::-;;;;;;;;;;;;;:::i;56576:2513::-;;;;;;;;;;-1:-1:-1;56576:2513:0;;;;;:::i;:::-;;:::i;82306:183::-;;;;;;;;;;-1:-1:-1;82306:183:0;;;;;:::i;:::-;;:::i;80166:1335::-;;;;;;:::i;:::-;;:::i;26388:234::-;;;;;;;;;;-1:-1:-1;26388:234:0;;;;;:::i;:::-;;:::i;33181:407::-;;;;;;:::i;:::-;;:::i;55073:428::-;;;;;;;;;;-1:-1:-1;55073:428:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;81621:323::-;;;;;;;;;;-1:-1:-1;81621:323:0;;;;;:::i;:::-;;:::i;81950:107::-;;;;;;;;;;-1:-1:-1;81950:107:0;;;;;:::i;:::-;;:::i;79710:50::-;;;;;;;;;;-1:-1:-1;79710:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;79675:28;;;;;;;;;;;;;;;;83025:91;;;;;;;;;;;;;:::i;26779:164::-;;;;;;;;;;-1:-1:-1;26779:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26900:25:0;;;26876:4;26900:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26779:164;79431:36;;;;;;;;;;;;;;;;82164:136;;;;;;;;;;-1:-1:-1;82164:136:0;;;;;:::i;:::-;;:::i;78676:201::-;;;;;;;;;;-1:-1:-1;78676:201:0;;;;;:::i;:::-;;:::i;82598:110::-;;;;;;;;;;-1:-1:-1;82598:110:0;;;;;:::i;:::-;;:::i;18437:639::-;18522:4;-1:-1:-1;;;;;;;;;18846:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18923:25:0;;;18846:102;:179;;;-1:-1:-1;;;;;;;;;;19000:25:0;;;18846:179;18826:199;18437:639;-1:-1:-1;;18437:639:0:o;19339:100::-;19393:13;19426:5;19419:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19339:100;:::o;25830:218::-;25906:7;25931:16;25939:7;25931;:16::i;:::-;25926:64;;25956:34;;-1:-1:-1;;;25956:34:0;;;;;;;;;;;25926:64;-1:-1:-1;26010:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;26010:30:0;;25830:218::o;25263:408::-;25352:13;25368:16;25376:7;25368;:16::i;:::-;25352:32;-1:-1:-1;49596:10:0;-1:-1:-1;;;;;25401:28:0;;;25397:175;;25449:44;25466:5;49596:10;26779:164;:::i;25449:44::-;25444:128;;25521:35;;-1:-1:-1;;;25521:35:0;;;;;;;;;;;25444:128;25584:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;25584:35:0;-1:-1:-1;;;;;25584:35:0;;;;;;;;;25635:28;;25584:24;;25635:28;;;;;;;25341:330;25263:408;;:::o;29469:2825::-;29611:27;29641;29660:7;29641:18;:27::i;:::-;29611:57;;29726:4;-1:-1:-1;;;;;29685:45:0;29701:19;-1:-1:-1;;;;;29685:45:0;;29681:86;;29739:28;;-1:-1:-1;;;29739:28:0;;;;;;;;;;;29681:86;29781:27;28577:24;;;:15;:24;;;;;28805:26;;49596:10;28202:30;;;-1:-1:-1;;;;;27895:28:0;;28180:20;;;28177:56;29967:180;;30060:43;30077:4;49596:10;26779:164;:::i;30060:43::-;30055:92;;30112:35;;-1:-1:-1;;;30112:35:0;;;;;;;;;;;30055:92;-1:-1:-1;;;;;30164:16:0;;30160:52;;30189:23;;-1:-1:-1;;;30189:23:0;;;;;;;;;;;30160:52;30361:15;30358:160;;;30501:1;30480:19;30473:30;30358:160;-1:-1:-1;;;;;30898:24:0;;;;;;;:18;:24;;;;;;30896:26;;-1:-1:-1;;30896:26:0;;;30967:22;;;;;;;;;30965:24;;-1:-1:-1;30965:24:0;;;24121:11;24096:23;24092:41;24079:63;-1:-1:-1;;;24079:63:0;31260:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;31555:47:0;;:52;;31551:627;;31660:1;31650:11;;31628:19;31783:30;;;:17;:30;;;;;;:35;;31779:384;;31921:13;;31906:11;:28;31902:242;;32068:30;;;;:17;:30;;;;;:52;;;31902:242;31609:569;31551:627;32225:7;32221:2;-1:-1:-1;;;;;32206:27:0;32215:4;-1:-1:-1;;;;;32206:27:0;;;;;;;;;;;32244:42;29600:2694;;;29469:2825;;;:::o;83223:178::-;77656:13;:11;:13::i;:::-;83293:51:::1;::::0;83275:12:::1;::::0;83293:10:::1;::::0;83317:21:::1;::::0;83275:12;83293:51;83275:12;83293:51;83317:21;83293:10;:51:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83274:70;;;83359:7;83351:44;;;::::0;-1:-1:-1;;;83351:44:0;;9724:2:1;83351:44:0::1;::::0;::::1;9706:21:1::0;9763:2;9743:18;;;9736:30;-1:-1:-1;;;9782:18:1;;;9775:54;9846:18;;83351:44:0::1;;;;;;;;;83267:134;83223:178::o:0;82495:97::-;77656:13;:11;:13::i;:::-;82563:14:::1;:23:::0;82495:97::o;82714:114::-;77656:13;:11;:13::i;:::-;82791:22:::1;:31:::0;82714:114::o;32390:193::-;32536:39;32553:4;32559:2;32563:7;32536:39;;;;;;;;;;;;:16;:39::i;:::-;32390:193;;;:::o;83407:202::-;77656:13;:11;:13::i;:::-;83500:12:::1;83518:8;-1:-1:-1::0;;;;;83518:13:0::1;83540:6;83518:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83499:53;;;83567:7;83559:44;;;::::0;-1:-1:-1;;;83559:44:0;;9724:2:1;83559:44:0::1;::::0;::::1;9706:21:1::0;9763:2;9743:18;;;9736:30;-1:-1:-1;;;9782:18:1;;;9775:54;9846:18;;83559:44:0::1;9522:348:1::0;82834:100:0;77656:13;:11;:13::i;:::-;82905::::1;:23;82921:7:::0;;82905:13;:23:::1;:::i;55660:528::-:0;55804:23;55895:8;55870:22;55895:8;-1:-1:-1;;;;;55962:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55962:36:0;;-1:-1:-1;;55962:36:0;;;;;;;;;;;;55925:73;;56018:9;56013:125;56034:14;56029:1;:19;56013:125;;56090:32;56110:8;;56119:1;56110:11;;;;;;;:::i;:::-;;;;;;;56090:19;:32::i;:::-;56074:10;56085:1;56074:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;56050:3;;56013:125;;;-1:-1:-1;56159:10:0;55660:528;-1:-1:-1;;;;55660:528:0:o;20732:152::-;20804:7;20847:27;20866:7;20847:18;:27::i;16274:233::-;16346:7;-1:-1:-1;;;;;16370:19:0;;16366:60;;16398:28;;-1:-1:-1;;;16398:28:0;;;;;;;;;;;16366:60;-1:-1:-1;;;;;;16444:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;16444:55:0;;16274:233::o;78418:103::-;77656:13;:11;:13::i;:::-;78483:30:::1;78510:1;78483:18;:30::i;:::-;78418:103::o:0;59536:900::-;59614:16;59668:19;59702:25;59742:22;59767:16;59777:5;59767:9;:16::i;:::-;59742:41;;59798:25;59840:14;-1:-1:-1;;;;;59826:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59826:29:0;;59798:57;;59870:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59870:31:0;82151:1;59916:472;59965:14;59950:11;:29;59916:472;;60017:15;60030:1;60017:12;:15::i;:::-;60005:27;;60055:9;:16;;;60096:8;60051:73;60146:14;;-1:-1:-1;;;;;60146:28:0;;60142:111;;60219:14;;;-1:-1:-1;60142:111:0;60296:5;-1:-1:-1;;;;;60275:26:0;:17;-1:-1:-1;;;;;60275:26:0;;60271:102;;60352:1;60326:8;60335:13;;;;;;60326:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;60271:102;59981:3;;59916:472;;;-1:-1:-1;60409:8:0;;59536:900;-1:-1:-1;;;;;;59536:900:0:o;83615:85::-;77656:13;:11;:13::i;:::-;83683:11:::1;::::0;;-1:-1:-1;;83668:26:0;::::1;83683:11;::::0;;::::1;83682:12;83668:26;::::0;;83615:85::o;83122:95::-;77656:13;:11;:13::i;:::-;83192:12:::1;:19;83207:4:::0;83192:12;:19:::1;:::i;:::-;;83122:95:::0;:::o;19515:104::-;19571:13;19604:7;19597:14;;;;;:::i;56576:2513::-;56719:16;56786:4;56777:5;:13;56773:45;;56799:19;;-1:-1:-1;;;56799:19:0;;;;;;;;;;;56773:45;56833:19;56867:17;56887:14;14832:7;14859:13;;14777:103;56887:14;56867:34;-1:-1:-1;82151:1:0;56979:5;:23;56975:87;;;82151:1;57023:23;;56975:87;57138:9;57131:4;:16;57127:73;;;57175:9;57168:16;;57127:73;57214:25;57242:16;57252:5;57242:9;:16::i;:::-;57214:44;;57436:4;57428:5;:12;57424:278;;;57483:12;;;57518:31;;;57514:111;;;57594:11;57574:31;;57514:111;57442:198;57424:278;;;-1:-1:-1;57685:1:0;57424:278;57716:25;57758:17;-1:-1:-1;;;;;57744:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57744:32:0;;57716:60;;57795:17;57816:1;57795:22;57791:78;;57845:8;-1:-1:-1;57838:15:0;;-1:-1:-1;;;57838:15:0;57791:78;58013:31;58047:26;58067:5;58047:19;:26::i;:::-;58013:60;;58088:25;58333:9;:16;;;58328:92;;-1:-1:-1;58390:14:0;;58328:92;58451:5;58434:478;58463:4;58458:1;:9;;:45;;;;;58486:17;58471:11;:32;;58458:45;58434:478;;;58541:15;58554:1;58541:12;:15::i;:::-;58529:27;;58579:9;:16;;;58620:8;58575:73;58670:14;;-1:-1:-1;;;;;58670:28:0;;58666:111;;58743:14;;;-1:-1:-1;58666:111:0;58820:5;-1:-1:-1;;;;;58799:26:0;:17;-1:-1:-1;;;;;58799:26:0;;58795:102;;58876:1;58850:8;58859:13;;;;;;58850:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;58795:102;58505:3;;58434:478;;;-1:-1:-1;;;58997:29:0;;;-1:-1:-1;59004:8:0;;-1:-1:-1;;56576:2513:0;;;;;;:::o;82306:183::-;77656:13;:11;:13::i;:::-;82426::::1;79422:4;80064:9;80047:14;15566:7:::0;15757:13;-1:-1:-1;;15757:31:0;;15511:296;80047:14:::1;:26;;;;:::i;:::-;:46;;80031:115;;;;-1:-1:-1::0;;;80031:115:0::1;;;;;;;:::i;:::-;82451:32:::2;82457:10;82469:13;82451:5;:32::i;80166:1335::-:0;79895:9;79908:10;79895:23;79887:74;;;;-1:-1:-1;;;79887:74:0;;14290:2:1;79887:74:0;;;14272:21:1;14329:2;14309:18;;;14302:30;14368:34;14348:18;;;14341:62;-1:-1:-1;;;14419:18:1;;;14412:36;14465:19;;79887:74:0;14088:402:1;79887:74:0;80244:9:::1;79422:4;80064:9;80047:14;15566:7:::0;15757:13;-1:-1:-1;;15757:31:0;;15511:296;80047:14:::1;:26;;;;:::i;:::-;:46;;80031:115;;;;-1:-1:-1::0;;;80031:115:0::1;;;;;;;:::i;:::-;80294:22:::2;;80270:21;80280:10;80270:9;:21::i;:::-;:46;80262:86;;;::::0;-1:-1:-1;;;80262:86:0;;14697:2:1;80262:86:0::2;::::0;::::2;14679:21:1::0;14736:2;14716:18;;;14709:30;14775:29;14755:18;;;14748:57;14822:18;;80262:86:0::2;14495:351:1::0;80262:86:0::2;80363:11;::::0;::::2;;80355:50;;;::::0;-1:-1:-1;;;80355:50:0;;15053:2:1;80355:50:0::2;::::0;::::2;15035:21:1::0;15092:2;15072:18;;;15065:30;15131:28;15111:18;;;15104:56;15177:18;;80355:50:0::2;14851:350:1::0;80355:50:0::2;79422:4;80416:14;15566:7:::0;15757:13;-1:-1:-1;;15757:31:0;;15511:296;80416:14:::2;:35;80412:1084;;;80483:14;;80466:13;;:31;80462:1027;;80543:16;::::0;80531:28:::2;::::0;:9;:28:::2;:::i;:::-;80518:9;:41;;80510:109;;;::::0;-1:-1:-1;;;80510:109:0;;15581:2:1;80510:109:0::2;::::0;::::2;15563:21:1::0;15620:2;15600:18;;;15593:30;15659:34;15639:18;;;15632:62;15730:25;15710:18;;;15703:53;15773:19;;80510:109:0::2;15379:419:1::0;80510:109:0::2;80630:28;80636:10;80648:9;80630:5;:28::i;80462:1027::-;80708:20;::::0;80694:10:::2;80678:27;::::0;;;:15:::2;:27;::::0;;;;;:50:::2;80674:815;;;80812:10;80741:29;80796:27:::0;;;:15:::2;:27;::::0;;;;;80773:20:::2;::::0;:50:::2;::::0;80796:27;80773:50:::2;:::i;:::-;80741:82;;80851:21;80838:9;:34;80834:434;;80904:9;80887:13;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;80942:10:0::2;80926:27;::::0;;;:15:::2;:27;::::0;;;;:40;;80957:9;;80926:27;:40:::2;::::0;80957:9;;80926:40:::2;:::i;:::-;::::0;;;-1:-1:-1;80834:434:0::2;::::0;-1:-1:-1;80834:434:0::2;;81014:21;80997:13;;:38;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;81064:10:0::2;81048:27;::::0;;;:15:::2;:27;::::0;;;;:52;;81079:21;;81048:27;:52:::2;::::0;81079:21;;81048:52:::2;:::i;:::-;::::0;;;-1:-1:-1;;81186:16:0::2;::::0;81149:33:::2;81161:21:::0;81149:9;:33:::2;:::i;:::-;81148:54;;;;:::i;:::-;81135:9;:67;;81113:143;;;::::0;-1:-1:-1;;;81113:143:0;;16138:2:1;81113:143:0::2;::::0;::::2;16120:21:1::0;16177:2;16157:18;;;16150:30;16216:26;16196:18;;;16189:54;16260:18;;81113:143:0::2;15936:348:1::0;81113:143:0::2;81278:28;81284:10;81296:9;81278:5;:28::i;80674:815::-;81367:16;::::0;81355:28:::2;::::0;:9;:28:::2;:::i;:::-;81341:9;:43;;81333:107;;;::::0;-1:-1:-1;;;81333:107:0;;16491:2:1;81333:107:0::2;::::0;::::2;16473:21:1::0;16530:2;16510:18;;;16503:30;16569:34;16549:18;;;16542:62;-1:-1:-1;;;16620:18:1;;;16613:49;16679:19;;81333:107:0::2;16289:415:1::0;26388:234:0;49596:10;26483:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26483:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26483:60:0;;;;;;;;;;26559:55;;540:41:1;;;26483:49:0;;49596:10;26559:55;;513:18:1;26559:55:0;;;;;;;26388:234;;:::o;33181:407::-;33356:31;33369:4;33375:2;33379:7;33356:12;:31::i;:::-;-1:-1:-1;;;;;33402:14:0;;;:19;33398:183;;33441:56;33472:4;33478:2;33482:7;33491:5;33441:30;:56::i;:::-;33436:145;;33525:40;;-1:-1:-1;;;33525:40:0;;;;;;;;;;;33436:145;33181:407;;;;:::o;55073:428::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82151:1:0;55237:7;:25;:54;;;-1:-1:-1;14832:7:0;14859:13;55266:7;:25;;55237:54;55233:103;;;55315:9;55073:428;-1:-1:-1;;55073:428:0:o;55233:103::-;55358:21;55371:7;55358:12;:21::i;:::-;55346:33;;55394:9;:16;;;55390:65;;;55434:9;55073:428;-1:-1:-1;;55073:428:0:o;55390:65::-;55472:21;55485:7;55472:12;:21::i;81621:323::-;81713:13;81740:16;81748:7;81740;:16::i;:::-;81735:59;;81765:29;;-1:-1:-1;;;81765:29:0;;;;;;;;;;;81735:59;81803:21;81827:10;:8;:10::i;:::-;81803:34;;81857:7;81851:21;81876:1;81851:26;:87;;;;;;;;;;;;;;;;;81904:7;81913:18;:7;:16;:18::i;:::-;81887:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81844:94;81621:323;-1:-1:-1;;;81621:323:0:o;81950:107::-;-1:-1:-1;;;;;16678:25:0;;82008:7;16678:25;;;:18;:25;;10571:2;16678:25;;;;-1:-1:-1;;;;;16678:50:0;;16677:82;82031:20;16589:178;83025:91;83069:13;83098:12;83091:19;;;;;:::i;82164:136::-;77656:13;:11;:13::i;:::-;82240::::1;79422:4;80064:9;80047:14;15566:7:::0;15757:13;-1:-1:-1;;15757:31:0;;15511:296;80047:14:::1;:26;;;;:::i;:::-;:46;;80031:115;;;;-1:-1:-1::0;;;80031:115:0::1;;;;;;;:::i;78676:201::-:0;77656:13;:11;:13::i;:::-;-1:-1:-1;;;;;78765:22:0;::::1;78757:73;;;::::0;-1:-1:-1;;;78757:73:0;;17412:2:1;78757:73:0::1;::::0;::::1;17394:21:1::0;17451:2;17431:18;;;17424:30;17490:34;17470:18;;;17463:62;-1:-1:-1;;;17541:18:1;;;17534:36;17587:19;;78757:73:0::1;17210:402:1::0;78757:73:0::1;78841:28;78860:8;78841:18;:28::i;82598:110::-:0;77656:13;:11;:13::i;:::-;82673:20:::1;:29:::0;82598:110::o;27201:282::-;27266:4;27322:7;82151:1;27303:26;;:66;;;;;27356:13;;27346:7;:23;27303:66;:153;;;;-1:-1:-1;;27407:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27407:44:0;:49;;27201:282::o;21887:1275::-;21954:7;21989;;82151:1;22038:23;22034:1061;;22091:13;;22084:4;:20;22080:1015;;;22129:14;22146:23;;;:17;:23;;;;;;;-1:-1:-1;;;22235:24:0;;:29;;22231:845;;22900:113;22907:6;22917:1;22907:11;22900:113;;-1:-1:-1;;;22978:6:0;22960:25;;;;:17;:25;;;;;;22900:113;;22231:845;22106:989;22080:1015;23123:31;;-1:-1:-1;;;23123:31:0;;;;;;;;;;;77935:132;77843:6;;-1:-1:-1;;;;;77843:6:0;49596:10;77999:23;77991:68;;;;-1:-1:-1;;;77991:68:0;;17819:2:1;77991:68:0;;;17801:21:1;;;17838:18;;;17831:30;17897:34;17877:18;;;17870:62;17949:18;;77991:68:0;17617:356:1;79037:191:0;79130:6;;;-1:-1:-1;;;;;79147:17:0;;;-1:-1:-1;;;;;;79147:17:0;;;;;;;79180:40;;79130:6;;;79147:17;79130:6;;79180:40;;79111:16;;79180:40;79100:128;79037:191;:::o;21335:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21463:24:0;;;;:17;:24;;;;;;21444:44;;:18;:44::i;36850:2966::-;36923:20;36946:13;;;36974;;;36970:44;;36996:18;;-1:-1:-1;;;36996:18:0;;;;;;;;;;;36970:44;-1:-1:-1;;;;;37502:22:0;;;;;;:18;:22;;;;10571:2;37502:22;;;:71;;37540:32;37528:45;;37502:71;;;37816:31;;;:17;:31;;;;;-1:-1:-1;24552:15:0;;24526:24;24522:46;24121:11;24096:23;24092:41;24089:52;24079:63;;37816:173;;38051:23;;;;37816:31;;37502:22;;38816:25;37502:22;;38669:335;39330:1;39316:12;39312:20;39270:346;39371:3;39362:7;39359:16;39270:346;;39589:7;39579:8;39576:1;39549:25;39546:1;39543;39538:59;39424:1;39411:15;39270:346;;;39274:77;39649:8;39661:1;39649:13;39645:45;;39671:19;;-1:-1:-1;;;39671:19:0;;;;;;;;;;;39645:45;39707:13;:19;-1:-1:-1;32390:193:0;;;:::o;35672:716::-;35856:88;;-1:-1:-1;;;35856:88:0;;35835:4;;-1:-1:-1;;;;;35856:45:0;;;;;:88;;49596:10;;35923:4;;35929:7;;35938:5;;35856:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35856:88:0;;;;;;;;-1:-1:-1;;35856:88:0;;;;;;;;;;;;:::i;:::-;;;35852:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36139:6;:13;36156:1;36139:18;36135:235;;36185:40;;-1:-1:-1;;;36185:40:0;;;;;;;;;;;36135:235;36328:6;36322:13;36313:6;36309:2;36305:15;36298:38;35852:529;-1:-1:-1;;;;;;36015:64:0;-1:-1:-1;;;36015:64:0;;-1:-1:-1;35852:529:0;35672:716;;;;;;:::o;21073:166::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21184:47:0;21203:27;21222:7;21203:18;:27::i;:::-;21184:18;:47::i;81507:108::-;81567:13;81596;81589:20;;;;;:::i;73748:716::-;73804:13;73855:14;73872:17;73883:5;73872:10;:17::i;:::-;73892:1;73872:21;73855:38;;73908:20;73942:6;-1:-1:-1;;;;;73931:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;73931:18:0;-1:-1:-1;73908:41:0;-1:-1:-1;74073:28:0;;;74089:2;74073:28;74130:288;-1:-1:-1;;74162:5:0;-1:-1:-1;;;74299:2:0;74288:14;;74283:30;74162:5;74270:44;74360:2;74351:11;;;-1:-1:-1;74381:21:0;74130:288;74381:21;-1:-1:-1;74439:6:0;73748:716;-1:-1:-1;;;73748:716:0:o;23261:366::-;-1:-1:-1;;;;;;;;;;;;;23371:41:0;;;;11092:3;23457:33;;;-1:-1:-1;;;;;23423:68:0;-1:-1:-1;;;23423:68:0;-1:-1:-1;;;23521:24:0;;:29;;-1:-1:-1;;;23502:48:0;;;;11613:3;23590:28;;;;-1:-1:-1;;;23561:58:0;-1:-1:-1;23261:366:0:o;70614:922::-;70667:7;;-1:-1:-1;;;70745:15:0;;70741:102;;-1:-1:-1;;;70781:15:0;;;-1:-1:-1;70825:2:0;70815:12;70741:102;70870:6;70861:5;:15;70857:102;;70906:6;70897:15;;;-1:-1:-1;70941:2:0;70931:12;70857:102;70986:6;70977:5;:15;70973:102;;71022:6;71013:15;;;-1:-1:-1;71057:2:0;71047:12;70973:102;71102:5;71093;:14;71089:99;;71137:5;71128:14;;;-1:-1:-1;71171:1:0;71161:11;71089:99;71215:5;71206;:14;71202:99;;71250:5;71241:14;;;-1:-1:-1;71284:1:0;71274:11;71202:99;71328:5;71319;:14;71315:99;;71363:5;71354:14;;;-1:-1:-1;71397:1:0;71387:11;71315:99;71441:5;71432;:14;71428:66;;71477:1;71467:11;71522:6;70614:922;-1:-1:-1;;70614:922:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:592::-;2764:6;2772;2825:2;2813:9;2804:7;2800:23;2796:32;2793:52;;;2841:1;2838;2831:12;2793:52;2881:9;2868:23;-1:-1:-1;;;;;2951:2:1;2943:6;2940:14;2937:34;;;2967:1;2964;2957:12;2937:34;3005:6;2994:9;2990:22;2980:32;;3050:7;3043:4;3039:2;3035:13;3031:27;3021:55;;3072:1;3069;3062:12;3021:55;3112:2;3099:16;3138:2;3130:6;3127:14;3124:34;;;3154:1;3151;3144:12;3124:34;3199:7;3194:2;3185:6;3181:2;3177:15;3173:24;3170:37;3167:57;;;3220:1;3217;3210:12;3167:57;3251:2;3243:11;;;;;3273:6;;-1:-1:-1;2693:592:1;;-1:-1:-1;;;;2693:592:1:o;3290:615::-;3376:6;3384;3437:2;3425:9;3416:7;3412:23;3408:32;3405:52;;;3453:1;3450;3443:12;3405:52;3493:9;3480:23;-1:-1:-1;;;;;3563:2:1;3555:6;3552:14;3549:34;;;3579:1;3576;3569:12;3549:34;3617:6;3606:9;3602:22;3592:32;;3662:7;3655:4;3651:2;3647:13;3643:27;3633:55;;3684:1;3681;3674:12;3633:55;3724:2;3711:16;3750:2;3742:6;3739:14;3736:34;;;3766:1;3763;3756:12;3736:34;3819:7;3814:2;3804:6;3801:1;3797:14;3793:2;3789:23;3785:32;3782:45;3779:65;;;3840:1;3837;3830:12;3910:349;3994:12;;-1:-1:-1;;;;;3990:38:1;3978:51;;4082:4;4071:16;;;4065:23;-1:-1:-1;;;;;4061:48:1;4045:14;;;4038:72;4173:4;4162:16;;;4156:23;4149:31;4142:39;4126:14;;;4119:63;4235:4;4224:16;;;4218:23;4243:8;4214:38;4198:14;;4191:62;3910:349::o;4264:720::-;4495:2;4547:21;;;4617:13;;4520:18;;;4639:22;;;4466:4;;4495:2;4718:15;;;;4692:2;4677:18;;;4466:4;4761:197;4775:6;4772:1;4769:13;4761:197;;;4824:52;4872:3;4863:6;4857:13;4824:52;:::i;:::-;4933:15;;;;4905:4;4896:14;;;;;4797:1;4790:9;4761:197;;4989:186;5048:6;5101:2;5089:9;5080:7;5076:23;5072:32;5069:52;;;5117:1;5114;5107:12;5069:52;5140:29;5159:9;5140:29;:::i;5180:632::-;5351:2;5403:21;;;5473:13;;5376:18;;;5495:22;;;5322:4;;5351:2;5574:15;;;;5548:2;5533:18;;;5322:4;5617:169;5631:6;5628:1;5625:13;5617:169;;;5692:13;;5680:26;;5761:15;;;;5726:12;;;;5653:1;5646:9;5617:169;;5817:127;5878:10;5873:3;5869:20;5866:1;5859:31;5909:4;5906:1;5899:15;5933:4;5930:1;5923:15;5949:632;6014:5;-1:-1:-1;;;;;6085:2:1;6077:6;6074:14;6071:40;;;6091:18;;:::i;:::-;6166:2;6160:9;6134:2;6220:15;;-1:-1:-1;;6216:24:1;;;6242:2;6212:33;6208:42;6196:55;;;6266:18;;;6286:22;;;6263:46;6260:72;;;6312:18;;:::i;:::-;6352:10;6348:2;6341:22;6381:6;6372:15;;6411:6;6403;6396:22;6451:3;6442:6;6437:3;6433:16;6430:25;6427:45;;;6468:1;6465;6458:12;6427:45;6518:6;6513:3;6506:4;6498:6;6494:17;6481:44;6573:1;6566:4;6557:6;6549;6545:19;6541:30;6534:41;;;;5949:632;;;;;:::o;6586:451::-;6655:6;6708:2;6696:9;6687:7;6683:23;6679:32;6676:52;;;6724:1;6721;6714:12;6676:52;6764:9;6751:23;-1:-1:-1;;;;;6789:6:1;6786:30;6783:50;;;6829:1;6826;6819:12;6783:50;6852:22;;6905:4;6897:13;;6893:27;-1:-1:-1;6883:55:1;;6934:1;6931;6924:12;6883:55;6957:74;7023:7;7018:2;7005:16;7000:2;6996;6992:11;6957:74;:::i;7042:322::-;7119:6;7127;7135;7188:2;7176:9;7167:7;7163:23;7159:32;7156:52;;;7204:1;7201;7194:12;7156:52;7227:29;7246:9;7227:29;:::i;:::-;7217:39;7303:2;7288:18;;7275:32;;-1:-1:-1;7354:2:1;7339:18;;;7326:32;;7042:322;-1:-1:-1;;;7042:322:1:o;7369:347::-;7434:6;7442;7495:2;7483:9;7474:7;7470:23;7466:32;7463:52;;;7511:1;7508;7501:12;7463:52;7534:29;7553:9;7534:29;:::i;:::-;7524:39;;7613:2;7602:9;7598:18;7585:32;7660:5;7653:13;7646:21;7639:5;7636:32;7626:60;;7682:1;7679;7672:12;7626:60;7705:5;7695:15;;;7369:347;;;;;:::o;7721:667::-;7816:6;7824;7832;7840;7893:3;7881:9;7872:7;7868:23;7864:33;7861:53;;;7910:1;7907;7900:12;7861:53;7933:29;7952:9;7933:29;:::i;:::-;7923:39;;7981:38;8015:2;8004:9;8000:18;7981:38;:::i;:::-;7971:48;;8066:2;8055:9;8051:18;8038:32;8028:42;;8121:2;8110:9;8106:18;8093:32;-1:-1:-1;;;;;8140:6:1;8137:30;8134:50;;;8180:1;8177;8170:12;8134:50;8203:22;;8256:4;8248:13;;8244:27;-1:-1:-1;8234:55:1;;8285:1;8282;8275:12;8234:55;8308:74;8374:7;8369:2;8356:16;8351:2;8347;8343:11;8308:74;:::i;:::-;8298:84;;;7721:667;;;;;;;:::o;8393:264::-;8587:3;8572:19;;8600:51;8576:9;8633:6;8600:51;:::i;8662:260::-;8730:6;8738;8791:2;8779:9;8770:7;8766:23;8762:32;8759:52;;;8807:1;8804;8797:12;8759:52;8830:29;8849:9;8830:29;:::i;:::-;8820:39;;8878:38;8912:2;8901:9;8897:18;8878:38;:::i;:::-;8868:48;;8662:260;;;;;:::o;8927:380::-;9006:1;9002:12;;;;9049;;;9070:61;;9124:4;9116:6;9112:17;9102:27;;9070:61;9177:2;9169:6;9166:14;9146:18;9143:38;9140:161;;9223:10;9218:3;9214:20;9211:1;9204:31;9258:4;9255:1;9248:15;9286:4;9283:1;9276:15;9140:161;;8927:380;;;:::o;10001:545::-;10103:2;10098:3;10095:11;10092:448;;;10139:1;10164:5;10160:2;10153:17;10209:4;10205:2;10195:19;10279:2;10267:10;10263:19;10260:1;10256:27;10250:4;10246:38;10315:4;10303:10;10300:20;10297:47;;;-1:-1:-1;10338:4:1;10297:47;10393:2;10388:3;10384:12;10381:1;10377:20;10371:4;10367:31;10357:41;;10448:82;10466:2;10459:5;10456:13;10448:82;;;10511:17;;;10492:1;10481:13;10448:82;;10722:1206;-1:-1:-1;;;;;10841:3:1;10838:27;10835:53;;;10868:18;;:::i;:::-;10897:94;10987:3;10947:38;10979:4;10973:11;10947:38;:::i;:::-;10941:4;10897:94;:::i;:::-;11017:1;11042:2;11037:3;11034:11;11059:1;11054:616;;;;11714:1;11731:3;11728:93;;;-1:-1:-1;11787:19:1;;;11774:33;11728:93;-1:-1:-1;;10679:1:1;10675:11;;;10671:24;10667:29;10657:40;10703:1;10699:11;;;10654:57;11834:78;;11027:895;;11054:616;9948:1;9941:14;;;9985:4;9972:18;;-1:-1:-1;;11090:17:1;;;11191:9;11213:229;11227:7;11224:1;11221:14;11213:229;;;11316:19;;;11303:33;11288:49;;11423:4;11408:20;;;;11376:1;11364:14;;;;11243:12;11213:229;;;11217:3;11470;11461:7;11458:16;11455:159;;;11594:1;11590:6;11584:3;11578;11575:1;11571:11;11567:21;11563:34;11559:39;11546:9;11541:3;11537:19;11524:33;11520:79;11512:6;11505:95;11455:159;;;11657:1;11651:3;11648:1;11644:11;11640:19;11634:4;11627:33;11027:895;;;10722:1206;;;:::o;11933:127::-;11994:10;11989:3;11985:20;11982:1;11975:31;12025:4;12022:1;12015:15;12049:4;12046:1;12039:15;12065:1352;12191:3;12185:10;-1:-1:-1;;;;;12210:6:1;12207:30;12204:56;;;12240:18;;:::i;:::-;12269:97;12359:6;12319:38;12351:4;12345:11;12319:38;:::i;:::-;12313:4;12269:97;:::i;:::-;12421:4;;12485:2;12474:14;;12502:1;12497:663;;;;13204:1;13221:6;13218:89;;;-1:-1:-1;13273:19:1;;;13267:26;13218:89;-1:-1:-1;;10679:1:1;10675:11;;;10671:24;10667:29;10657:40;10703:1;10699:11;;;10654:57;13320:81;;12467:944;;12497:663;9948:1;9941:14;;;9985:4;9972:18;;-1:-1:-1;;12533:20:1;;;12651:236;12665:7;12662:1;12659:14;12651:236;;;12754:19;;;12748:26;12733:42;;12846:27;;;;12814:1;12802:14;;;;12681:19;;12651:236;;;12655:3;12915:6;12906:7;12903:19;12900:201;;;12976:19;;;12970:26;-1:-1:-1;;13059:1:1;13055:14;;;13071:3;13051:24;13047:37;13043:42;13028:58;13013:74;;12900:201;-1:-1:-1;;;;;13147:1:1;13131:14;;;13127:22;13114:36;;-1:-1:-1;12065:1352:1:o;13422:127::-;13483:10;13478:3;13474:20;13471:1;13464:31;13514:4;13511:1;13504:15;13538:4;13535:1;13528:15;13554:125;13619:9;;;13640:10;;;13637:36;;;13653:18;;:::i;13684:399::-;13886:2;13868:21;;;13925:2;13905:18;;;13898:30;13964:34;13959:2;13944:18;;13937:62;-1:-1:-1;;;14030:2:1;14015:18;;14008:33;14073:3;14058:19;;13684:399::o;15206:168::-;15279:9;;;15310;;15327:15;;;15321:22;;15307:37;15297:71;;15348:18;;:::i;15803:128::-;15870:9;;;15891:11;;;15888:37;;;15905:18;;:::i;16709:496::-;16888:3;16926:6;16920:13;16942:66;17001:6;16996:3;16989:4;16981:6;16977:17;16942:66;:::i;:::-;17071:13;;17030:16;;;;17093:70;17071:13;17030:16;17140:4;17128:17;;17093:70;:::i;:::-;17179:20;;16709:496;-1:-1:-1;;;;16709:496:1:o;17978:489::-;-1:-1:-1;;;;;18247:15:1;;;18229:34;;18299:15;;18294:2;18279:18;;18272:43;18346:2;18331:18;;18324:34;;;18394:3;18389:2;18374:18;;18367:31;;;18172:4;;18415:46;;18441:19;;18433:6;18415:46;:::i;:::-;18407:54;17978:489;-1:-1:-1;;;;;;17978:489:1:o;18472:249::-;18541:6;18594:2;18582:9;18573:7;18569:23;18565:32;18562:52;;;18610:1;18607;18600:12;18562:52;18642:9;18636:16;18661:30;18685:5;18661:30;:::i
Swarm Source
ipfs://af511b18b19f3ecf4e59a58e6754bc1cb79793e9ede8b066ac204a1789df4f46
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.