Overview
TokenID
2218
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Apezuki
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2024-10-28 */ // 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: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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 towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (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 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 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. uint256 twos = denominator & (0 - denominator); 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 (unsignedRoundsUp(rounding) && 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 * towards zero. * * 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 + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * 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 + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * 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 + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * 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 256, 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 + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @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), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @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) { uint256 localValue = value; 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] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } 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); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: contracts/Apezuki.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.9; contract Apezuki is ERC721A, Ownable(msg.sender) { using Strings for uint256; uint256 public maxSupply = 5000; uint256 public maxPerTx = 100; uint256 public mintPrice = 2 ether; bool public sale; string public baseURI; error SaleNotActive(); error MaxSupplyExceeded(); error MaxPerTxExceeded(); error InsufficientBalance(); constructor(string memory __baseURI) ERC721A("Apezuki", "APEZUKI") { baseURI = __baseURI; } function mint(uint256 _amount) external payable { if (!sale) revert SaleNotActive(); if (_totalMinted() + _amount > maxSupply) revert MaxSupplyExceeded(); if (msg.value < mintPrice * _amount) revert InsufficientBalance(); if (_amount > maxPerTx) revert MaxPerTxExceeded(); _mint(msg.sender, _amount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string( abi.encodePacked(baseURI, tokenId.toString(), ".json") ); } function setBaseURI(string memory __baseURI) external onlyOwner { baseURI = __baseURI; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function toggleSale() external onlyOwner { sale = !sale; } function airdrop(address _to, uint256 _amount) external onlyOwner { _mint(_to, _amount); } function setMaxSupply(uint256 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function setMintPrice(uint256 _mintPrice) external onlyOwner { mintPrice = _mintPrice; } function setMaxPerTx(uint256 _maxPerTx) external onlyOwner { maxPerTx = _maxPerTx; } function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"__baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"MaxPerTxExceeded","type":"error"},{"inputs":[],"name":"MaxSupplyExceeded","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SaleNotActive","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"sale","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":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526113886009556064600a55671bc16d674ec80000600b55348015610026575f80fd5b5060405161315e38038061315e83398181016040528101906100489190610398565b336040518060400160405280600781526020017f4170657a756b69000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4150455a554b490000000000000000000000000000000000000000000000000081525081600290816100c491906105ec565b5080600390816100d491906105ec565b506100e361018060201b60201c565b5f8190555050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361015a575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161015191906106fa565b60405180910390fd5b6101698161018860201b60201c565b5080600d908161017991906105ec565b5050610713565b5f6001905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6102aa82610264565b810181811067ffffffffffffffff821117156102c9576102c8610274565b5b80604052505050565b5f6102db61024b565b90506102e782826102a1565b919050565b5f67ffffffffffffffff82111561030657610305610274565b5b61030f82610264565b9050602081019050919050565b8281835e5f83830152505050565b5f61033c610337846102ec565b6102d2565b90508281526020810184848401111561035857610357610260565b5b61036384828561031c565b509392505050565b5f82601f83011261037f5761037e61025c565b5b815161038f84826020860161032a565b91505092915050565b5f602082840312156103ad576103ac610254565b5b5f82015167ffffffffffffffff8111156103ca576103c9610258565b5b6103d68482850161036b565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061042d57607f821691505b6020821081036104405761043f6103e9565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026104a27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610467565b6104ac8683610467565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6104f06104eb6104e6846104c4565b6104cd565b6104c4565b9050919050565b5f819050919050565b610509836104d6565b61051d610515826104f7565b848454610473565b825550505050565b5f90565b610531610525565b61053c818484610500565b505050565b5b8181101561055f576105545f82610529565b600181019050610542565b5050565b601f8211156105a45761057581610446565b61057e84610458565b8101602085101561058d578190505b6105a161059985610458565b830182610541565b50505b505050565b5f82821c905092915050565b5f6105c45f19846008026105a9565b1980831691505092915050565b5f6105dc83836105b5565b9150826002028217905092915050565b6105f5826103df565b67ffffffffffffffff81111561060e5761060d610274565b5b6106188254610416565b610623828285610563565b5f60209050601f831160018114610654575f8415610642578287015190505b61064c85826105d1565b8655506106b3565b601f19841661066286610446565b5f5b8281101561068957848901518255600182019150602085019450602081019050610664565b868310156106a657848901516106a2601f8916826105b5565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6106e4826106bb565b9050919050565b6106f4816106da565b82525050565b5f60208201905061070d5f8301846106eb565b92915050565b612a3e806107205f395ff3fe6080604052600436106101cc575f3560e01c8063715018a6116100f6578063b88d4fde11610094578063e985e9c511610063578063e985e9c5146105e2578063f2fde38b1461061e578063f4a0a52814610646578063f968adbe1461066e576101cc565b8063b88d4fde14610538578063c6f6f21614610554578063c87b56dd1461057c578063d5abeb01146105b8576101cc565b80638da5cb5b116100d05780638da5cb5b146104a057806395d89b41146104ca578063a0712d68146104f4578063a22cb46514610510576101cc565b8063715018a61461044c5780637d8966e4146104625780638ba4cc3c14610478576101cc565b806342842e0e1161016e5780636ad1fe021161013d5780636ad1fe02146103945780636c0360eb146103be5780636f8b44b0146103e857806370a0823114610410576101cc565b806342842e0e146102ea57806355f804b3146103065780636352211e1461032e5780636817c76c1461036a576101cc565b8063095ea7b3116101aa578063095ea7b31461027257806318160ddd1461028e57806323b872dd146102b85780633ccfd60b146102d4576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f19190611d47565b610698565b6040516102039190611d8c565b60405180910390f35b348015610217575f80fd5b50610220610729565b60405161022d9190611e15565b60405180910390f35b348015610241575f80fd5b5061025c60048036038101906102579190611e68565b6107b9565b6040516102699190611ed2565b60405180910390f35b61028c60048036038101906102879190611f15565b610833565b005b348015610299575f80fd5b506102a2610972565b6040516102af9190611f62565b60405180910390f35b6102d260048036038101906102cd9190611f7b565b610987565b005b3480156102df575f80fd5b506102e8610c95565b005b61030460048036038101906102ff9190611f7b565b610d48565b005b348015610311575f80fd5b5061032c600480360381019061032791906120f7565b610d67565b005b348015610339575f80fd5b50610354600480360381019061034f9190611e68565b610d82565b6040516103619190611ed2565b60405180910390f35b348015610375575f80fd5b5061037e610d93565b60405161038b9190611f62565b60405180910390f35b34801561039f575f80fd5b506103a8610d99565b6040516103b59190611d8c565b60405180910390f35b3480156103c9575f80fd5b506103d2610dab565b6040516103df9190611e15565b60405180910390f35b3480156103f3575f80fd5b5061040e60048036038101906104099190611e68565b610e37565b005b34801561041b575f80fd5b506104366004803603810190610431919061213e565b610e49565b6040516104439190611f62565b60405180910390f35b348015610457575f80fd5b50610460610efe565b005b34801561046d575f80fd5b50610476610f11565b005b348015610483575f80fd5b5061049e60048036038101906104999190611f15565b610f43565b005b3480156104ab575f80fd5b506104b4610f59565b6040516104c19190611ed2565b60405180910390f35b3480156104d5575f80fd5b506104de610f81565b6040516104eb9190611e15565b60405180910390f35b61050e60048036038101906105099190611e68565b611011565b005b34801561051b575f80fd5b5061053660048036038101906105319190612193565b611134565b005b610552600480360381019061054d919061226f565b61123a565b005b34801561055f575f80fd5b5061057a60048036038101906105759190611e68565b6112ac565b005b348015610587575f80fd5b506105a2600480360381019061059d9190611e68565b6112be565b6040516105af9190611e15565b60405180910390f35b3480156105c3575f80fd5b506105cc61133a565b6040516105d99190611f62565b60405180910390f35b3480156105ed575f80fd5b50610608600480360381019061060391906122ef565b611340565b6040516106159190611d8c565b60405180910390f35b348015610629575f80fd5b50610644600480360381019061063f919061213e565b6113ce565b005b348015610651575f80fd5b5061066c60048036038101906106679190611e68565b611452565b005b348015610679575f80fd5b50610682611464565b60405161068f9190611f62565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107225750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107389061235a565b80601f01602080910402602001604051908101604052809291908181526020018280546107649061235a565b80156107af5780601f10610786576101008083540402835291602001916107af565b820191905f5260205f20905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b5f6107c38261146a565b6107f9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61083d82610d82565b90508073ffffffffffffffffffffffffffffffffffffffff1661085e6114c4565b73ffffffffffffffffffffffffffffffffffffffff16146108c15761088a816108856114c4565b611340565b6108c0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f61097b6114cb565b6001545f540303905090565b5f610991826114d3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610a0384611596565b91509150610a198187610a146114c4565b6115b9565b610a6557610a2e86610a296114c4565b611340565b610a64576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610aca576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad786868660016115fc565b8015610ae1575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610ba985610b85888887611602565b7c020000000000000000000000000000000000000000000000000000000017611629565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610c25575f6001850190505f60045f8381526020019081526020015f205403610c23575f548114610c22578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c8d8686866001611653565b505050505050565b610c9d611659565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610cc2906123b7565b5f6040518083038185875af1925050503d805f8114610cfc576040519150601f19603f3d011682016040523d82523d5f602084013e610d01565b606091505b5050905080610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90612415565b60405180910390fd5b50565b610d6283838360405180602001604052805f81525061123a565b505050565b610d6f611659565b80600d9081610d7e91906125d0565b5050565b5f610d8c826114d3565b9050919050565b600b5481565b600c5f9054906101000a900460ff1681565b600d8054610db89061235a565b80601f0160208091040260200160405190810160405280929190818152602001828054610de49061235a565b8015610e2f5780601f10610e0657610100808354040283529160200191610e2f565b820191905f5260205f20905b815481529060010190602001808311610e1257829003601f168201915b505050505081565b610e3f611659565b8060098190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eaf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610f06611659565b610f0f5f6116e0565b565b610f19611659565b600c5f9054906101000a900460ff1615600c5f6101000a81548160ff021916908315150217905550565b610f4b611659565b610f5582826117a3565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f909061235a565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbc9061235a565b80156110075780601f10610fde57610100808354040283529160200191611007565b820191905f5260205f20905b815481529060010190602001808311610fea57829003601f168201915b5050505050905090565b600c5f9054906101000a900460ff16611056576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6009548161106261194c565b61106c91906126cc565b11156110a4576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b546110b291906126ff565b3410156110eb576040517ff4d678b800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54811115611127576040517f845d1a2200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61113133826117a3565b50565b8060075f6111406114c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111e96114c4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161122e9190611d8c565b60405180910390a35050565b611245848484610987565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146112a65761126f8484848461195d565b6112a5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6112b4611659565b80600a8190555050565b60606112c98261146a565b611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff906127b0565b60405180910390fd5b600d61131383611aa8565b6040516020016113249291906128d2565b6040516020818303038152906040529050919050565b60095481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6113d6611659565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611446575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161143d9190611ed2565b60405180910390fd5b61144f816116e0565b50565b61145a611659565b80600b8190555050565b600a5481565b5f816114746114cb565b1115801561148257505f5482105b80156114bd57505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f80829050806114e16114cb565b1161155f575f5481101561155e575f60045f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361155c575b5f81036115525760045f836001900393508381526020019081526020015f2054905061152b565b8092505050611591565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611618868684611b72565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611661611b7a565b73ffffffffffffffffffffffffffffffffffffffff1661167f610f59565b73ffffffffffffffffffffffffffffffffffffffff16146116de576116a2611b7a565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016116d59190611ed2565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f82036117e1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117ed5f8483856115fc565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555061185f836118505f865f611602565b61185985611b81565b17611629565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146118f95780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001810190506118c0565b505f8203611933576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506119475f848385611653565b505050565b5f6119556114cb565b5f5403905090565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119826114c4565b8786866040518563ffffffff1660e01b81526004016119a49493929190612952565b6020604051808303815f875af19250505080156119df57506040513d601f19601f820116820180604052508101906119dc91906129b0565b60015b611a55573d805f8114611a0d576040519150601f19603f3d011682016040523d82523d5f602084013e611a12565b606091505b505f815103611a4d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60605f6001611ab684611b90565b0190505f8167ffffffffffffffff811115611ad457611ad3611fd3565b5b6040519080825280601f01601f191660200182016040528015611b065781602001600182028036833780820191505090505b5090505f82602001820190505b600115611b67578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b5c57611b5b6129db565b5b0494505f8503611b13575b819350505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611bec577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611be257611be16129db565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611c29576d04ee2d6d415b85acef81000000008381611c1f57611c1e6129db565b5b0492506020810190505b662386f26fc100008310611c5857662386f26fc100008381611c4e57611c4d6129db565b5b0492506010810190505b6305f5e1008310611c81576305f5e1008381611c7757611c766129db565b5b0492506008810190505b6127108310611ca6576127108381611c9c57611c9b6129db565b5b0492506004810190505b60648310611cc95760648381611cbf57611cbe6129db565b5b0492506002810190505b600a8310611cd8576001810190505b80915050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d2681611cf2565b8114611d30575f80fd5b50565b5f81359050611d4181611d1d565b92915050565b5f60208284031215611d5c57611d5b611cea565b5b5f611d6984828501611d33565b91505092915050565b5f8115159050919050565b611d8681611d72565b82525050565b5f602082019050611d9f5f830184611d7d565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611de782611da5565b611df18185611daf565b9350611e01818560208601611dbf565b611e0a81611dcd565b840191505092915050565b5f6020820190508181035f830152611e2d8184611ddd565b905092915050565b5f819050919050565b611e4781611e35565b8114611e51575f80fd5b50565b5f81359050611e6281611e3e565b92915050565b5f60208284031215611e7d57611e7c611cea565b5b5f611e8a84828501611e54565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ebc82611e93565b9050919050565b611ecc81611eb2565b82525050565b5f602082019050611ee55f830184611ec3565b92915050565b611ef481611eb2565b8114611efe575f80fd5b50565b5f81359050611f0f81611eeb565b92915050565b5f8060408385031215611f2b57611f2a611cea565b5b5f611f3885828601611f01565b9250506020611f4985828601611e54565b9150509250929050565b611f5c81611e35565b82525050565b5f602082019050611f755f830184611f53565b92915050565b5f805f60608486031215611f9257611f91611cea565b5b5f611f9f86828701611f01565b9350506020611fb086828701611f01565b9250506040611fc186828701611e54565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61200982611dcd565b810181811067ffffffffffffffff8211171561202857612027611fd3565b5b80604052505050565b5f61203a611ce1565b90506120468282612000565b919050565b5f67ffffffffffffffff82111561206557612064611fd3565b5b61206e82611dcd565b9050602081019050919050565b828183375f83830152505050565b5f61209b6120968461204b565b612031565b9050828152602081018484840111156120b7576120b6611fcf565b5b6120c284828561207b565b509392505050565b5f82601f8301126120de576120dd611fcb565b5b81356120ee848260208601612089565b91505092915050565b5f6020828403121561210c5761210b611cea565b5b5f82013567ffffffffffffffff81111561212957612128611cee565b5b612135848285016120ca565b91505092915050565b5f6020828403121561215357612152611cea565b5b5f61216084828501611f01565b91505092915050565b61217281611d72565b811461217c575f80fd5b50565b5f8135905061218d81612169565b92915050565b5f80604083850312156121a9576121a8611cea565b5b5f6121b685828601611f01565b92505060206121c78582860161217f565b9150509250929050565b5f67ffffffffffffffff8211156121eb576121ea611fd3565b5b6121f482611dcd565b9050602081019050919050565b5f61221361220e846121d1565b612031565b90508281526020810184848401111561222f5761222e611fcf565b5b61223a84828561207b565b509392505050565b5f82601f83011261225657612255611fcb565b5b8135612266848260208601612201565b91505092915050565b5f805f806080858703121561228757612286611cea565b5b5f61229487828801611f01565b94505060206122a587828801611f01565b93505060406122b687828801611e54565b925050606085013567ffffffffffffffff8111156122d7576122d6611cee565b5b6122e387828801612242565b91505092959194509250565b5f806040838503121561230557612304611cea565b5b5f61231285828601611f01565b925050602061232385828601611f01565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061237157607f821691505b6020821081036123845761238361232d565b5b50919050565b5f81905092915050565b50565b5f6123a25f8361238a565b91506123ad82612394565b5f82019050919050565b5f6123c182612397565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f6123ff601083611daf565b915061240a826123cb565b602082019050919050565b5f6020820190508181035f83015261242c816123f3565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261248f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612454565b6124998683612454565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6124d46124cf6124ca84611e35565b6124b1565b611e35565b9050919050565b5f819050919050565b6124ed836124ba565b6125016124f9826124db565b848454612460565b825550505050565b5f90565b612515612509565b6125208184846124e4565b505050565b5b81811015612543576125385f8261250d565b600181019050612526565b5050565b601f8211156125885761255981612433565b61256284612445565b81016020851015612571578190505b61258561257d85612445565b830182612525565b50505b505050565b5f82821c905092915050565b5f6125a85f198460080261258d565b1980831691505092915050565b5f6125c08383612599565b9150826002028217905092915050565b6125d982611da5565b67ffffffffffffffff8111156125f2576125f1611fd3565b5b6125fc825461235a565b612607828285612547565b5f60209050601f831160018114612638575f8415612626578287015190505b61263085826125b5565b865550612697565b601f19841661264686612433565b5f5b8281101561266d57848901518255600182019150602085019450602081019050612648565b8683101561268a5784890151612686601f891682612599565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6126d682611e35565b91506126e183611e35565b92508282019050808211156126f9576126f861269f565b5b92915050565b5f61270982611e35565b915061271483611e35565b925082820261272281611e35565b915082820484148315176127395761273861269f565b5b5092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f61279a602f83611daf565b91506127a582612740565b604082019050919050565b5f6020820190508181035f8301526127c78161278e565b9050919050565b5f81905092915050565b5f81546127e48161235a565b6127ee81866127ce565b9450600182165f8114612808576001811461281d5761284f565b60ff198316865281151582028601935061284f565b61282685612433565b5f5b8381101561284757815481890152600182019150602081019050612828565b838801955050505b50505092915050565b5f61286282611da5565b61286c81856127ce565b935061287c818560208601611dbf565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6128bc6005836127ce565b91506128c782612888565b600582019050919050565b5f6128dd82856127d8565b91506128e98284612858565b91506128f4826128b0565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f61292482612900565b61292e818561290a565b935061293e818560208601611dbf565b61294781611dcd565b840191505092915050565b5f6080820190506129655f830187611ec3565b6129726020830186611ec3565b61297f6040830185611f53565b8181036060830152612991818461291a565b905095945050505050565b5f815190506129aa81611d1d565b92915050565b5f602082840312156129c5576129c4611cea565b5b5f6129d28482850161299c565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea264697066735822122003dfa271ef788a7f4474f364036cf6ee0317bd8fbda86f956a12a010e93e2af864736f6c634300081a003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5157417a695978365474543937536e78666e764e4179695265465648697834727a43656f7a7739687953544c2f00000000000000000000
Deployed Bytecode
0x6080604052600436106101cc575f3560e01c8063715018a6116100f6578063b88d4fde11610094578063e985e9c511610063578063e985e9c5146105e2578063f2fde38b1461061e578063f4a0a52814610646578063f968adbe1461066e576101cc565b8063b88d4fde14610538578063c6f6f21614610554578063c87b56dd1461057c578063d5abeb01146105b8576101cc565b80638da5cb5b116100d05780638da5cb5b146104a057806395d89b41146104ca578063a0712d68146104f4578063a22cb46514610510576101cc565b8063715018a61461044c5780637d8966e4146104625780638ba4cc3c14610478576101cc565b806342842e0e1161016e5780636ad1fe021161013d5780636ad1fe02146103945780636c0360eb146103be5780636f8b44b0146103e857806370a0823114610410576101cc565b806342842e0e146102ea57806355f804b3146103065780636352211e1461032e5780636817c76c1461036a576101cc565b8063095ea7b3116101aa578063095ea7b31461027257806318160ddd1461028e57806323b872dd146102b85780633ccfd60b146102d4576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f19190611d47565b610698565b6040516102039190611d8c565b60405180910390f35b348015610217575f80fd5b50610220610729565b60405161022d9190611e15565b60405180910390f35b348015610241575f80fd5b5061025c60048036038101906102579190611e68565b6107b9565b6040516102699190611ed2565b60405180910390f35b61028c60048036038101906102879190611f15565b610833565b005b348015610299575f80fd5b506102a2610972565b6040516102af9190611f62565b60405180910390f35b6102d260048036038101906102cd9190611f7b565b610987565b005b3480156102df575f80fd5b506102e8610c95565b005b61030460048036038101906102ff9190611f7b565b610d48565b005b348015610311575f80fd5b5061032c600480360381019061032791906120f7565b610d67565b005b348015610339575f80fd5b50610354600480360381019061034f9190611e68565b610d82565b6040516103619190611ed2565b60405180910390f35b348015610375575f80fd5b5061037e610d93565b60405161038b9190611f62565b60405180910390f35b34801561039f575f80fd5b506103a8610d99565b6040516103b59190611d8c565b60405180910390f35b3480156103c9575f80fd5b506103d2610dab565b6040516103df9190611e15565b60405180910390f35b3480156103f3575f80fd5b5061040e60048036038101906104099190611e68565b610e37565b005b34801561041b575f80fd5b506104366004803603810190610431919061213e565b610e49565b6040516104439190611f62565b60405180910390f35b348015610457575f80fd5b50610460610efe565b005b34801561046d575f80fd5b50610476610f11565b005b348015610483575f80fd5b5061049e60048036038101906104999190611f15565b610f43565b005b3480156104ab575f80fd5b506104b4610f59565b6040516104c19190611ed2565b60405180910390f35b3480156104d5575f80fd5b506104de610f81565b6040516104eb9190611e15565b60405180910390f35b61050e60048036038101906105099190611e68565b611011565b005b34801561051b575f80fd5b5061053660048036038101906105319190612193565b611134565b005b610552600480360381019061054d919061226f565b61123a565b005b34801561055f575f80fd5b5061057a60048036038101906105759190611e68565b6112ac565b005b348015610587575f80fd5b506105a2600480360381019061059d9190611e68565b6112be565b6040516105af9190611e15565b60405180910390f35b3480156105c3575f80fd5b506105cc61133a565b6040516105d99190611f62565b60405180910390f35b3480156105ed575f80fd5b50610608600480360381019061060391906122ef565b611340565b6040516106159190611d8c565b60405180910390f35b348015610629575f80fd5b50610644600480360381019061063f919061213e565b6113ce565b005b348015610651575f80fd5b5061066c60048036038101906106679190611e68565b611452565b005b348015610679575f80fd5b50610682611464565b60405161068f9190611f62565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107225750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107389061235a565b80601f01602080910402602001604051908101604052809291908181526020018280546107649061235a565b80156107af5780601f10610786576101008083540402835291602001916107af565b820191905f5260205f20905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b5f6107c38261146a565b6107f9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61083d82610d82565b90508073ffffffffffffffffffffffffffffffffffffffff1661085e6114c4565b73ffffffffffffffffffffffffffffffffffffffff16146108c15761088a816108856114c4565b611340565b6108c0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f61097b6114cb565b6001545f540303905090565b5f610991826114d3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610a0384611596565b91509150610a198187610a146114c4565b6115b9565b610a6557610a2e86610a296114c4565b611340565b610a64576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610aca576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad786868660016115fc565b8015610ae1575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610ba985610b85888887611602565b7c020000000000000000000000000000000000000000000000000000000017611629565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610c25575f6001850190505f60045f8381526020019081526020015f205403610c23575f548114610c22578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c8d8686866001611653565b505050505050565b610c9d611659565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610cc2906123b7565b5f6040518083038185875af1925050503d805f8114610cfc576040519150601f19603f3d011682016040523d82523d5f602084013e610d01565b606091505b5050905080610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90612415565b60405180910390fd5b50565b610d6283838360405180602001604052805f81525061123a565b505050565b610d6f611659565b80600d9081610d7e91906125d0565b5050565b5f610d8c826114d3565b9050919050565b600b5481565b600c5f9054906101000a900460ff1681565b600d8054610db89061235a565b80601f0160208091040260200160405190810160405280929190818152602001828054610de49061235a565b8015610e2f5780601f10610e0657610100808354040283529160200191610e2f565b820191905f5260205f20905b815481529060010190602001808311610e1257829003601f168201915b505050505081565b610e3f611659565b8060098190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eaf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610f06611659565b610f0f5f6116e0565b565b610f19611659565b600c5f9054906101000a900460ff1615600c5f6101000a81548160ff021916908315150217905550565b610f4b611659565b610f5582826117a3565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f909061235a565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbc9061235a565b80156110075780601f10610fde57610100808354040283529160200191611007565b820191905f5260205f20905b815481529060010190602001808311610fea57829003601f168201915b5050505050905090565b600c5f9054906101000a900460ff16611056576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6009548161106261194c565b61106c91906126cc565b11156110a4576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b546110b291906126ff565b3410156110eb576040517ff4d678b800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a54811115611127576040517f845d1a2200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61113133826117a3565b50565b8060075f6111406114c4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111e96114c4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161122e9190611d8c565b60405180910390a35050565b611245848484610987565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146112a65761126f8484848461195d565b6112a5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6112b4611659565b80600a8190555050565b60606112c98261146a565b611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff906127b0565b60405180910390fd5b600d61131383611aa8565b6040516020016113249291906128d2565b6040516020818303038152906040529050919050565b60095481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6113d6611659565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611446575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161143d9190611ed2565b60405180910390fd5b61144f816116e0565b50565b61145a611659565b80600b8190555050565b600a5481565b5f816114746114cb565b1115801561148257505f5482105b80156114bd57505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f80829050806114e16114cb565b1161155f575f5481101561155e575f60045f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361155c575b5f81036115525760045f836001900393508381526020019081526020015f2054905061152b565b8092505050611591565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611618868684611b72565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611661611b7a565b73ffffffffffffffffffffffffffffffffffffffff1661167f610f59565b73ffffffffffffffffffffffffffffffffffffffff16146116de576116a2611b7a565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016116d59190611ed2565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f82036117e1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117ed5f8483856115fc565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555061185f836118505f865f611602565b61185985611b81565b17611629565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146118f95780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001810190506118c0565b505f8203611933576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506119475f848385611653565b505050565b5f6119556114cb565b5f5403905090565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119826114c4565b8786866040518563ffffffff1660e01b81526004016119a49493929190612952565b6020604051808303815f875af19250505080156119df57506040513d601f19601f820116820180604052508101906119dc91906129b0565b60015b611a55573d805f8114611a0d576040519150601f19603f3d011682016040523d82523d5f602084013e611a12565b606091505b505f815103611a4d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60605f6001611ab684611b90565b0190505f8167ffffffffffffffff811115611ad457611ad3611fd3565b5b6040519080825280601f01601f191660200182016040528015611b065781602001600182028036833780820191505090505b5090505f82602001820190505b600115611b67578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b5c57611b5b6129db565b5b0494505f8503611b13575b819350505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611bec577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611be257611be16129db565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611c29576d04ee2d6d415b85acef81000000008381611c1f57611c1e6129db565b5b0492506020810190505b662386f26fc100008310611c5857662386f26fc100008381611c4e57611c4d6129db565b5b0492506010810190505b6305f5e1008310611c81576305f5e1008381611c7757611c766129db565b5b0492506008810190505b6127108310611ca6576127108381611c9c57611c9b6129db565b5b0492506004810190505b60648310611cc95760648381611cbf57611cbe6129db565b5b0492506002810190505b600a8310611cd8576001810190505b80915050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d2681611cf2565b8114611d30575f80fd5b50565b5f81359050611d4181611d1d565b92915050565b5f60208284031215611d5c57611d5b611cea565b5b5f611d6984828501611d33565b91505092915050565b5f8115159050919050565b611d8681611d72565b82525050565b5f602082019050611d9f5f830184611d7d565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611de782611da5565b611df18185611daf565b9350611e01818560208601611dbf565b611e0a81611dcd565b840191505092915050565b5f6020820190508181035f830152611e2d8184611ddd565b905092915050565b5f819050919050565b611e4781611e35565b8114611e51575f80fd5b50565b5f81359050611e6281611e3e565b92915050565b5f60208284031215611e7d57611e7c611cea565b5b5f611e8a84828501611e54565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ebc82611e93565b9050919050565b611ecc81611eb2565b82525050565b5f602082019050611ee55f830184611ec3565b92915050565b611ef481611eb2565b8114611efe575f80fd5b50565b5f81359050611f0f81611eeb565b92915050565b5f8060408385031215611f2b57611f2a611cea565b5b5f611f3885828601611f01565b9250506020611f4985828601611e54565b9150509250929050565b611f5c81611e35565b82525050565b5f602082019050611f755f830184611f53565b92915050565b5f805f60608486031215611f9257611f91611cea565b5b5f611f9f86828701611f01565b9350506020611fb086828701611f01565b9250506040611fc186828701611e54565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61200982611dcd565b810181811067ffffffffffffffff8211171561202857612027611fd3565b5b80604052505050565b5f61203a611ce1565b90506120468282612000565b919050565b5f67ffffffffffffffff82111561206557612064611fd3565b5b61206e82611dcd565b9050602081019050919050565b828183375f83830152505050565b5f61209b6120968461204b565b612031565b9050828152602081018484840111156120b7576120b6611fcf565b5b6120c284828561207b565b509392505050565b5f82601f8301126120de576120dd611fcb565b5b81356120ee848260208601612089565b91505092915050565b5f6020828403121561210c5761210b611cea565b5b5f82013567ffffffffffffffff81111561212957612128611cee565b5b612135848285016120ca565b91505092915050565b5f6020828403121561215357612152611cea565b5b5f61216084828501611f01565b91505092915050565b61217281611d72565b811461217c575f80fd5b50565b5f8135905061218d81612169565b92915050565b5f80604083850312156121a9576121a8611cea565b5b5f6121b685828601611f01565b92505060206121c78582860161217f565b9150509250929050565b5f67ffffffffffffffff8211156121eb576121ea611fd3565b5b6121f482611dcd565b9050602081019050919050565b5f61221361220e846121d1565b612031565b90508281526020810184848401111561222f5761222e611fcf565b5b61223a84828561207b565b509392505050565b5f82601f83011261225657612255611fcb565b5b8135612266848260208601612201565b91505092915050565b5f805f806080858703121561228757612286611cea565b5b5f61229487828801611f01565b94505060206122a587828801611f01565b93505060406122b687828801611e54565b925050606085013567ffffffffffffffff8111156122d7576122d6611cee565b5b6122e387828801612242565b91505092959194509250565b5f806040838503121561230557612304611cea565b5b5f61231285828601611f01565b925050602061232385828601611f01565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061237157607f821691505b6020821081036123845761238361232d565b5b50919050565b5f81905092915050565b50565b5f6123a25f8361238a565b91506123ad82612394565b5f82019050919050565b5f6123c182612397565b9150819050919050565b7f5472616e73666572206661696c65642e000000000000000000000000000000005f82015250565b5f6123ff601083611daf565b915061240a826123cb565b602082019050919050565b5f6020820190508181035f83015261242c816123f3565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261248f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612454565b6124998683612454565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6124d46124cf6124ca84611e35565b6124b1565b611e35565b9050919050565b5f819050919050565b6124ed836124ba565b6125016124f9826124db565b848454612460565b825550505050565b5f90565b612515612509565b6125208184846124e4565b505050565b5b81811015612543576125385f8261250d565b600181019050612526565b5050565b601f8211156125885761255981612433565b61256284612445565b81016020851015612571578190505b61258561257d85612445565b830182612525565b50505b505050565b5f82821c905092915050565b5f6125a85f198460080261258d565b1980831691505092915050565b5f6125c08383612599565b9150826002028217905092915050565b6125d982611da5565b67ffffffffffffffff8111156125f2576125f1611fd3565b5b6125fc825461235a565b612607828285612547565b5f60209050601f831160018114612638575f8415612626578287015190505b61263085826125b5565b865550612697565b601f19841661264686612433565b5f5b8281101561266d57848901518255600182019150602085019450602081019050612648565b8683101561268a5784890151612686601f891682612599565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6126d682611e35565b91506126e183611e35565b92508282019050808211156126f9576126f861269f565b5b92915050565b5f61270982611e35565b915061271483611e35565b925082820261272281611e35565b915082820484148315176127395761273861269f565b5b5092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f61279a602f83611daf565b91506127a582612740565b604082019050919050565b5f6020820190508181035f8301526127c78161278e565b9050919050565b5f81905092915050565b5f81546127e48161235a565b6127ee81866127ce565b9450600182165f8114612808576001811461281d5761284f565b60ff198316865281151582028601935061284f565b61282685612433565b5f5b8381101561284757815481890152600182019150602081019050612828565b838801955050505b50505092915050565b5f61286282611da5565b61286c81856127ce565b935061287c818560208601611dbf565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6128bc6005836127ce565b91506128c782612888565b600582019050919050565b5f6128dd82856127d8565b91506128e98284612858565b91506128f4826128b0565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f61292482612900565b61292e818561290a565b935061293e818560208601611dbf565b61294781611dcd565b840191505092915050565b5f6080820190506129655f830187611ec3565b6129726020830186611ec3565b61297f6040830185611f53565b8181036060830152612991818461291a565b905095945050505050565b5f815190506129aa81611d1d565b92915050565b5f602082840312156129c5576129c4611cea565b5b5f6129d28482850161299c565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea264697066735822122003dfa271ef788a7f4474f364036cf6ee0317bd8fbda86f956a12a010e93e2af864736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5157417a695978365474543937536e78666e764e4179695265465648697834727a43656f7a7739687953544c2f00000000000000000000
-----Decoded View---------------
Arg [0] : __baseURI (string): ipfs://QmQWAziYx6TtT97SnxfnvNAyiReFVHix4rzCeozw9hySTL/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5157417a695978365474543937536e78666e764e417969
Arg [3] : 5265465648697834727a43656f7a7739687953544c2f00000000000000000000
Deployed Bytecode Sourcemap
75763:2308:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18404:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19306:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25797:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25230:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15057:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29436:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77895:173;;;;;;;;;;;;;:::i;:::-;;32357:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77042:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20699:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75927:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75968:16;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75993:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77569:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16241:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54796:103;;;;;;;;;;;;;:::i;:::-;;77377:72;;;;;;;;;;;;;:::i;:::-;;77457:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54121:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19482:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76277:354;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26355:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33148:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77789:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76639:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75853:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26746:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55054:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77679:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75891:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18404:639;18489:4;18828:10;18813:25;;:11;:25;;;;:102;;;;18905:10;18890:25;;:11;:25;;;;18813:102;:179;;;;18982:10;18967:25;;:11;:25;;;;18813:179;18793:199;;18404:639;;;:::o;19306:100::-;19360:13;19393:5;19386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19306:100;:::o;25797:218::-;25873:7;25898:16;25906:7;25898;:16::i;:::-;25893:64;;25923:34;;;;;;;;;;;;;;25893:64;25977:15;:24;25993:7;25977:24;;;;;;;;;;;:30;;;;;;;;;;;;25970:37;;25797:218;;;:::o;25230:408::-;25319:13;25335:16;25343:7;25335;:16::i;:::-;25319:32;;25391:5;25368:28;;:19;:17;:19::i;:::-;:28;;;25364:175;;25416:44;25433:5;25440:19;:17;:19::i;:::-;25416:16;:44::i;:::-;25411:128;;25488:35;;;;;;;;;;;;;;25411:128;25364:175;25584:2;25551:15;:24;25567:7;25551:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25622:7;25618:2;25602:28;;25611:5;25602:28;;;;;;;;;;;;25308:330;25230:408;;:::o;15057:323::-;15118:7;15346:15;:13;:15::i;:::-;15331:12;;15315:13;;:28;:46;15308:53;;15057:323;:::o;29436:2825::-;29578:27;29608;29627:7;29608:18;:27::i;:::-;29578:57;;29693:4;29652:45;;29668:19;29652:45;;;29648:86;;29706:28;;;;;;;;;;;;;;29648:86;29748:27;29777:23;29804:35;29831:7;29804:26;:35::i;:::-;29747:92;;;;29939:68;29964:15;29981:4;29987:19;:17;:19::i;:::-;29939:24;:68::i;:::-;29934:180;;30027:43;30044:4;30050:19;:17;:19::i;:::-;30027:16;:43::i;:::-;30022:92;;30079:35;;;;;;;;;;;;;;30022:92;29934:180;30145:1;30131:16;;:2;:16;;;30127:52;;30156:23;;;;;;;;;;;;;;30127:52;30192:43;30214:4;30220:2;30224:7;30233:1;30192:21;:43::i;:::-;30328:15;30325:160;;;30468:1;30447:19;30440:30;30325:160;30865:18;:24;30884:4;30865:24;;;;;;;;;;;;;;;;30863:26;;;;;;;;;;;;30934:18;:22;30953:2;30934:22;;;;;;;;;;;;;;;;30932:24;;;;;;;;;;;31256:146;31293:2;31342:45;31357:4;31363:2;31367:19;31342:14;:45::i;:::-;11456:8;31314:73;31256:18;:146::i;:::-;31227:17;:26;31245:7;31227:26;;;;;;;;;;;:175;;;;31573:1;11456:8;31522:19;:47;:52;31518:627;;31595:19;31627:1;31617:7;:11;31595:33;;31784:1;31750:17;:30;31768:11;31750:30;;;;;;;;;;;;:35;31746:384;;31888:13;;31873:11;:28;31869:242;;32068:19;32035:17;:30;32053:11;32035:30;;;;;;;;;;;:52;;;;31869:242;31746:384;31576:569;31518:627;32192:7;32188:2;32173:27;;32182:4;32173:27;;;;;;;;;;;;32211:42;32232:4;32238:2;32242:7;32251:1;32211:20;:42::i;:::-;29567:2694;;;29436:2825;;;:::o;77895:173::-;54007:13;:11;:13::i;:::-;77946:12:::1;77964:10;:15;;77987:21;77964:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77945:68;;;78032:7;78024:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;77934:134;77895:173::o:0;32357:193::-;32503:39;32520:4;32526:2;32530:7;32503:39;;;;;;;;;;;;:16;:39::i;:::-;32357:193;;;:::o;77042:102::-;54007:13;:11;:13::i;:::-;77127:9:::1;77117:7;:19;;;;;;:::i;:::-;;77042:102:::0;:::o;20699:152::-;20771:7;20814:27;20833:7;20814:18;:27::i;:::-;20791:52;;20699:152;;;:::o;75927:34::-;;;;:::o;75968:16::-;;;;;;;;;;;;;:::o;75993:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;77569:102::-;54007:13;:11;:13::i;:::-;77653:10:::1;77641:9;:22;;;;77569:102:::0;:::o;16241:233::-;16313:7;16354:1;16337:19;;:5;:19;;;16333:60;;16365:28;;;;;;;;;;;;;;16333:60;10400:13;16411:18;:25;16430:5;16411:25;;;;;;;;;;;;;;;;:55;16404:62;;16241:233;;;:::o;54796:103::-;54007:13;:11;:13::i;:::-;54861:30:::1;54888:1;54861:18;:30::i;:::-;54796:103::o:0;77377:72::-;54007:13;:11;:13::i;:::-;77437:4:::1;;;;;;;;;;;77436:5;77429:4;;:12;;;;;;;;;;;;;;;;;;77377:72::o:0;77457:104::-;54007:13;:11;:13::i;:::-;77534:19:::1;77540:3;77545:7;77534:5;:19::i;:::-;77457:104:::0;;:::o;54121:87::-;54167:7;54194:6;;;;;;;;;;;54187:13;;54121:87;:::o;19482:104::-;19538:13;19571:7;19564:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19482:104;:::o;76277:354::-;76341:4;;;;;;;;;;;76336:33;;76354:15;;;;;;;;;;;;;;76336:33;76411:9;;76401:7;76384:14;:12;:14::i;:::-;:24;;;;:::i;:::-;:36;76380:68;;;76429:19;;;;;;;;;;;;;;76380:68;76487:7;76475:9;;:19;;;;:::i;:::-;76463:9;:31;76459:65;;;76503:21;;;;;;;;;;;;;;76459:65;76549:8;;76539:7;:18;76535:49;;;76566:18;;;;;;;;;;;;;;76535:49;76597:26;76603:10;76615:7;76597:5;:26::i;:::-;76277:354;:::o;26355:234::-;26502:8;26450:18;:39;26469:19;:17;:19::i;:::-;26450:39;;;;;;;;;;;;;;;:49;26490:8;26450:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26562:8;26526:55;;26541:19;:17;:19::i;:::-;26526:55;;;26572:8;26526:55;;;;;;:::i;:::-;;;;;;;;26355:234;;:::o;33148:407::-;33323:31;33336:4;33342:2;33346:7;33323:12;:31::i;:::-;33387:1;33369:2;:14;;;:19;33365:183;;33408:56;33439:4;33445:2;33449:7;33458:5;33408:30;:56::i;:::-;33403:145;;33492:40;;;;;;;;;;;;;;33403:145;33365:183;33148:407;;;;:::o;77789:98::-;54007:13;:11;:13::i;:::-;77870:9:::1;77859:8;:20;;;;77789:98:::0;:::o;76639:395::-;76757:13;76810:16;76818:7;76810;:16::i;:::-;76788:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;76974:7;76983:18;:7;:16;:18::i;:::-;76957:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76912:114;;76639:395;;;:::o;75853:31::-;;;;:::o;26746:164::-;26843:4;26867:18;:25;26886:5;26867:25;;;;;;;;;;;;;;;:35;26893:8;26867:35;;;;;;;;;;;;;;;;;;;;;;;;;26860:42;;26746:164;;;;:::o;55054:220::-;54007:13;:11;:13::i;:::-;55159:1:::1;55139:22;;:8;:22;;::::0;55135:93:::1;;55213:1;55185:31;;;;;;;;;;;:::i;:::-;;;;;;;;55135:93;55238:28;55257:8;55238:18;:28::i;:::-;55054:220:::0;:::o;77679:102::-;54007:13;:11;:13::i;:::-;77763:10:::1;77751:9;:22;;;;77679:102:::0;:::o;75891:29::-;;;;:::o;27168:282::-;27233:4;27289:7;27270:15;:13;:15::i;:::-;:26;;:66;;;;;27323:13;;27313:7;:23;27270:66;:153;;;;;27422:1;11176:8;27374:17;:26;27392:7;27374:26;;;;;;;;;;;;:44;:49;27270:153;27250:173;;27168:282;;;:::o;49476:105::-;49536:7;49563:10;49556:17;;49476:105;:::o;77268:101::-;77333:7;77360:1;77353:8;;77268:101;:::o;21854:1275::-;21921:7;21941:12;21956:7;21941:22;;22024:4;22005:15;:13;:15::i;:::-;:23;22001:1061;;22058:13;;22051:4;:20;22047:1015;;;22096:14;22113:17;:23;22131:4;22113:23;;;;;;;;;;;;22096:40;;22230:1;11176:8;22202:6;:24;:29;22198:845;;22867:113;22884:1;22874:6;:11;22867:113;;22927:17;:25;22945:6;;;;;;;22927:25;;;;;;;;;;;;22918:34;;22867:113;;;23013:6;23006:13;;;;;;22198:845;22073:989;22047:1015;22001:1061;23090:31;;;;;;;;;;;;;;21854:1275;;;;:::o;28331:485::-;28433:27;28462:23;28503:38;28544:15;:24;28560:7;28544:24;;;;;;;;;;;28503:65;;28721:18;28698:41;;28778:19;28772:26;28753:45;;28683:126;28331:485;;;:::o;27559:659::-;27708:11;27873:16;27866:5;27862:28;27853:37;;28033:16;28022:9;28018:32;28005:45;;28183:15;28172:9;28169:30;28161:5;28150:9;28147:20;28144:56;28134:66;;27559:659;;;;;:::o;34217:159::-;;;;;:::o;48785:311::-;48920:7;48940:16;11580:3;48966:19;:41;;48940:68;;11580:3;49034:31;49045:4;49051:2;49055:9;49034:10;:31::i;:::-;49026:40;;:62;;49019:69;;;48785:311;;;;;:::o;23677:450::-;23757:14;23925:16;23918:5;23914:28;23905:37;;24102:5;24088:11;24063:23;24059:41;24056:52;24049:5;24046:63;24036:73;;23677:450;;;;:::o;35041:158::-;;;;;:::o;54286:166::-;54357:12;:10;:12::i;:::-;54346:23;;:7;:5;:7::i;:::-;:23;;;54342:103;;54420:12;:10;:12::i;:::-;54393:40;;;;;;;;;;;:::i;:::-;;;;;;;;54342:103;54286:166::o;55434:191::-;55508:16;55527:6;;;;;;;;;;;55508:25;;55553:8;55544:6;;:17;;;;;;;;;;;;;;;;;;55608:8;55577:40;;55598:8;55577:40;;;;;;;;;;;;55497:128;55434:191;:::o;36817:2966::-;36890:20;36913:13;;36890:36;;36953:1;36941:8;:13;36937:44;;36963:18;;;;;;;;;;;;;;36937:44;36994:61;37024:1;37028:2;37032:12;37046:8;36994:21;:61::i;:::-;37538:1;10538:2;37508:1;:26;;37507:32;37495:8;:45;37469:18;:22;37488:2;37469:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37817:139;37854:2;37908:33;37931:1;37935:2;37939:1;37908:14;:33::i;:::-;37875:30;37896:8;37875:20;:30::i;:::-;:66;37817:18;:139::i;:::-;37783:17;:31;37801:12;37783:31;;;;;;;;;;;:173;;;;37973:16;38004:11;38033:8;38018:12;:23;38004:37;;38554:16;38550:2;38546:25;38534:37;;38926:12;38886:8;38845:1;38783:25;38724:1;38663;38636:335;39297:1;39283:12;39279:20;39237:346;39338:3;39329:7;39326:16;39237:346;;39556:7;39546:8;39543:1;39516:25;39513:1;39510;39505:59;39391:1;39382:7;39378:15;39367:26;;39237:346;;;39241:77;39628:1;39616:8;:13;39612:45;;39638:19;;;;;;;;;;;;;;39612:45;39690:3;39674:13;:19;;;;37243:2462;;39715:60;39744:1;39748:2;39752:12;39766:8;39715:20;:60::i;:::-;36879:2904;36817:2966;;:::o;15478:296::-;15533:7;15740:15;:13;:15::i;:::-;15724:13;;:31;15717:38;;15478:296;:::o;35639:716::-;35802:4;35848:2;35823:45;;;35869:19;:17;:19::i;:::-;35890:4;35896:7;35905:5;35823:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36123:1;36106:6;:13;:18;36102:235;;36152:40;;;;;;;;;;;;;;36102:235;36295:6;36289:13;36280:6;36276:2;36272:15;36265:38;35819:529;35992:54;;;35982:64;;;:6;:64;;;;35975:71;;;35639:716;;;;;;:::o;73127:718::-;73183:13;73234:14;73271:1;73251:17;73262:5;73251:10;:17::i;:::-;:21;73234:38;;73287:20;73321:6;73310:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73287:41;;73343:11;73472:6;73468:2;73464:15;73456:6;73452:28;73445:35;;73509:290;73516:4;73509:290;;;73541:5;;;;;;;;73683:10;73678:2;73671:5;73667:14;73662:32;73657:3;73649:46;73741:2;73732:11;;;;;;:::i;:::-;;;;;73775:1;73766:5;:10;73509:290;73762:21;73509:290;73820:6;73813:13;;;;;73127:718;;;:::o;48486:147::-;48623:6;48486:147;;;;;:::o;52130:98::-;52183:7;52210:10;52203:17;;52130:98;:::o;24229:324::-;24299:14;24532:1;24522:8;24519:15;24493:24;24489:46;24479:56;;24229:324;;;:::o;68191:948::-;68244:7;68264:14;68281:1;68264:18;;68331:8;68322:5;:17;68318:106;;68369:8;68360:17;;;;;;:::i;:::-;;;;;68406:2;68396:12;;;;68318:106;68451:8;68442:5;:17;68438:106;;68489:8;68480:17;;;;;;:::i;:::-;;;;;68526:2;68516:12;;;;68438:106;68571:8;68562:5;:17;68558:106;;68609:8;68600:17;;;;;;:::i;:::-;;;;;68646:2;68636:12;;;;68558:106;68691:7;68682:5;:16;68678:103;;68728:7;68719:16;;;;;;:::i;:::-;;;;;68764:1;68754:11;;;;68678:103;68808:7;68799:5;:16;68795:103;;68845:7;68836:16;;;;;;:::i;:::-;;;;;68881:1;68871:11;;;;68795:103;68925:7;68916:5;:16;68912:103;;68962:7;68953:16;;;;;;:::i;:::-;;;;;68998:1;68988:11;;;;68912:103;69042:7;69033:5;:16;69029:68;;69080:1;69070:11;;;;69029:68;69125:6;69118:13;;;68191:948;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:118::-;4870:24;4888:5;4870:24;:::i;:::-;4865:3;4858:37;4783:118;;:::o;4907:222::-;5000:4;5038:2;5027:9;5023:18;5015:26;;5051:71;5119:1;5108:9;5104:17;5095:6;5051:71;:::i;:::-;4907:222;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:117::-;5869:1;5866;5859:12;5883:117;5992:1;5989;5982:12;6006:180;6054:77;6051:1;6044:88;6151:4;6148:1;6141:15;6175:4;6172:1;6165:15;6192:281;6275:27;6297:4;6275:27;:::i;:::-;6267:6;6263:40;6405:6;6393:10;6390:22;6369:18;6357:10;6354:34;6351:62;6348:88;;;6416:18;;:::i;:::-;6348:88;6456:10;6452:2;6445:22;6235:238;6192:281;;:::o;6479:129::-;6513:6;6540:20;;:::i;:::-;6530:30;;6569:33;6597:4;6589:6;6569:33;:::i;:::-;6479:129;;;:::o;6614:308::-;6676:4;6766:18;6758:6;6755:30;6752:56;;;6788:18;;:::i;:::-;6752:56;6826:29;6848:6;6826:29;:::i;:::-;6818:37;;6910:4;6904;6900:15;6892:23;;6614:308;;;:::o;6928:148::-;7026:6;7021:3;7016;7003:30;7067:1;7058:6;7053:3;7049:16;7042:27;6928:148;;;:::o;7082:425::-;7160:5;7185:66;7201:49;7243:6;7201:49;:::i;:::-;7185:66;:::i;:::-;7176:75;;7274:6;7267:5;7260:21;7312:4;7305:5;7301:16;7350:3;7341:6;7336:3;7332:16;7329:25;7326:112;;;7357:79;;:::i;:::-;7326:112;7447:54;7494:6;7489:3;7484;7447:54;:::i;:::-;7166:341;7082:425;;;;;:::o;7527:340::-;7583:5;7632:3;7625:4;7617:6;7613:17;7609:27;7599:122;;7640:79;;:::i;:::-;7599:122;7757:6;7744:20;7782:79;7857:3;7849:6;7842:4;7834:6;7830:17;7782:79;:::i;:::-;7773:88;;7589:278;7527:340;;;;:::o;7873:509::-;7942:6;7991:2;7979:9;7970:7;7966:23;7962:32;7959:119;;;7997:79;;:::i;:::-;7959:119;8145:1;8134:9;8130:17;8117:31;8175:18;8167:6;8164:30;8161:117;;;8197:79;;:::i;:::-;8161:117;8302:63;8357:7;8348:6;8337:9;8333:22;8302:63;:::i;:::-;8292:73;;8088:287;7873:509;;;;:::o;8388:329::-;8447:6;8496:2;8484:9;8475:7;8471:23;8467:32;8464:119;;;8502:79;;:::i;:::-;8464:119;8622:1;8647:53;8692:7;8683:6;8672:9;8668:22;8647:53;:::i;:::-;8637:63;;8593:117;8388:329;;;;:::o;8723:116::-;8793:21;8808:5;8793:21;:::i;:::-;8786:5;8783:32;8773:60;;8829:1;8826;8819:12;8773:60;8723:116;:::o;8845:133::-;8888:5;8926:6;8913:20;8904:29;;8942:30;8966:5;8942:30;:::i;:::-;8845:133;;;;:::o;8984:468::-;9049:6;9057;9106:2;9094:9;9085:7;9081:23;9077:32;9074:119;;;9112:79;;:::i;:::-;9074:119;9232:1;9257:53;9302:7;9293:6;9282:9;9278:22;9257:53;:::i;:::-;9247:63;;9203:117;9359:2;9385:50;9427:7;9418:6;9407:9;9403:22;9385:50;:::i;:::-;9375:60;;9330:115;8984:468;;;;;:::o;9458:307::-;9519:4;9609:18;9601:6;9598:30;9595:56;;;9631:18;;:::i;:::-;9595:56;9669:29;9691:6;9669:29;:::i;:::-;9661:37;;9753:4;9747;9743:15;9735:23;;9458:307;;;:::o;9771:423::-;9848:5;9873:65;9889:48;9930:6;9889:48;:::i;:::-;9873:65;:::i;:::-;9864:74;;9961:6;9954:5;9947:21;9999:4;9992:5;9988:16;10037:3;10028:6;10023:3;10019:16;10016:25;10013:112;;;10044:79;;:::i;:::-;10013:112;10134:54;10181:6;10176:3;10171;10134:54;:::i;:::-;9854:340;9771:423;;;;;:::o;10213:338::-;10268:5;10317:3;10310:4;10302:6;10298:17;10294:27;10284:122;;10325:79;;:::i;:::-;10284:122;10442:6;10429:20;10467:78;10541:3;10533:6;10526:4;10518:6;10514:17;10467:78;:::i;:::-;10458:87;;10274:277;10213:338;;;;:::o;10557:943::-;10652:6;10660;10668;10676;10725:3;10713:9;10704:7;10700:23;10696:33;10693:120;;;10732:79;;:::i;:::-;10693:120;10852:1;10877:53;10922:7;10913:6;10902:9;10898:22;10877:53;:::i;:::-;10867:63;;10823:117;10979:2;11005:53;11050:7;11041:6;11030:9;11026:22;11005:53;:::i;:::-;10995:63;;10950:118;11107:2;11133:53;11178:7;11169:6;11158:9;11154:22;11133:53;:::i;:::-;11123:63;;11078:118;11263:2;11252:9;11248:18;11235:32;11294:18;11286:6;11283:30;11280:117;;;11316:79;;:::i;:::-;11280:117;11421:62;11475:7;11466:6;11455:9;11451:22;11421:62;:::i;:::-;11411:72;;11206:287;10557:943;;;;;;;:::o;11506:474::-;11574:6;11582;11631:2;11619:9;11610:7;11606:23;11602:32;11599:119;;;11637:79;;:::i;:::-;11599:119;11757:1;11782:53;11827:7;11818:6;11807:9;11803:22;11782:53;:::i;:::-;11772:63;;11728:117;11884:2;11910:53;11955:7;11946:6;11935:9;11931:22;11910:53;:::i;:::-;11900:63;;11855:118;11506:474;;;;;:::o;11986:180::-;12034:77;12031:1;12024:88;12131:4;12128:1;12121:15;12155:4;12152:1;12145:15;12172:320;12216:6;12253:1;12247:4;12243:12;12233:22;;12300:1;12294:4;12290:12;12321:18;12311:81;;12377:4;12369:6;12365:17;12355:27;;12311:81;12439:2;12431:6;12428:14;12408:18;12405:38;12402:84;;12458:18;;:::i;:::-;12402:84;12223:269;12172:320;;;:::o;12498:147::-;12599:11;12636:3;12621:18;;12498:147;;;;:::o;12651:114::-;;:::o;12771:398::-;12930:3;12951:83;13032:1;13027:3;12951:83;:::i;:::-;12944:90;;13043:93;13132:3;13043:93;:::i;:::-;13161:1;13156:3;13152:11;13145:18;;12771:398;;;:::o;13175:379::-;13359:3;13381:147;13524:3;13381:147;:::i;:::-;13374:154;;13545:3;13538:10;;13175:379;;;:::o;13560:166::-;13700:18;13696:1;13688:6;13684:14;13677:42;13560:166;:::o;13732:366::-;13874:3;13895:67;13959:2;13954:3;13895:67;:::i;:::-;13888:74;;13971:93;14060:3;13971:93;:::i;:::-;14089:2;14084:3;14080:12;14073:19;;13732:366;;;:::o;14104:419::-;14270:4;14308:2;14297:9;14293:18;14285:26;;14357:9;14351:4;14347:20;14343:1;14332:9;14328:17;14321:47;14385:131;14511:4;14385:131;:::i;:::-;14377:139;;14104:419;;;:::o;14529:141::-;14578:4;14601:3;14593:11;;14624:3;14621:1;14614:14;14658:4;14655:1;14645:18;14637:26;;14529:141;;;:::o;14676:93::-;14713:6;14760:2;14755;14748:5;14744:14;14740:23;14730:33;;14676:93;;;:::o;14775:107::-;14819:8;14869:5;14863:4;14859:16;14838:37;;14775:107;;;;:::o;14888:393::-;14957:6;15007:1;14995:10;14991:18;15030:97;15060:66;15049:9;15030:97;:::i;:::-;15148:39;15178:8;15167:9;15148:39;:::i;:::-;15136:51;;15220:4;15216:9;15209:5;15205:21;15196:30;;15269:4;15259:8;15255:19;15248:5;15245:30;15235:40;;14964:317;;14888:393;;;;;:::o;15287:60::-;15315:3;15336:5;15329:12;;15287:60;;;:::o;15353:142::-;15403:9;15436:53;15454:34;15463:24;15481:5;15463:24;:::i;:::-;15454:34;:::i;:::-;15436:53;:::i;:::-;15423:66;;15353:142;;;:::o;15501:75::-;15544:3;15565:5;15558:12;;15501:75;;;:::o;15582:269::-;15692:39;15723:7;15692:39;:::i;:::-;15753:91;15802:41;15826:16;15802:41;:::i;:::-;15794:6;15787:4;15781:11;15753:91;:::i;:::-;15747:4;15740:105;15658:193;15582:269;;;:::o;15857:73::-;15902:3;15857:73;:::o;15936:189::-;16013:32;;:::i;:::-;16054:65;16112:6;16104;16098:4;16054:65;:::i;:::-;15989:136;15936:189;;:::o;16131:186::-;16191:120;16208:3;16201:5;16198:14;16191:120;;;16262:39;16299:1;16292:5;16262:39;:::i;:::-;16235:1;16228:5;16224:13;16215:22;;16191:120;;;16131:186;;:::o;16323:543::-;16424:2;16419:3;16416:11;16413:446;;;16458:38;16490:5;16458:38;:::i;:::-;16542:29;16560:10;16542:29;:::i;:::-;16532:8;16528:44;16725:2;16713:10;16710:18;16707:49;;;16746:8;16731:23;;16707:49;16769:80;16825:22;16843:3;16825:22;:::i;:::-;16815:8;16811:37;16798:11;16769:80;:::i;:::-;16428:431;;16413:446;16323:543;;;:::o;16872:117::-;16926:8;16976:5;16970:4;16966:16;16945:37;;16872:117;;;;:::o;16995:169::-;17039:6;17072:51;17120:1;17116:6;17108:5;17105:1;17101:13;17072:51;:::i;:::-;17068:56;17153:4;17147;17143:15;17133:25;;17046:118;16995:169;;;;:::o;17169:295::-;17245:4;17391:29;17416:3;17410:4;17391:29;:::i;:::-;17383:37;;17453:3;17450:1;17446:11;17440:4;17437:21;17429:29;;17169:295;;;;:::o;17469:1395::-;17586:37;17619:3;17586:37;:::i;:::-;17688:18;17680:6;17677:30;17674:56;;;17710:18;;:::i;:::-;17674:56;17754:38;17786:4;17780:11;17754:38;:::i;:::-;17839:67;17899:6;17891;17885:4;17839:67;:::i;:::-;17933:1;17957:4;17944:17;;17989:2;17981:6;17978:14;18006:1;18001:618;;;;18663:1;18680:6;18677:77;;;18729:9;18724:3;18720:19;18714:26;18705:35;;18677:77;18780:67;18840:6;18833:5;18780:67;:::i;:::-;18774:4;18767:81;18636:222;17971:887;;18001:618;18053:4;18049:9;18041:6;18037:22;18087:37;18119:4;18087:37;:::i;:::-;18146:1;18160:208;18174:7;18171:1;18168:14;18160:208;;;18253:9;18248:3;18244:19;18238:26;18230:6;18223:42;18304:1;18296:6;18292:14;18282:24;;18351:2;18340:9;18336:18;18323:31;;18197:4;18194:1;18190:12;18185:17;;18160:208;;;18396:6;18387:7;18384:19;18381:179;;;18454:9;18449:3;18445:19;18439:26;18497:48;18539:4;18531:6;18527:17;18516:9;18497:48;:::i;:::-;18489:6;18482:64;18404:156;18381:179;18606:1;18602;18594:6;18590:14;18586:22;18580:4;18573:36;18008:611;;;17971:887;;17561:1303;;;17469:1395;;:::o;18870:180::-;18918:77;18915:1;18908:88;19015:4;19012:1;19005:15;19039:4;19036:1;19029:15;19056:191;19096:3;19115:20;19133:1;19115:20;:::i;:::-;19110:25;;19149:20;19167:1;19149:20;:::i;:::-;19144:25;;19192:1;19189;19185:9;19178:16;;19213:3;19210:1;19207:10;19204:36;;;19220:18;;:::i;:::-;19204:36;19056:191;;;;:::o;19253:410::-;19293:7;19316:20;19334:1;19316:20;:::i;:::-;19311:25;;19350:20;19368:1;19350:20;:::i;:::-;19345:25;;19405:1;19402;19398:9;19427:30;19445:11;19427:30;:::i;:::-;19416:41;;19606:1;19597:7;19593:15;19590:1;19587:22;19567:1;19560:9;19540:83;19517:139;;19636:18;;:::i;:::-;19517:139;19301:362;19253:410;;;;:::o;19669:234::-;19809:34;19805:1;19797:6;19793:14;19786:58;19878:17;19873:2;19865:6;19861:15;19854:42;19669:234;:::o;19909:366::-;20051:3;20072:67;20136:2;20131:3;20072:67;:::i;:::-;20065:74;;20148:93;20237:3;20148:93;:::i;:::-;20266:2;20261:3;20257:12;20250:19;;19909:366;;;:::o;20281:419::-;20447:4;20485:2;20474:9;20470:18;20462:26;;20534:9;20528:4;20524:20;20520:1;20509:9;20505:17;20498:47;20562:131;20688:4;20562:131;:::i;:::-;20554:139;;20281:419;;;:::o;20706:148::-;20808:11;20845:3;20830:18;;20706:148;;;;:::o;20884:874::-;20987:3;21024:5;21018:12;21053:36;21079:9;21053:36;:::i;:::-;21105:89;21187:6;21182:3;21105:89;:::i;:::-;21098:96;;21225:1;21214:9;21210:17;21241:1;21236:166;;;;21416:1;21411:341;;;;21203:549;;21236:166;21320:4;21316:9;21305;21301:25;21296:3;21289:38;21382:6;21375:14;21368:22;21360:6;21356:35;21351:3;21347:45;21340:52;;21236:166;;21411:341;21478:38;21510:5;21478:38;:::i;:::-;21538:1;21552:154;21566:6;21563:1;21560:13;21552:154;;;21640:7;21634:14;21630:1;21625:3;21621:11;21614:35;21690:1;21681:7;21677:15;21666:26;;21588:4;21585:1;21581:12;21576:17;;21552:154;;;21735:6;21730:3;21726:16;21719:23;;21418:334;;21203:549;;20991:767;;20884:874;;;;:::o;21764:390::-;21870:3;21898:39;21931:5;21898:39;:::i;:::-;21953:89;22035:6;22030:3;21953:89;:::i;:::-;21946:96;;22051:65;22109:6;22104:3;22097:4;22090:5;22086:16;22051:65;:::i;:::-;22141:6;22136:3;22132:16;22125:23;;21874:280;21764:390;;;;:::o;22160:155::-;22300:7;22296:1;22288:6;22284:14;22277:31;22160:155;:::o;22321:400::-;22481:3;22502:84;22584:1;22579:3;22502:84;:::i;:::-;22495:91;;22595:93;22684:3;22595:93;:::i;:::-;22713:1;22708:3;22704:11;22697:18;;22321:400;;;:::o;22727:695::-;23005:3;23027:92;23115:3;23106:6;23027:92;:::i;:::-;23020:99;;23136:95;23227:3;23218:6;23136:95;:::i;:::-;23129:102;;23248:148;23392:3;23248:148;:::i;:::-;23241:155;;23413:3;23406:10;;22727:695;;;;;:::o;23428:98::-;23479:6;23513:5;23507:12;23497:22;;23428:98;;;:::o;23532:168::-;23615:11;23649:6;23644:3;23637:19;23689:4;23684:3;23680:14;23665:29;;23532:168;;;;:::o;23706:373::-;23792:3;23820:38;23852:5;23820:38;:::i;:::-;23874:70;23937:6;23932:3;23874:70;:::i;:::-;23867:77;;23953:65;24011:6;24006:3;23999:4;23992:5;23988:16;23953:65;:::i;:::-;24043:29;24065:6;24043:29;:::i;:::-;24038:3;24034:39;24027:46;;23796:283;23706:373;;;;:::o;24085:640::-;24280:4;24318:3;24307:9;24303:19;24295:27;;24332:71;24400:1;24389:9;24385:17;24376:6;24332:71;:::i;:::-;24413:72;24481:2;24470:9;24466:18;24457:6;24413:72;:::i;:::-;24495;24563:2;24552:9;24548:18;24539:6;24495:72;:::i;:::-;24614:9;24608:4;24604:20;24599:2;24588:9;24584:18;24577:48;24642:76;24713:4;24704:6;24642:76;:::i;:::-;24634:84;;24085:640;;;;;;;:::o;24731:141::-;24787:5;24818:6;24812:13;24803:22;;24834:32;24860:5;24834:32;:::i;:::-;24731:141;;;;:::o;24878:349::-;24947:6;24996:2;24984:9;24975:7;24971:23;24967:32;24964:119;;;25002:79;;:::i;:::-;24964:119;25122:1;25147:63;25202:7;25193:6;25182:9;25178:22;25147:63;:::i;:::-;25137:73;;25093:127;24878:349;;;;:::o;25233:180::-;25281:77;25278:1;25271:88;25378:4;25375:1;25368:15;25402:4;25399:1;25392:15
Swarm Source
ipfs://03dfa271ef788a7f4474f364036cf6ee0317bd8fbda86f956a12a010e93e2af8
[ 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.