Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
111
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FutottaNeko
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-20 */ /* Twitter : https://twitter.com/FutottaNekoNft Supply : 999 Max Mint Per Tx: 4 Price : 0.0032 Ether ------------------------------------------------------- */ // SPDX-License-Identifier: MIT 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 v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: new2.sol library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } pragma solidity ^0.8.14; contract FutottaNeko is Ownable,ERC721A{ using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = "ipfs://QmTtXUkKRaeWAaPaVZNRoE98TUg1v3vNqAwyJTF1pW5Xco/"; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost = 0.0032 ether; uint256 public maxSupply = 999; uint256 public maxMintAmountPerTx = 4; bool public paused = false; bool public revealed = true; constructor() ERC721A("Futotta Neko", "FTN") { } function mintKnights(uint256 Amount) external payable mintCompliance(Amount) { require(!paused, "The contract is paused!"); require(totalSupply()+Amount <maxSupply,"this would Oversell"); require(msg.value >= cost * Amount, "Insufficient funds!"); _safeMint(msg.sender, Amount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function Stake() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Stake","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","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":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"Amount","type":"uint256"}],"name":"mintKnights","outputs":[],"stateMutability":"payable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405260405180606001604052806036815260200162003b7660369139600a90816200002e9190620004e9565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9081620000759190620004e9565b50660b5e620f480000600d556103e7600e556004600f556000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550348015620000cf57600080fd5b506040518060400160405280600c81526020017f4675746f747461204e656b6f00000000000000000000000000000000000000008152506040518060400160405280600381526020017f46544e00000000000000000000000000000000000000000000000000000000008152506200015c620001506200019e60201b60201c565b620001a660201b60201c565b81600390816200016d9190620004e9565b5080600490816200017f9190620004e9565b50620001906200026a60201b60201c565b6001819055505050620005d0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002f157607f821691505b602082108103620003075762000306620002a9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000332565b6200037d868362000332565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003ca620003c4620003be8462000395565b6200039f565b62000395565b9050919050565b6000819050919050565b620003e683620003a9565b620003fe620003f582620003d1565b8484546200033f565b825550505050565b600090565b6200041562000406565b62000422818484620003db565b505050565b5b818110156200044a576200043e6000826200040b565b60018101905062000428565b5050565b601f821115620004995762000463816200030d565b6200046e8462000322565b810160208510156200047e578190505b620004966200048d8562000322565b83018262000427565b50505b505050565b600082821c905092915050565b6000620004be600019846008026200049e565b1980831691505092915050565b6000620004d98383620004ab565b9150826002028217905092915050565b620004f4826200026f565b67ffffffffffffffff81111562000510576200050f6200027a565b5b6200051c8254620002d8565b620005298282856200044e565b600060209050601f8311600181146200056157600084156200054c578287015190505b620005588582620004cb565b865550620005c8565b601f19841662000571866200030d565b60005b828110156200059b5784890151825560018201915060208501945060208101905062000574565b86831015620005bb5784890151620005b7601f891682620004ab565b8355505b6001600288020188555050505b505050505050565b61359680620005e06000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb01146106aa578063de20bc92146106d5578063e985e9c5146106ec578063efbd73f414610729578063f2fde38b14610752576101ee565b8063a45ba8e7146105fd578063b071401b14610628578063b88d4fde14610651578063c87b56dd1461066d576101ee565b80638da5cb5b116100dc5780638da5cb5b1461055357806394354fd01461057e57806395d89b41146105a9578063a22cb465146105d4576101ee565b80636352211e1461049957806370a08231146104d6578063715018a6146105135780637ec4a6591461052a576101ee565b806323b872dd11610185578063518302271161015457806351830227146103ed5780635503a0e8146104185780635c975abb1461044357806362b99ad41461046e576101ee565b806323b872dd1461035c5780632fd94ecb1461037857806342842e0e14610394578063438b6300146103b0576101ee565b806313faede6116101c157806313faede6146102b457806316ba10e0146102df57806316c38b3c1461030857806318160ddd14610331576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906123ed565b61077b565b6040516102279190612435565b60405180910390f35b34801561023c57600080fd5b5061024561080d565b60405161025291906124e0565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612538565b61089f565b60405161028f91906125a6565b60405180910390f35b6102b260048036038101906102ad91906125ed565b61091e565b005b3480156102c057600080fd5b506102c9610a62565b6040516102d6919061263c565b60405180910390f35b3480156102eb57600080fd5b506103066004803603810190610301919061278c565b610a68565b005b34801561031457600080fd5b5061032f600480360381019061032a9190612801565b610a83565b005b34801561033d57600080fd5b50610346610aa8565b604051610353919061263c565b60405180910390f35b6103766004803603810190610371919061282e565b610abf565b005b610392600480360381019061038d9190612538565b610de1565b005b6103ae60048036038101906103a9919061282e565b610f90565b005b3480156103bc57600080fd5b506103d760048036038101906103d29190612881565b610fb0565b6040516103e4919061296c565b60405180910390f35b3480156103f957600080fd5b506104026110ba565b60405161040f9190612435565b60405180910390f35b34801561042457600080fd5b5061042d6110cd565b60405161043a91906124e0565b60405180910390f35b34801561044f57600080fd5b5061045861115b565b6040516104659190612435565b60405180910390f35b34801561047a57600080fd5b5061048361116e565b60405161049091906124e0565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190612538565b6111fc565b6040516104cd91906125a6565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190612881565b61120e565b60405161050a919061263c565b60405180910390f35b34801561051f57600080fd5b506105286112c6565b005b34801561053657600080fd5b50610551600480360381019061054c919061278c565b6112da565b005b34801561055f57600080fd5b506105686112f5565b60405161057591906125a6565b60405180910390f35b34801561058a57600080fd5b5061059361131e565b6040516105a0919061263c565b60405180910390f35b3480156105b557600080fd5b506105be611324565b6040516105cb91906124e0565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f6919061298e565b6113b6565b005b34801561060957600080fd5b506106126114c1565b60405161061f91906124e0565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190612538565b61154f565b005b61066b60048036038101906106669190612a6f565b611561565b005b34801561067957600080fd5b50610694600480360381019061068f9190612538565b6115d4565b6040516106a191906124e0565b60405180910390f35b3480156106b657600080fd5b506106bf61172c565b6040516106cc919061263c565b60405180910390f35b3480156106e157600080fd5b506106ea611732565b005b3480156106f857600080fd5b50610713600480360381019061070e9190612af2565b6117ba565b6040516107209190612435565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612b32565b61184e565b005b34801561075e57600080fd5b5061077960048036038101906107749190612881565b611910565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108065750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461081c90612ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461084890612ba1565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b60006108aa82611993565b6108e0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610929826111fc565b90508073ffffffffffffffffffffffffffffffffffffffff1661094a6119f2565b73ffffffffffffffffffffffffffffffffffffffff16146109ad57610976816109716119f2565b6117ba565b6109ac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610a706119fa565b80600b9081610a7f9190612d7e565b5050565b610a8b6119fa565b80601060006101000a81548160ff02191690831515021790555050565b6000610ab2611a78565b6002546001540303905090565b6000610aca82611a7d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b31576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b3d84611b49565b91509150610b538187610b4e6119f2565b611b70565b610b9f57610b6886610b636119f2565b6117ba565b610b9e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c05576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c128686866001611bb4565b8015610c1d57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ceb85610cc7888887611bba565b7c020000000000000000000000000000000000000000000000000000000017611be2565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d715760006001850190506000600560008381526020019081526020016000205403610d6f576001548114610d6e578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dd98686866001611c0d565b505050505050565b80600081118015610df45750600f548111155b610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90612e9c565b60405180910390fd5b600e5481610e416009611c13565b610e4b9190612eeb565b1115610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390612f6b565b60405180910390fd5b601060009054906101000a900460ff1615610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390612fd7565b60405180910390fd5b600e5482610ee8610aa8565b610ef29190612eeb565b10610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990613043565b60405180910390fd5b81600d54610f409190613063565b341015610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f79906130f1565b60405180910390fd5b610f8c3383611c21565b5050565b610fab83838360405180602001604052806000815250611561565b505050565b60606000610fbd8361120e565b905060008167ffffffffffffffff811115610fdb57610fda612661565b5b6040519080825280602002602001820160405280156110095781602001602082028036833780820191505090505b50905060006001905060005b83811080156110265750600e548211155b156110ae576000611036836111fc565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361109a578284838151811061107f5761107e613111565b5b602002602001018181525050818061109690613140565b9250505b82806110a590613140565b93505050611015565b82945050505050919050565b601060019054906101000a900460ff1681565b600b80546110da90612ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461110690612ba1565b80156111535780601f1061112857610100808354040283529160200191611153565b820191906000526020600020905b81548152906001019060200180831161113657829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a805461117b90612ba1565b80601f01602080910402602001604051908101604052809291908181526020018280546111a790612ba1565b80156111f45780601f106111c9576101008083540402835291602001916111f4565b820191906000526020600020905b8154815290600101906020018083116111d757829003601f168201915b505050505081565b600061120782611a7d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611275576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112ce6119fa565b6112d86000611c3f565b565b6112e26119fa565b80600a90816112f19190612d7e565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606004805461133390612ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461135f90612ba1565b80156113ac5780601f10611381576101008083540402835291602001916113ac565b820191906000526020600020905b81548152906001019060200180831161138f57829003601f168201915b5050505050905090565b80600860006113c36119f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114706119f2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114b59190612435565b60405180910390a35050565b600c80546114ce90612ba1565b80601f01602080910402602001604051908101604052809291908181526020018280546114fa90612ba1565b80156115475780601f1061151c57610100808354040283529160200191611547565b820191906000526020600020905b81548152906001019060200180831161152a57829003601f168201915b505050505081565b6115576119fa565b80600f8190555050565b61156c848484610abf565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115ce5761159784848484611d03565b6115cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115df82611993565b61161e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611615906131fa565b60405180910390fd5b60001515601060019054906101000a900460ff161515036116cb57600c805461164690612ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461167290612ba1565b80156116bf5780601f10611694576101008083540402835291602001916116bf565b820191906000526020600020905b8154815290600101906020018083116116a257829003601f168201915b50505050509050611727565b60006116d5611e53565b905060008151116116f55760405180602001604052806000815250611723565b806116ff84611ee5565b600b604051602001611713939291906132d9565b6040516020818303038152906040525b9150505b919050565b600e5481565b61173a6119fa565b60006117446112f5565b73ffffffffffffffffffffffffffffffffffffffff16476040516117679061333b565b60006040518083038185875af1925050503d80600081146117a4576040519150601f19603f3d011682016040523d82523d6000602084013e6117a9565b606091505b50509050806117b757600080fd5b50565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156118615750600f548111155b6118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790612e9c565b60405180910390fd5b600e54816118ae6009611c13565b6118b89190612eeb565b11156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f090612f6b565b60405180910390fd5b6119016119fa565b61190b8284611c21565b505050565b6119186119fa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e906133c2565b60405180910390fd5b61199081611c3f565b50565b60008161199e611a78565b111580156119ad575060015482105b80156119eb575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611a02611fb3565b73ffffffffffffffffffffffffffffffffffffffff16611a206112f5565b73ffffffffffffffffffffffffffffffffffffffff1614611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d9061342e565b60405180910390fd5b565b600090565b60008082905080611a8c611a78565b11611b1257600154811015611b115760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b0f575b60008103611b05576005600083600190039350838152602001908152602001600020549050611adb565b8092505050611b44565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bd1868684611fbb565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600081600001549050919050565b611c3b828260405180602001604052806000815250611fc4565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d296119f2565b8786866040518563ffffffff1660e01b8152600401611d4b94939291906134a3565b6020604051808303816000875af1925050508015611d8757506040513d601f19601f82011682018060405250810190611d849190613504565b60015b611e00573d8060008114611db7576040519150601f19603f3d011682016040523d82523d6000602084013e611dbc565b606091505b506000815103611df8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611e6290612ba1565b80601f0160208091040260200160405190810160405280929190818152602001828054611e8e90612ba1565b8015611edb5780601f10611eb057610100808354040283529160200191611edb565b820191906000526020600020905b815481529060010190602001808311611ebe57829003601f168201915b5050505050905090565b606060006001611ef484612062565b01905060008167ffffffffffffffff811115611f1357611f12612661565b5b6040519080825280601f01601f191660200182016040528015611f455781602001600182028036833780820191505090505b509050600082602001820190505b600115611fa8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f9c57611f9b613531565b5b04945060008503611f53575b819350505050919050565b600033905090565b60009392505050565b611fce83836121b5565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461205d5760006001549050600083820390505b61200f6000868380600101945086611d03565b612045576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ffc57816001541461205a57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120c0577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120b6576120b5613531565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106120fd576d04ee2d6d415b85acef810000000083816120f3576120f2613531565b5b0492506020810190505b662386f26fc10000831061212c57662386f26fc10000838161212257612121613531565b5b0492506010810190505b6305f5e1008310612155576305f5e100838161214b5761214a613531565b5b0492506008810190505b612710831061217a5761271083816121705761216f613531565b5b0492506004810190505b6064831061219d576064838161219357612192613531565b5b0492506002810190505b600a83106121ac576001810190505b80915050919050565b60006001549050600082036121f6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122036000848385611bb4565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061227a8361226b6000866000611bba565b61227485612371565b17611be2565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461231b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122e0565b5060008203612356576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061236c6000848385611c0d565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123ca81612395565b81146123d557600080fd5b50565b6000813590506123e7816123c1565b92915050565b6000602082840312156124035761240261238b565b5b6000612411848285016123d8565b91505092915050565b60008115159050919050565b61242f8161241a565b82525050565b600060208201905061244a6000830184612426565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561248a57808201518184015260208101905061246f565b60008484015250505050565b6000601f19601f8301169050919050565b60006124b282612450565b6124bc818561245b565b93506124cc81856020860161246c565b6124d581612496565b840191505092915050565b600060208201905081810360008301526124fa81846124a7565b905092915050565b6000819050919050565b61251581612502565b811461252057600080fd5b50565b6000813590506125328161250c565b92915050565b60006020828403121561254e5761254d61238b565b5b600061255c84828501612523565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061259082612565565b9050919050565b6125a081612585565b82525050565b60006020820190506125bb6000830184612597565b92915050565b6125ca81612585565b81146125d557600080fd5b50565b6000813590506125e7816125c1565b92915050565b600080604083850312156126045761260361238b565b5b6000612612858286016125d8565b925050602061262385828601612523565b9150509250929050565b61263681612502565b82525050565b6000602082019050612651600083018461262d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61269982612496565b810181811067ffffffffffffffff821117156126b8576126b7612661565b5b80604052505050565b60006126cb612381565b90506126d78282612690565b919050565b600067ffffffffffffffff8211156126f7576126f6612661565b5b61270082612496565b9050602081019050919050565b82818337600083830152505050565b600061272f61272a846126dc565b6126c1565b90508281526020810184848401111561274b5761274a61265c565b5b61275684828561270d565b509392505050565b600082601f83011261277357612772612657565b5b813561278384826020860161271c565b91505092915050565b6000602082840312156127a2576127a161238b565b5b600082013567ffffffffffffffff8111156127c0576127bf612390565b5b6127cc8482850161275e565b91505092915050565b6127de8161241a565b81146127e957600080fd5b50565b6000813590506127fb816127d5565b92915050565b6000602082840312156128175761281661238b565b5b6000612825848285016127ec565b91505092915050565b6000806000606084860312156128475761284661238b565b5b6000612855868287016125d8565b9350506020612866868287016125d8565b925050604061287786828701612523565b9150509250925092565b6000602082840312156128975761289661238b565b5b60006128a5848285016125d8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6128e381612502565b82525050565b60006128f583836128da565b60208301905092915050565b6000602082019050919050565b6000612919826128ae565b61292381856128b9565b935061292e836128ca565b8060005b8381101561295f57815161294688826128e9565b975061295183612901565b925050600181019050612932565b5085935050505092915050565b60006020820190508181036000830152612986818461290e565b905092915050565b600080604083850312156129a5576129a461238b565b5b60006129b3858286016125d8565b92505060206129c4858286016127ec565b9150509250929050565b600067ffffffffffffffff8211156129e9576129e8612661565b5b6129f282612496565b9050602081019050919050565b6000612a12612a0d846129ce565b6126c1565b905082815260208101848484011115612a2e57612a2d61265c565b5b612a3984828561270d565b509392505050565b600082601f830112612a5657612a55612657565b5b8135612a668482602086016129ff565b91505092915050565b60008060008060808587031215612a8957612a8861238b565b5b6000612a97878288016125d8565b9450506020612aa8878288016125d8565b9350506040612ab987828801612523565b925050606085013567ffffffffffffffff811115612ada57612ad9612390565b5b612ae687828801612a41565b91505092959194509250565b60008060408385031215612b0957612b0861238b565b5b6000612b17858286016125d8565b9250506020612b28858286016125d8565b9150509250929050565b60008060408385031215612b4957612b4861238b565b5b6000612b5785828601612523565b9250506020612b68858286016125d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bb957607f821691505b602082108103612bcc57612bcb612b72565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612c347fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bf7565b612c3e8683612bf7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c7b612c76612c7184612502565b612c56565b612502565b9050919050565b6000819050919050565b612c9583612c60565b612ca9612ca182612c82565b848454612c04565b825550505050565b600090565b612cbe612cb1565b612cc9818484612c8c565b505050565b5b81811015612ced57612ce2600082612cb6565b600181019050612ccf565b5050565b601f821115612d3257612d0381612bd2565b612d0c84612be7565b81016020851015612d1b578190505b612d2f612d2785612be7565b830182612cce565b50505b505050565b600082821c905092915050565b6000612d5560001984600802612d37565b1980831691505092915050565b6000612d6e8383612d44565b9150826002028217905092915050565b612d8782612450565b67ffffffffffffffff811115612da057612d9f612661565b5b612daa8254612ba1565b612db5828285612cf1565b600060209050601f831160018114612de85760008415612dd6578287015190505b612de08582612d62565b865550612e48565b601f198416612df686612bd2565b60005b82811015612e1e57848901518255600182019150602085019450602081019050612df9565b86831015612e3b5784890151612e37601f891682612d44565b8355505b6001600288020188555050505b505050505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612e8660148361245b565b9150612e9182612e50565b602082019050919050565b60006020820190508181036000830152612eb581612e79565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ef682612502565b9150612f0183612502565b9250828201905080821115612f1957612f18612ebc565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612f5560148361245b565b9150612f6082612f1f565b602082019050919050565b60006020820190508181036000830152612f8481612f48565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000612fc160178361245b565b9150612fcc82612f8b565b602082019050919050565b60006020820190508181036000830152612ff081612fb4565b9050919050565b7f7468697320776f756c64204f76657273656c6c00000000000000000000000000600082015250565b600061302d60138361245b565b915061303882612ff7565b602082019050919050565b6000602082019050818103600083015261305c81613020565b9050919050565b600061306e82612502565b915061307983612502565b925082820261308781612502565b9150828204841483151761309e5761309d612ebc565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006130db60138361245b565b91506130e6826130a5565b602082019050919050565b6000602082019050818103600083015261310a816130ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061314b82612502565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361317d5761317c612ebc565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006131e4602f8361245b565b91506131ef82613188565b604082019050919050565b60006020820190508181036000830152613213816131d7565b9050919050565b600081905092915050565b600061323082612450565b61323a818561321a565b935061324a81856020860161246c565b80840191505092915050565b6000815461326381612ba1565b61326d818661321a565b94506001821660008114613288576001811461329d576132d0565b60ff19831686528115158202860193506132d0565b6132a685612bd2565b60005b838110156132c8578154818901526001820191506020810190506132a9565b838801955050505b50505092915050565b60006132e58286613225565b91506132f18285613225565b91506132fd8284613256565b9150819050949350505050565b600081905092915050565b50565b600061332560008361330a565b915061333082613315565b600082019050919050565b600061334682613318565b9150819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133ac60268361245b565b91506133b782613350565b604082019050919050565b600060208201905081810360008301526133db8161339f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061341860208361245b565b9150613423826133e2565b602082019050919050565b600060208201905081810360008301526134478161340b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134758261344e565b61347f8185613459565b935061348f81856020860161246c565b61349881612496565b840191505092915050565b60006080820190506134b86000830187612597565b6134c56020830186612597565b6134d2604083018561262d565b81810360608301526134e4818461346a565b905095945050505050565b6000815190506134fe816123c1565b92915050565b60006020828403121561351a5761351961238b565b5b6000613528848285016134ef565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220fda5190f3b8a68eab3065dfb5d863f5fdae240b0b931b2b5b256289240b32acf64736f6c63430008120033697066733a2f2f516d547458556b4b5261655741615061565a4e526f453938545567317633764e714177794a54463170573558636f2f
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb01146106aa578063de20bc92146106d5578063e985e9c5146106ec578063efbd73f414610729578063f2fde38b14610752576101ee565b8063a45ba8e7146105fd578063b071401b14610628578063b88d4fde14610651578063c87b56dd1461066d576101ee565b80638da5cb5b116100dc5780638da5cb5b1461055357806394354fd01461057e57806395d89b41146105a9578063a22cb465146105d4576101ee565b80636352211e1461049957806370a08231146104d6578063715018a6146105135780637ec4a6591461052a576101ee565b806323b872dd11610185578063518302271161015457806351830227146103ed5780635503a0e8146104185780635c975abb1461044357806362b99ad41461046e576101ee565b806323b872dd1461035c5780632fd94ecb1461037857806342842e0e14610394578063438b6300146103b0576101ee565b806313faede6116101c157806313faede6146102b457806316ba10e0146102df57806316c38b3c1461030857806318160ddd14610331576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906123ed565b61077b565b6040516102279190612435565b60405180910390f35b34801561023c57600080fd5b5061024561080d565b60405161025291906124e0565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612538565b61089f565b60405161028f91906125a6565b60405180910390f35b6102b260048036038101906102ad91906125ed565b61091e565b005b3480156102c057600080fd5b506102c9610a62565b6040516102d6919061263c565b60405180910390f35b3480156102eb57600080fd5b506103066004803603810190610301919061278c565b610a68565b005b34801561031457600080fd5b5061032f600480360381019061032a9190612801565b610a83565b005b34801561033d57600080fd5b50610346610aa8565b604051610353919061263c565b60405180910390f35b6103766004803603810190610371919061282e565b610abf565b005b610392600480360381019061038d9190612538565b610de1565b005b6103ae60048036038101906103a9919061282e565b610f90565b005b3480156103bc57600080fd5b506103d760048036038101906103d29190612881565b610fb0565b6040516103e4919061296c565b60405180910390f35b3480156103f957600080fd5b506104026110ba565b60405161040f9190612435565b60405180910390f35b34801561042457600080fd5b5061042d6110cd565b60405161043a91906124e0565b60405180910390f35b34801561044f57600080fd5b5061045861115b565b6040516104659190612435565b60405180910390f35b34801561047a57600080fd5b5061048361116e565b60405161049091906124e0565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190612538565b6111fc565b6040516104cd91906125a6565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190612881565b61120e565b60405161050a919061263c565b60405180910390f35b34801561051f57600080fd5b506105286112c6565b005b34801561053657600080fd5b50610551600480360381019061054c919061278c565b6112da565b005b34801561055f57600080fd5b506105686112f5565b60405161057591906125a6565b60405180910390f35b34801561058a57600080fd5b5061059361131e565b6040516105a0919061263c565b60405180910390f35b3480156105b557600080fd5b506105be611324565b6040516105cb91906124e0565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f6919061298e565b6113b6565b005b34801561060957600080fd5b506106126114c1565b60405161061f91906124e0565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190612538565b61154f565b005b61066b60048036038101906106669190612a6f565b611561565b005b34801561067957600080fd5b50610694600480360381019061068f9190612538565b6115d4565b6040516106a191906124e0565b60405180910390f35b3480156106b657600080fd5b506106bf61172c565b6040516106cc919061263c565b60405180910390f35b3480156106e157600080fd5b506106ea611732565b005b3480156106f857600080fd5b50610713600480360381019061070e9190612af2565b6117ba565b6040516107209190612435565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612b32565b61184e565b005b34801561075e57600080fd5b5061077960048036038101906107749190612881565b611910565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108065750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461081c90612ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461084890612ba1565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b60006108aa82611993565b6108e0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610929826111fc565b90508073ffffffffffffffffffffffffffffffffffffffff1661094a6119f2565b73ffffffffffffffffffffffffffffffffffffffff16146109ad57610976816109716119f2565b6117ba565b6109ac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610a706119fa565b80600b9081610a7f9190612d7e565b5050565b610a8b6119fa565b80601060006101000a81548160ff02191690831515021790555050565b6000610ab2611a78565b6002546001540303905090565b6000610aca82611a7d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b31576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b3d84611b49565b91509150610b538187610b4e6119f2565b611b70565b610b9f57610b6886610b636119f2565b6117ba565b610b9e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c05576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c128686866001611bb4565b8015610c1d57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ceb85610cc7888887611bba565b7c020000000000000000000000000000000000000000000000000000000017611be2565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d715760006001850190506000600560008381526020019081526020016000205403610d6f576001548114610d6e578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dd98686866001611c0d565b505050505050565b80600081118015610df45750600f548111155b610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90612e9c565b60405180910390fd5b600e5481610e416009611c13565b610e4b9190612eeb565b1115610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390612f6b565b60405180910390fd5b601060009054906101000a900460ff1615610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390612fd7565b60405180910390fd5b600e5482610ee8610aa8565b610ef29190612eeb565b10610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990613043565b60405180910390fd5b81600d54610f409190613063565b341015610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f79906130f1565b60405180910390fd5b610f8c3383611c21565b5050565b610fab83838360405180602001604052806000815250611561565b505050565b60606000610fbd8361120e565b905060008167ffffffffffffffff811115610fdb57610fda612661565b5b6040519080825280602002602001820160405280156110095781602001602082028036833780820191505090505b50905060006001905060005b83811080156110265750600e548211155b156110ae576000611036836111fc565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361109a578284838151811061107f5761107e613111565b5b602002602001018181525050818061109690613140565b9250505b82806110a590613140565b93505050611015565b82945050505050919050565b601060019054906101000a900460ff1681565b600b80546110da90612ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461110690612ba1565b80156111535780601f1061112857610100808354040283529160200191611153565b820191906000526020600020905b81548152906001019060200180831161113657829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a805461117b90612ba1565b80601f01602080910402602001604051908101604052809291908181526020018280546111a790612ba1565b80156111f45780601f106111c9576101008083540402835291602001916111f4565b820191906000526020600020905b8154815290600101906020018083116111d757829003601f168201915b505050505081565b600061120782611a7d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611275576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112ce6119fa565b6112d86000611c3f565b565b6112e26119fa565b80600a90816112f19190612d7e565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606004805461133390612ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461135f90612ba1565b80156113ac5780601f10611381576101008083540402835291602001916113ac565b820191906000526020600020905b81548152906001019060200180831161138f57829003601f168201915b5050505050905090565b80600860006113c36119f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114706119f2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114b59190612435565b60405180910390a35050565b600c80546114ce90612ba1565b80601f01602080910402602001604051908101604052809291908181526020018280546114fa90612ba1565b80156115475780601f1061151c57610100808354040283529160200191611547565b820191906000526020600020905b81548152906001019060200180831161152a57829003601f168201915b505050505081565b6115576119fa565b80600f8190555050565b61156c848484610abf565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115ce5761159784848484611d03565b6115cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115df82611993565b61161e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611615906131fa565b60405180910390fd5b60001515601060019054906101000a900460ff161515036116cb57600c805461164690612ba1565b80601f016020809104026020016040519081016040528092919081815260200182805461167290612ba1565b80156116bf5780601f10611694576101008083540402835291602001916116bf565b820191906000526020600020905b8154815290600101906020018083116116a257829003601f168201915b50505050509050611727565b60006116d5611e53565b905060008151116116f55760405180602001604052806000815250611723565b806116ff84611ee5565b600b604051602001611713939291906132d9565b6040516020818303038152906040525b9150505b919050565b600e5481565b61173a6119fa565b60006117446112f5565b73ffffffffffffffffffffffffffffffffffffffff16476040516117679061333b565b60006040518083038185875af1925050503d80600081146117a4576040519150601f19603f3d011682016040523d82523d6000602084013e6117a9565b606091505b50509050806117b757600080fd5b50565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156118615750600f548111155b6118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790612e9c565b60405180910390fd5b600e54816118ae6009611c13565b6118b89190612eeb565b11156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f090612f6b565b60405180910390fd5b6119016119fa565b61190b8284611c21565b505050565b6119186119fa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e906133c2565b60405180910390fd5b61199081611c3f565b50565b60008161199e611a78565b111580156119ad575060015482105b80156119eb575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611a02611fb3565b73ffffffffffffffffffffffffffffffffffffffff16611a206112f5565b73ffffffffffffffffffffffffffffffffffffffff1614611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d9061342e565b60405180910390fd5b565b600090565b60008082905080611a8c611a78565b11611b1257600154811015611b115760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b0f575b60008103611b05576005600083600190039350838152602001908152602001600020549050611adb565b8092505050611b44565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bd1868684611fbb565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600081600001549050919050565b611c3b828260405180602001604052806000815250611fc4565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d296119f2565b8786866040518563ffffffff1660e01b8152600401611d4b94939291906134a3565b6020604051808303816000875af1925050508015611d8757506040513d601f19601f82011682018060405250810190611d849190613504565b60015b611e00573d8060008114611db7576040519150601f19603f3d011682016040523d82523d6000602084013e611dbc565b606091505b506000815103611df8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611e6290612ba1565b80601f0160208091040260200160405190810160405280929190818152602001828054611e8e90612ba1565b8015611edb5780601f10611eb057610100808354040283529160200191611edb565b820191906000526020600020905b815481529060010190602001808311611ebe57829003601f168201915b5050505050905090565b606060006001611ef484612062565b01905060008167ffffffffffffffff811115611f1357611f12612661565b5b6040519080825280601f01601f191660200182016040528015611f455781602001600182028036833780820191505090505b509050600082602001820190505b600115611fa8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f9c57611f9b613531565b5b04945060008503611f53575b819350505050919050565b600033905090565b60009392505050565b611fce83836121b5565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461205d5760006001549050600083820390505b61200f6000868380600101945086611d03565b612045576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ffc57816001541461205a57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120c0577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120b6576120b5613531565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106120fd576d04ee2d6d415b85acef810000000083816120f3576120f2613531565b5b0492506020810190505b662386f26fc10000831061212c57662386f26fc10000838161212257612121613531565b5b0492506010810190505b6305f5e1008310612155576305f5e100838161214b5761214a613531565b5b0492506008810190505b612710831061217a5761271083816121705761216f613531565b5b0492506004810190505b6064831061219d576064838161219357612192613531565b5b0492506002810190505b600a83106121ac576001810190505b80915050919050565b60006001549050600082036121f6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122036000848385611bb4565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061227a8361226b6000866000611bba565b61227485612371565b17611be2565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461231b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122e0565b5060008203612356576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061236c6000848385611c0d565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123ca81612395565b81146123d557600080fd5b50565b6000813590506123e7816123c1565b92915050565b6000602082840312156124035761240261238b565b5b6000612411848285016123d8565b91505092915050565b60008115159050919050565b61242f8161241a565b82525050565b600060208201905061244a6000830184612426565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561248a57808201518184015260208101905061246f565b60008484015250505050565b6000601f19601f8301169050919050565b60006124b282612450565b6124bc818561245b565b93506124cc81856020860161246c565b6124d581612496565b840191505092915050565b600060208201905081810360008301526124fa81846124a7565b905092915050565b6000819050919050565b61251581612502565b811461252057600080fd5b50565b6000813590506125328161250c565b92915050565b60006020828403121561254e5761254d61238b565b5b600061255c84828501612523565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061259082612565565b9050919050565b6125a081612585565b82525050565b60006020820190506125bb6000830184612597565b92915050565b6125ca81612585565b81146125d557600080fd5b50565b6000813590506125e7816125c1565b92915050565b600080604083850312156126045761260361238b565b5b6000612612858286016125d8565b925050602061262385828601612523565b9150509250929050565b61263681612502565b82525050565b6000602082019050612651600083018461262d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61269982612496565b810181811067ffffffffffffffff821117156126b8576126b7612661565b5b80604052505050565b60006126cb612381565b90506126d78282612690565b919050565b600067ffffffffffffffff8211156126f7576126f6612661565b5b61270082612496565b9050602081019050919050565b82818337600083830152505050565b600061272f61272a846126dc565b6126c1565b90508281526020810184848401111561274b5761274a61265c565b5b61275684828561270d565b509392505050565b600082601f83011261277357612772612657565b5b813561278384826020860161271c565b91505092915050565b6000602082840312156127a2576127a161238b565b5b600082013567ffffffffffffffff8111156127c0576127bf612390565b5b6127cc8482850161275e565b91505092915050565b6127de8161241a565b81146127e957600080fd5b50565b6000813590506127fb816127d5565b92915050565b6000602082840312156128175761281661238b565b5b6000612825848285016127ec565b91505092915050565b6000806000606084860312156128475761284661238b565b5b6000612855868287016125d8565b9350506020612866868287016125d8565b925050604061287786828701612523565b9150509250925092565b6000602082840312156128975761289661238b565b5b60006128a5848285016125d8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6128e381612502565b82525050565b60006128f583836128da565b60208301905092915050565b6000602082019050919050565b6000612919826128ae565b61292381856128b9565b935061292e836128ca565b8060005b8381101561295f57815161294688826128e9565b975061295183612901565b925050600181019050612932565b5085935050505092915050565b60006020820190508181036000830152612986818461290e565b905092915050565b600080604083850312156129a5576129a461238b565b5b60006129b3858286016125d8565b92505060206129c4858286016127ec565b9150509250929050565b600067ffffffffffffffff8211156129e9576129e8612661565b5b6129f282612496565b9050602081019050919050565b6000612a12612a0d846129ce565b6126c1565b905082815260208101848484011115612a2e57612a2d61265c565b5b612a3984828561270d565b509392505050565b600082601f830112612a5657612a55612657565b5b8135612a668482602086016129ff565b91505092915050565b60008060008060808587031215612a8957612a8861238b565b5b6000612a97878288016125d8565b9450506020612aa8878288016125d8565b9350506040612ab987828801612523565b925050606085013567ffffffffffffffff811115612ada57612ad9612390565b5b612ae687828801612a41565b91505092959194509250565b60008060408385031215612b0957612b0861238b565b5b6000612b17858286016125d8565b9250506020612b28858286016125d8565b9150509250929050565b60008060408385031215612b4957612b4861238b565b5b6000612b5785828601612523565b9250506020612b68858286016125d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bb957607f821691505b602082108103612bcc57612bcb612b72565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612c347fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bf7565b612c3e8683612bf7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c7b612c76612c7184612502565b612c56565b612502565b9050919050565b6000819050919050565b612c9583612c60565b612ca9612ca182612c82565b848454612c04565b825550505050565b600090565b612cbe612cb1565b612cc9818484612c8c565b505050565b5b81811015612ced57612ce2600082612cb6565b600181019050612ccf565b5050565b601f821115612d3257612d0381612bd2565b612d0c84612be7565b81016020851015612d1b578190505b612d2f612d2785612be7565b830182612cce565b50505b505050565b600082821c905092915050565b6000612d5560001984600802612d37565b1980831691505092915050565b6000612d6e8383612d44565b9150826002028217905092915050565b612d8782612450565b67ffffffffffffffff811115612da057612d9f612661565b5b612daa8254612ba1565b612db5828285612cf1565b600060209050601f831160018114612de85760008415612dd6578287015190505b612de08582612d62565b865550612e48565b601f198416612df686612bd2565b60005b82811015612e1e57848901518255600182019150602085019450602081019050612df9565b86831015612e3b5784890151612e37601f891682612d44565b8355505b6001600288020188555050505b505050505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612e8660148361245b565b9150612e9182612e50565b602082019050919050565b60006020820190508181036000830152612eb581612e79565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ef682612502565b9150612f0183612502565b9250828201905080821115612f1957612f18612ebc565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612f5560148361245b565b9150612f6082612f1f565b602082019050919050565b60006020820190508181036000830152612f8481612f48565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000612fc160178361245b565b9150612fcc82612f8b565b602082019050919050565b60006020820190508181036000830152612ff081612fb4565b9050919050565b7f7468697320776f756c64204f76657273656c6c00000000000000000000000000600082015250565b600061302d60138361245b565b915061303882612ff7565b602082019050919050565b6000602082019050818103600083015261305c81613020565b9050919050565b600061306e82612502565b915061307983612502565b925082820261308781612502565b9150828204841483151761309e5761309d612ebc565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006130db60138361245b565b91506130e6826130a5565b602082019050919050565b6000602082019050818103600083015261310a816130ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061314b82612502565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361317d5761317c612ebc565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006131e4602f8361245b565b91506131ef82613188565b604082019050919050565b60006020820190508181036000830152613213816131d7565b9050919050565b600081905092915050565b600061323082612450565b61323a818561321a565b935061324a81856020860161246c565b80840191505092915050565b6000815461326381612ba1565b61326d818661321a565b94506001821660008114613288576001811461329d576132d0565b60ff19831686528115158202860193506132d0565b6132a685612bd2565b60005b838110156132c8578154818901526001820191506020810190506132a9565b838801955050505b50505092915050565b60006132e58286613225565b91506132f18285613225565b91506132fd8284613256565b9150819050949350505050565b600081905092915050565b50565b600061332560008361330a565b915061333082613315565b600082019050919050565b600061334682613318565b9150819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133ac60268361245b565b91506133b782613350565b604082019050919050565b600060208201905081810360008301526133db8161339f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061341860208361245b565b9150613423826133e2565b602082019050919050565b600060208201905081810360008301526134478161340b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134758261344e565b61347f8185613459565b935061348f81856020860161246c565b61349881612496565b840191505092915050565b60006080820190506134b86000830187612597565b6134c56020830186612597565b6134d2604083018561262d565b81810360608301526134e4818461346a565b905095945050505050565b6000815190506134fe816123c1565b92915050565b60006020828403121561351a5761351961238b565b5b6000613528848285016134ef565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220fda5190f3b8a68eab3065dfb5d863f5fdae240b0b931b2b5b256289240b32acf64736f6c63430008120033
Deployed Bytecode Sourcemap
71389:3096:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18511:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19413:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25904:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25337:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71701:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72659:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72765:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15164:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29543:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71941:303;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32464:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72956:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71850:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71625:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71819:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71538:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20806:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16348:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54318:103;;;;;;;;;;;;;:::i;:::-;;72553:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53670:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71775:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19589:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26462:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71663:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72417:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33255:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73597:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71740:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74335:143;;;;;;;;;;;;;:::i;:::-;;26853:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72254:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54576:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18511:639;18596:4;18935:10;18920:25;;:11;:25;;;;:102;;;;19012:10;18997:25;;:11;:25;;;;18920:102;:179;;;;19089:10;19074:25;;:11;:25;;;;18920:179;18900:199;;18511:639;;;:::o;19413:100::-;19467:13;19500:5;19493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19413:100;:::o;25904:218::-;25980:7;26005:16;26013:7;26005;:16::i;:::-;26000:64;;26030:34;;;;;;;;;;;;;;26000:64;26084:15;:24;26100:7;26084:24;;;;;;;;;;;:30;;;;;;;;;;;;26077:37;;25904:218;;;:::o;25337:408::-;25426:13;25442:16;25450:7;25442;:16::i;:::-;25426:32;;25498:5;25475:28;;:19;:17;:19::i;:::-;:28;;;25471:175;;25523:44;25540:5;25547:19;:17;:19::i;:::-;25523:16;:44::i;:::-;25518:128;;25595:35;;;;;;;;;;;;;;25518:128;25471:175;25691:2;25658:15;:24;25674:7;25658:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25729:7;25725:2;25709:28;;25718:5;25709:28;;;;;;;;;;;;25415:330;25337:408;;:::o;71701:34::-;;;;:::o;72659:100::-;53556:13;:11;:13::i;:::-;72743:10:::1;72731:9;:22;;;;;;:::i;:::-;;72659:100:::0;:::o;72765:77::-;53556:13;:11;:13::i;:::-;72830:6:::1;72821;;:15;;;;;;;;;;;;;;;;;;72765:77:::0;:::o;15164:323::-;15225:7;15453:15;:13;:15::i;:::-;15438:12;;15422:13;;:28;:46;15415:53;;15164:323;:::o;29543:2825::-;29685:27;29715;29734:7;29715:18;:27::i;:::-;29685:57;;29800:4;29759:45;;29775:19;29759:45;;;29755:86;;29813:28;;;;;;;;;;;;;;29755:86;29855:27;29884:23;29911:35;29938:7;29911:26;:35::i;:::-;29854:92;;;;30046:68;30071:15;30088:4;30094:19;:17;:19::i;:::-;30046:24;:68::i;:::-;30041:180;;30134:43;30151:4;30157:19;:17;:19::i;:::-;30134:16;:43::i;:::-;30129:92;;30186:35;;;;;;;;;;;;;;30129:92;30041:180;30252:1;30238:16;;:2;:16;;;30234:52;;30263:23;;;;;;;;;;;;;;30234:52;30299:43;30321:4;30327:2;30331:7;30340:1;30299:21;:43::i;:::-;30435:15;30432:160;;;30575:1;30554:19;30547:30;30432:160;30972:18;:24;30991:4;30972:24;;;;;;;;;;;;;;;;30970:26;;;;;;;;;;;;31041:18;:22;31060:2;31041:22;;;;;;;;;;;;;;;;31039:24;;;;;;;;;;;31363:146;31400:2;31449:45;31464:4;31470:2;31474:19;31449:14;:45::i;:::-;11563:8;31421:73;31363:18;:146::i;:::-;31334:17;:26;31352:7;31334:26;;;;;;;;;;;:175;;;;31680:1;11563:8;31629:19;:47;:52;31625:627;;31702:19;31734:1;31724:7;:11;31702:33;;31891:1;31857:17;:30;31875:11;31857:30;;;;;;;;;;;;:35;31853:384;;31995:13;;31980:11;:28;31976:242;;32175:19;32142:17;:30;32160:11;32142:30;;;;;;;;;;;:52;;;;31976:242;31853:384;31683:569;31625:627;32299:7;32295:2;32280:27;;32289:4;32280:27;;;;;;;;;;;;32318:42;32339:4;32345:2;32349:7;32358:1;32318:20;:42::i;:::-;29674:2694;;;29543:2825;;;:::o;71941:303::-;72010:6;74168:1;74154:11;:15;:52;;;;;74188:18;;74173:11;:33;;74154:52;74146:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;74280:9;;74265:11;74246:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;74238:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;72034:6:::1;;;;;;;;;;;72033:7;72025:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;72105:9;;72097:6;72083:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:31;72075:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;72172:6;72165:4;;:13;;;;:::i;:::-;72152:9;:26;;72144:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;72209:29;72219:10;72231:6;72209:9;:29::i;:::-;71941:303:::0;;:::o;32464:193::-;32610:39;32627:4;32633:2;32637:7;32610:39;;;;;;;;;;;;:16;:39::i;:::-;32464:193;;;:::o;72956:635::-;73031:16;73059:23;73085:17;73095:6;73085:9;:17::i;:::-;73059:43;;73109:30;73156:15;73142:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73109:63;;73179:22;73204:1;73179:26;;73212:23;73248:309;73273:15;73255;:33;:64;;;;;73310:9;;73292:14;:27;;73255:64;73248:309;;;73330:25;73358:23;73366:14;73358:7;:23::i;:::-;73330:51;;73417:6;73396:27;;:17;:27;;;73392:131;;73469:14;73436:13;73450:15;73436:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;73496:17;;;;;:::i;:::-;;;;73392:131;73533:16;;;;;:::i;:::-;;;;73321:236;73248:309;;;73572:13;73565:20;;;;;;72956:635;;;:::o;71850:27::-;;;;;;;;;;;;;:::o;71625:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71819:26::-;;;;;;;;;;;;;:::o;71538:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20806:152::-;20878:7;20921:27;20940:7;20921:18;:27::i;:::-;20898:52;;20806:152;;;:::o;16348:233::-;16420:7;16461:1;16444:19;;:5;:19;;;16440:60;;16472:28;;;;;;;;;;;;;;16440:60;10507:13;16518:18;:25;16537:5;16518:25;;;;;;;;;;;;;;;;:55;16511:62;;16348:233;;;:::o;54318:103::-;53556:13;:11;:13::i;:::-;54383:30:::1;54410:1;54383:18;:30::i;:::-;54318:103::o:0;72553:100::-;53556:13;:11;:13::i;:::-;72637:10:::1;72625:9;:22;;;;;;:::i;:::-;;72553:100:::0;:::o;53670:87::-;53716:7;53743:6;;;;;;;;;;;53736:13;;53670:87;:::o;71775:37::-;;;;:::o;19589:104::-;19645:13;19678:7;19671:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19589:104;:::o;26462:234::-;26609:8;26557:18;:39;26576:19;:17;:19::i;:::-;26557:39;;;;;;;;;;;;;;;:49;26597:8;26557:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26669:8;26633:55;;26648:19;:17;:19::i;:::-;26633:55;;;26679:8;26633:55;;;;;;:::i;:::-;;;;;;;;26462:234;;:::o;71663:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72417:130::-;53556:13;:11;:13::i;:::-;72522:19:::1;72501:18;:40;;;;72417:130:::0;:::o;33255:407::-;33430:31;33443:4;33449:2;33453:7;33430:12;:31::i;:::-;33494:1;33476:2;:14;;;:19;33472:183;;33515:56;33546:4;33552:2;33556:7;33565:5;33515:30;:56::i;:::-;33510:145;;33599:40;;;;;;;;;;;;;;33510:145;33472:183;33255:407;;;;:::o;73597:494::-;73696:13;73737:17;73745:8;73737:7;:17::i;:::-;73721:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;73844:5;73832:17;;:8;;;;;;;;;;;:17;;;73828:64;;73867:17;73860:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73828:64;73900:28;73931:10;:8;:10::i;:::-;73900:41;;73986:1;73961:14;73955:28;:32;:130;;;;;;;;;;;;;;;;;74023:14;74039:19;:8;:17;:19::i;:::-;74060:9;74006:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73955:130;73948:137;;;73597:494;;;;:::o;71740:30::-;;;;:::o;74335:143::-;53556:13;:11;:13::i;:::-;74383:7:::1;74404;:5;:7::i;:::-;74396:21;;74425;74396:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74382:69;;;74466:2;74458:11;;;::::0;::::1;;74369:109;74335:143::o:0;26853:164::-;26950:4;26974:18;:25;26993:5;26974:25;;;;;;;;;;;;;;;:35;27000:8;26974:35;;;;;;;;;;;;;;;;;;;;;;;;;26967:42;;26853:164;;;;:::o;72254:155::-;72340:11;74168:1;74154:11;:15;:52;;;;;74188:18;;74173:11;:33;;74154:52;74146:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;74280:9;;74265:11;74246:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;74238:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;53556:13:::1;:11;:13::i;:::-;72370:33:::2;72380:9;72391:11;72370:9;:33::i;:::-;72254:155:::0;;;:::o;54576:201::-;53556:13;:11;:13::i;:::-;54685:1:::1;54665:22;;:8;:22;;::::0;54657:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;54741:28;54760:8;54741:18;:28::i;:::-;54576:201:::0;:::o;27275:282::-;27340:4;27396:7;27377:15;:13;:15::i;:::-;:26;;:66;;;;;27430:13;;27420:7;:23;27377:66;:153;;;;;27529:1;11283:8;27481:17;:26;27499:7;27481:26;;;;;;;;;;;;:44;:49;27377:153;27357:173;;27275:282;;;:::o;49583:105::-;49643:7;49670:10;49663:17;;49583:105;:::o;53835:132::-;53910:12;:10;:12::i;:::-;53899:23;;:7;:5;:7::i;:::-;:23;;;53891:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53835:132::o;14680:92::-;14736:7;14680:92;:::o;21961:1275::-;22028:7;22048:12;22063:7;22048:22;;22131:4;22112:15;:13;:15::i;:::-;:23;22108:1061;;22165:13;;22158:4;:20;22154:1015;;;22203:14;22220:17;:23;22238:4;22220:23;;;;;;;;;;;;22203:40;;22337:1;11283:8;22309:6;:24;:29;22305:845;;22974:113;22991:1;22981:6;:11;22974:113;;23034:17;:25;23052:6;;;;;;;23034:25;;;;;;;;;;;;23025:34;;22974:113;;;23120:6;23113:13;;;;;;22305:845;22180:989;22154:1015;22108:1061;23197:31;;;;;;;;;;;;;;21961:1275;;;;:::o;28438:485::-;28540:27;28569:23;28610:38;28651:15;:24;28667:7;28651:24;;;;;;;;;;;28610:65;;28828:18;28805:41;;28885:19;28879:26;28860:45;;28790:126;28438:485;;;:::o;27666:659::-;27815:11;27980:16;27973:5;27969:28;27960:37;;28140:16;28129:9;28125:32;28112:45;;28290:15;28279:9;28276:30;28268:5;28257:9;28254:20;28251:56;28241:66;;27666:659;;;;;:::o;34324:159::-;;;;;:::o;48892:311::-;49027:7;49047:16;11687:3;49073:19;:41;;49047:68;;11687:3;49141:31;49152:4;49158:2;49162:9;49141:10;:31::i;:::-;49133:40;;:62;;49126:69;;;48892:311;;;;;:::o;23784:450::-;23864:14;24032:16;24025:5;24021:28;24012:37;;24209:5;24195:11;24170:23;24166:41;24163:52;24156:5;24153:63;24143:73;;23784:450;;;;:::o;35148:158::-;;;;;:::o;70768:114::-;70833:7;70860;:14;;;70853:21;;70768:114;;;:::o;43415:112::-;43492:27;43502:2;43506:8;43492:27;;;;;;;;;;;;:9;:27::i;:::-;43415:112;;:::o;54937:191::-;55011:16;55030:6;;;;;;;;;;;55011:25;;55056:8;55047:6;;:17;;;;;;;;;;;;;;;;;;55111:8;55080:40;;55101:8;55080:40;;;;;;;;;;;;55000:128;54937:191;:::o;35746:716::-;35909:4;35955:2;35930:45;;;35976:19;:17;:19::i;:::-;35997:4;36003:7;36012:5;35930:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35926:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36230:1;36213:6;:13;:18;36209:235;;36259:40;;;;;;;;;;;;;;36209:235;36402:6;36396:13;36387:6;36383:2;36379:15;36372:38;35926:529;36099:54;;;36089:64;;;:6;:64;;;;36082:71;;;35746:716;;;;;;:::o;72846:104::-;72906:13;72935:9;72928:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72846:104;:::o;68440:716::-;68496:13;68547:14;68584:1;68564:17;68575:5;68564:10;:17::i;:::-;:21;68547:38;;68600:20;68634:6;68623:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68600:41;;68656:11;68785:6;68781:2;68777:15;68769:6;68765:28;68758:35;;68822:288;68829:4;68822:288;;;68854:5;;;;;;;;68996:8;68991:2;68984:5;68980:14;68975:30;68970:3;68962:44;69052:2;69043:11;;;;;;:::i;:::-;;;;;69086:1;69077:5;:10;68822:288;69073:21;68822:288;69131:6;69124:13;;;;;68440:716;;;:::o;52221:98::-;52274:7;52301:10;52294:17;;52221:98;:::o;48593:147::-;48730:6;48593:147;;;;;:::o;42642:689::-;42773:19;42779:2;42783:8;42773:5;:19::i;:::-;42852:1;42834:2;:14;;;:19;42830:483;;42874:11;42888:13;;42874:27;;42920:13;42942:8;42936:3;:14;42920:30;;42969:233;43000:62;43039:1;43043:2;43047:7;;;;;;43056:5;43000:30;:62::i;:::-;42995:167;;43098:40;;;;;;;;;;;;;;42995:167;43197:3;43189:5;:11;42969:233;;43284:3;43267:13;;:20;43263:34;;43289:8;;;43263:34;42855:458;;42830:483;42642:689;;;:::o;65306:922::-;65359:7;65379:14;65396:1;65379:18;;65446:6;65437:5;:15;65433:102;;65482:6;65473:15;;;;;;:::i;:::-;;;;;65517:2;65507:12;;;;65433:102;65562:6;65553:5;:15;65549:102;;65598:6;65589:15;;;;;;:::i;:::-;;;;;65633:2;65623:12;;;;65549:102;65678:6;65669:5;:15;65665:102;;65714:6;65705:15;;;;;;:::i;:::-;;;;;65749:2;65739:12;;;;65665:102;65794:5;65785;:14;65781:99;;65829:5;65820:14;;;;;;:::i;:::-;;;;;65863:1;65853:11;;;;65781:99;65907:5;65898;:14;65894:99;;65942:5;65933:14;;;;;;:::i;:::-;;;;;65976:1;65966:11;;;;65894:99;66020:5;66011;:14;66007:99;;66055:5;66046:14;;;;;;:::i;:::-;;;;;66089:1;66079:11;;;;66007:99;66133:5;66124;:14;66120:66;;66169:1;66159:11;;;;66120:66;66214:6;66207:13;;;65306:922;;;:::o;36924:2966::-;36997:20;37020:13;;36997:36;;37060:1;37048:8;:13;37044:44;;37070:18;;;;;;;;;;;;;;37044:44;37101:61;37131:1;37135:2;37139:12;37153:8;37101:21;:61::i;:::-;37645:1;10645:2;37615:1;:26;;37614:32;37602:8;:45;37576:18;:22;37595:2;37576:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37924:139;37961:2;38015:33;38038:1;38042:2;38046:1;38015:14;:33::i;:::-;37982:30;38003:8;37982:20;:30::i;:::-;:66;37924:18;:139::i;:::-;37890:17;:31;37908:12;37890:31;;;;;;;;;;;:173;;;;38080:16;38111:11;38140:8;38125:12;:23;38111:37;;38661:16;38657:2;38653:25;38641:37;;39033:12;38993:8;38952:1;38890:25;38831:1;38770;38743:335;39404:1;39390:12;39386:20;39344:346;39445:3;39436:7;39433:16;39344:346;;39663:7;39653:8;39650:1;39623:25;39620:1;39617;39612:59;39498:1;39489:7;39485:15;39474:26;;39344:346;;;39348:77;39735:1;39723:8;:13;39719:45;;39745:19;;;;;;;;;;;;;;39719:45;39797:3;39781:13;:19;;;;37350:2462;;39822:60;39851:1;39855:2;39859:12;39873:8;39822:20;:60::i;:::-;36986:2904;36924:2966;;:::o;24336:324::-;24406:14;24639:1;24629:8;24626:15;24600:24;24596:46;24586:56;;24336:324;;;:::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:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:117::-;5351:1;5348;5341:12;5365:117;5474:1;5471;5464:12;5488:180;5536:77;5533:1;5526:88;5633:4;5630:1;5623:15;5657:4;5654:1;5647:15;5674:281;5757:27;5779:4;5757:27;:::i;:::-;5749:6;5745:40;5887:6;5875:10;5872:22;5851:18;5839:10;5836:34;5833:62;5830:88;;;5898:18;;:::i;:::-;5830:88;5938:10;5934:2;5927:22;5717:238;5674:281;;:::o;5961:129::-;5995:6;6022:20;;:::i;:::-;6012:30;;6051:33;6079:4;6071:6;6051:33;:::i;:::-;5961:129;;;:::o;6096:308::-;6158:4;6248:18;6240:6;6237:30;6234:56;;;6270:18;;:::i;:::-;6234:56;6308:29;6330:6;6308:29;:::i;:::-;6300:37;;6392:4;6386;6382:15;6374:23;;6096:308;;;:::o;6410:146::-;6507:6;6502:3;6497;6484:30;6548:1;6539:6;6534:3;6530:16;6523:27;6410:146;;;:::o;6562:425::-;6640:5;6665:66;6681:49;6723:6;6681:49;:::i;:::-;6665:66;:::i;:::-;6656:75;;6754:6;6747:5;6740:21;6792:4;6785:5;6781:16;6830:3;6821:6;6816:3;6812:16;6809:25;6806:112;;;6837:79;;:::i;:::-;6806:112;6927:54;6974:6;6969:3;6964;6927:54;:::i;:::-;6646:341;6562:425;;;;;:::o;7007:340::-;7063:5;7112:3;7105:4;7097:6;7093:17;7089:27;7079:122;;7120:79;;:::i;:::-;7079:122;7237:6;7224:20;7262:79;7337:3;7329:6;7322:4;7314:6;7310:17;7262:79;:::i;:::-;7253:88;;7069:278;7007:340;;;;:::o;7353:509::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7625:1;7614:9;7610:17;7597:31;7655:18;7647:6;7644:30;7641:117;;;7677:79;;:::i;:::-;7641:117;7782:63;7837:7;7828:6;7817:9;7813:22;7782:63;:::i;:::-;7772:73;;7568:287;7353:509;;;;:::o;7868:116::-;7938:21;7953:5;7938:21;:::i;:::-;7931:5;7928:32;7918:60;;7974:1;7971;7964:12;7918:60;7868:116;:::o;7990:133::-;8033:5;8071:6;8058:20;8049:29;;8087:30;8111:5;8087:30;:::i;:::-;7990:133;;;;:::o;8129:323::-;8185:6;8234:2;8222:9;8213:7;8209:23;8205:32;8202:119;;;8240:79;;:::i;:::-;8202:119;8360:1;8385:50;8427:7;8418:6;8407:9;8403:22;8385:50;:::i;:::-;8375:60;;8331:114;8129:323;;;;:::o;8458:619::-;8535:6;8543;8551;8600:2;8588:9;8579:7;8575:23;8571:32;8568:119;;;8606:79;;:::i;:::-;8568:119;8726:1;8751:53;8796:7;8787:6;8776:9;8772:22;8751:53;:::i;:::-;8741:63;;8697:117;8853:2;8879:53;8924:7;8915:6;8904:9;8900:22;8879:53;:::i;:::-;8869:63;;8824:118;8981:2;9007:53;9052:7;9043:6;9032:9;9028:22;9007:53;:::i;:::-;8997:63;;8952:118;8458:619;;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:114::-;9485:6;9519:5;9513:12;9503:22;;9418:114;;;:::o;9538:184::-;9637:11;9671:6;9666:3;9659:19;9711:4;9706:3;9702:14;9687:29;;9538:184;;;;:::o;9728:132::-;9795:4;9818:3;9810:11;;9848:4;9843:3;9839:14;9831:22;;9728:132;;;:::o;9866:108::-;9943:24;9961:5;9943:24;:::i;:::-;9938:3;9931:37;9866:108;;:::o;9980:179::-;10049:10;10070:46;10112:3;10104:6;10070:46;:::i;:::-;10148:4;10143:3;10139:14;10125:28;;9980:179;;;;:::o;10165:113::-;10235:4;10267;10262:3;10258:14;10250:22;;10165:113;;;:::o;10314:732::-;10433:3;10462:54;10510:5;10462:54;:::i;:::-;10532:86;10611:6;10606:3;10532:86;:::i;:::-;10525:93;;10642:56;10692:5;10642:56;:::i;:::-;10721:7;10752:1;10737:284;10762:6;10759:1;10756:13;10737:284;;;10838:6;10832:13;10865:63;10924:3;10909:13;10865:63;:::i;:::-;10858:70;;10951:60;11004:6;10951:60;:::i;:::-;10941:70;;10797:224;10784:1;10781;10777:9;10772:14;;10737:284;;;10741:14;11037:3;11030:10;;10438:608;;;10314:732;;;;:::o;11052:373::-;11195:4;11233:2;11222:9;11218:18;11210:26;;11282:9;11276:4;11272:20;11268:1;11257:9;11253:17;11246:47;11310:108;11413:4;11404:6;11310:108;:::i;:::-;11302:116;;11052:373;;;;:::o;11431:468::-;11496:6;11504;11553:2;11541:9;11532:7;11528:23;11524:32;11521:119;;;11559:79;;:::i;:::-;11521:119;11679:1;11704:53;11749:7;11740:6;11729:9;11725:22;11704:53;:::i;:::-;11694:63;;11650:117;11806:2;11832:50;11874:7;11865:6;11854:9;11850:22;11832:50;:::i;:::-;11822:60;;11777:115;11431:468;;;;;:::o;11905:307::-;11966:4;12056:18;12048:6;12045:30;12042:56;;;12078:18;;:::i;:::-;12042:56;12116:29;12138:6;12116:29;:::i;:::-;12108:37;;12200:4;12194;12190:15;12182:23;;11905:307;;;:::o;12218:423::-;12295:5;12320:65;12336:48;12377:6;12336:48;:::i;:::-;12320:65;:::i;:::-;12311:74;;12408:6;12401:5;12394:21;12446:4;12439:5;12435:16;12484:3;12475:6;12470:3;12466:16;12463:25;12460:112;;;12491:79;;:::i;:::-;12460:112;12581:54;12628:6;12623:3;12618;12581:54;:::i;:::-;12301:340;12218:423;;;;;:::o;12660:338::-;12715:5;12764:3;12757:4;12749:6;12745:17;12741:27;12731:122;;12772:79;;:::i;:::-;12731:122;12889:6;12876:20;12914:78;12988:3;12980:6;12973:4;12965:6;12961:17;12914:78;:::i;:::-;12905:87;;12721:277;12660:338;;;;:::o;13004:943::-;13099:6;13107;13115;13123;13172:3;13160:9;13151:7;13147:23;13143:33;13140:120;;;13179:79;;:::i;:::-;13140:120;13299:1;13324:53;13369:7;13360:6;13349:9;13345:22;13324:53;:::i;:::-;13314:63;;13270:117;13426:2;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13397:118;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13710:2;13699:9;13695:18;13682:32;13741:18;13733:6;13730:30;13727:117;;;13763:79;;:::i;:::-;13727:117;13868:62;13922:7;13913:6;13902:9;13898:22;13868:62;:::i;:::-;13858:72;;13653:287;13004:943;;;;;;;:::o;13953:474::-;14021:6;14029;14078:2;14066:9;14057:7;14053:23;14049:32;14046:119;;;14084:79;;:::i;:::-;14046:119;14204:1;14229:53;14274:7;14265:6;14254:9;14250:22;14229:53;:::i;:::-;14219:63;;14175:117;14331:2;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14302:118;13953:474;;;;;:::o;14433:::-;14501:6;14509;14558:2;14546:9;14537:7;14533:23;14529:32;14526:119;;;14564:79;;:::i;:::-;14526:119;14684:1;14709:53;14754:7;14745:6;14734:9;14730:22;14709:53;:::i;:::-;14699:63;;14655:117;14811:2;14837:53;14882:7;14873:6;14862:9;14858:22;14837:53;:::i;:::-;14827:63;;14782:118;14433:474;;;;;:::o;14913:180::-;14961:77;14958:1;14951:88;15058:4;15055:1;15048:15;15082:4;15079:1;15072:15;15099:320;15143:6;15180:1;15174:4;15170:12;15160:22;;15227:1;15221:4;15217:12;15248:18;15238:81;;15304:4;15296:6;15292:17;15282:27;;15238:81;15366:2;15358:6;15355:14;15335:18;15332:38;15329:84;;15385:18;;:::i;:::-;15329:84;15150:269;15099:320;;;:::o;15425:141::-;15474:4;15497:3;15489:11;;15520:3;15517:1;15510:14;15554:4;15551:1;15541:18;15533:26;;15425:141;;;:::o;15572:93::-;15609:6;15656:2;15651;15644:5;15640:14;15636:23;15626:33;;15572:93;;;:::o;15671:107::-;15715:8;15765:5;15759:4;15755:16;15734:37;;15671:107;;;;:::o;15784:393::-;15853:6;15903:1;15891:10;15887:18;15926:97;15956:66;15945:9;15926:97;:::i;:::-;16044:39;16074:8;16063:9;16044:39;:::i;:::-;16032:51;;16116:4;16112:9;16105:5;16101:21;16092:30;;16165:4;16155:8;16151:19;16144:5;16141:30;16131:40;;15860:317;;15784:393;;;;;:::o;16183:60::-;16211:3;16232:5;16225:12;;16183:60;;;:::o;16249:142::-;16299:9;16332:53;16350:34;16359:24;16377:5;16359:24;:::i;:::-;16350:34;:::i;:::-;16332:53;:::i;:::-;16319:66;;16249:142;;;:::o;16397:75::-;16440:3;16461:5;16454:12;;16397:75;;;:::o;16478:269::-;16588:39;16619:7;16588:39;:::i;:::-;16649:91;16698:41;16722:16;16698:41;:::i;:::-;16690:6;16683:4;16677:11;16649:91;:::i;:::-;16643:4;16636:105;16554:193;16478:269;;;:::o;16753:73::-;16798:3;16753:73;:::o;16832:189::-;16909:32;;:::i;:::-;16950:65;17008:6;17000;16994:4;16950:65;:::i;:::-;16885:136;16832:189;;:::o;17027:186::-;17087:120;17104:3;17097:5;17094:14;17087:120;;;17158:39;17195:1;17188:5;17158:39;:::i;:::-;17131:1;17124:5;17120:13;17111:22;;17087:120;;;17027:186;;:::o;17219:543::-;17320:2;17315:3;17312:11;17309:446;;;17354:38;17386:5;17354:38;:::i;:::-;17438:29;17456:10;17438:29;:::i;:::-;17428:8;17424:44;17621:2;17609:10;17606:18;17603:49;;;17642:8;17627:23;;17603:49;17665:80;17721:22;17739:3;17721:22;:::i;:::-;17711:8;17707:37;17694:11;17665:80;:::i;:::-;17324:431;;17309:446;17219:543;;;:::o;17768:117::-;17822:8;17872:5;17866:4;17862:16;17841:37;;17768:117;;;;:::o;17891:169::-;17935:6;17968:51;18016:1;18012:6;18004:5;18001:1;17997:13;17968:51;:::i;:::-;17964:56;18049:4;18043;18039:15;18029:25;;17942:118;17891:169;;;;:::o;18065:295::-;18141:4;18287:29;18312:3;18306:4;18287:29;:::i;:::-;18279:37;;18349:3;18346:1;18342:11;18336:4;18333:21;18325:29;;18065:295;;;;:::o;18365:1395::-;18482:37;18515:3;18482:37;:::i;:::-;18584:18;18576:6;18573:30;18570:56;;;18606:18;;:::i;:::-;18570:56;18650:38;18682:4;18676:11;18650:38;:::i;:::-;18735:67;18795:6;18787;18781:4;18735:67;:::i;:::-;18829:1;18853:4;18840:17;;18885:2;18877:6;18874:14;18902:1;18897:618;;;;19559:1;19576:6;19573:77;;;19625:9;19620:3;19616:19;19610:26;19601:35;;19573:77;19676:67;19736:6;19729:5;19676:67;:::i;:::-;19670:4;19663:81;19532:222;18867:887;;18897:618;18949:4;18945:9;18937:6;18933:22;18983:37;19015:4;18983:37;:::i;:::-;19042:1;19056:208;19070:7;19067:1;19064:14;19056:208;;;19149:9;19144:3;19140:19;19134:26;19126:6;19119:42;19200:1;19192:6;19188:14;19178:24;;19247:2;19236:9;19232:18;19219:31;;19093:4;19090:1;19086:12;19081:17;;19056:208;;;19292:6;19283:7;19280:19;19277:179;;;19350:9;19345:3;19341:19;19335:26;19393:48;19435:4;19427:6;19423:17;19412:9;19393:48;:::i;:::-;19385:6;19378:64;19300:156;19277:179;19502:1;19498;19490:6;19486:14;19482:22;19476:4;19469:36;18904:611;;;18867:887;;18457:1303;;;18365:1395;;:::o;19766:170::-;19906:22;19902:1;19894:6;19890:14;19883:46;19766:170;:::o;19942:366::-;20084:3;20105:67;20169:2;20164:3;20105:67;:::i;:::-;20098:74;;20181:93;20270:3;20181:93;:::i;:::-;20299:2;20294:3;20290:12;20283:19;;19942:366;;;:::o;20314:419::-;20480:4;20518:2;20507:9;20503:18;20495:26;;20567:9;20561:4;20557:20;20553:1;20542:9;20538:17;20531:47;20595:131;20721:4;20595:131;:::i;:::-;20587:139;;20314:419;;;:::o;20739:180::-;20787:77;20784:1;20777:88;20884:4;20881:1;20874:15;20908:4;20905:1;20898:15;20925:191;20965:3;20984:20;21002:1;20984:20;:::i;:::-;20979:25;;21018:20;21036:1;21018:20;:::i;:::-;21013:25;;21061:1;21058;21054:9;21047:16;;21082:3;21079:1;21076:10;21073:36;;;21089:18;;:::i;:::-;21073:36;20925:191;;;;:::o;21122:170::-;21262:22;21258:1;21250:6;21246:14;21239:46;21122:170;:::o;21298:366::-;21440:3;21461:67;21525:2;21520:3;21461:67;:::i;:::-;21454:74;;21537:93;21626:3;21537:93;:::i;:::-;21655:2;21650:3;21646:12;21639:19;;21298:366;;;:::o;21670:419::-;21836:4;21874:2;21863:9;21859:18;21851:26;;21923:9;21917:4;21913:20;21909:1;21898:9;21894:17;21887:47;21951:131;22077:4;21951:131;:::i;:::-;21943:139;;21670:419;;;:::o;22095:173::-;22235:25;22231:1;22223:6;22219:14;22212:49;22095:173;:::o;22274:366::-;22416:3;22437:67;22501:2;22496:3;22437:67;:::i;:::-;22430:74;;22513:93;22602:3;22513:93;:::i;:::-;22631:2;22626:3;22622:12;22615:19;;22274:366;;;:::o;22646:419::-;22812:4;22850:2;22839:9;22835:18;22827:26;;22899:9;22893:4;22889:20;22885:1;22874:9;22870:17;22863:47;22927:131;23053:4;22927:131;:::i;:::-;22919:139;;22646:419;;;:::o;23071:169::-;23211:21;23207:1;23199:6;23195:14;23188:45;23071:169;:::o;23246:366::-;23388:3;23409:67;23473:2;23468:3;23409:67;:::i;:::-;23402:74;;23485:93;23574:3;23485:93;:::i;:::-;23603:2;23598:3;23594:12;23587:19;;23246:366;;;:::o;23618:419::-;23784:4;23822:2;23811:9;23807:18;23799:26;;23871:9;23865:4;23861:20;23857:1;23846:9;23842:17;23835:47;23899:131;24025:4;23899:131;:::i;:::-;23891:139;;23618:419;;;:::o;24043:410::-;24083:7;24106:20;24124:1;24106:20;:::i;:::-;24101:25;;24140:20;24158:1;24140:20;:::i;:::-;24135:25;;24195:1;24192;24188:9;24217:30;24235:11;24217:30;:::i;:::-;24206:41;;24396:1;24387:7;24383:15;24380:1;24377:22;24357:1;24350:9;24330:83;24307:139;;24426:18;;:::i;:::-;24307:139;24091:362;24043:410;;;;:::o;24459:169::-;24599:21;24595:1;24587:6;24583:14;24576:45;24459:169;:::o;24634:366::-;24776:3;24797:67;24861:2;24856:3;24797:67;:::i;:::-;24790:74;;24873:93;24962:3;24873:93;:::i;:::-;24991:2;24986:3;24982:12;24975:19;;24634:366;;;:::o;25006:419::-;25172:4;25210:2;25199:9;25195:18;25187:26;;25259:9;25253:4;25249:20;25245:1;25234:9;25230:17;25223:47;25287:131;25413:4;25287:131;:::i;:::-;25279:139;;25006:419;;;:::o;25431:180::-;25479:77;25476:1;25469:88;25576:4;25573:1;25566:15;25600:4;25597:1;25590:15;25617:233;25656:3;25679:24;25697:5;25679:24;:::i;:::-;25670:33;;25725:66;25718:5;25715:77;25712:103;;25795:18;;:::i;:::-;25712:103;25842:1;25835:5;25831:13;25824:20;;25617:233;;;:::o;25856:234::-;25996:34;25992:1;25984:6;25980:14;25973:58;26065:17;26060:2;26052:6;26048:15;26041:42;25856:234;:::o;26096:366::-;26238:3;26259:67;26323:2;26318:3;26259:67;:::i;:::-;26252:74;;26335:93;26424:3;26335:93;:::i;:::-;26453:2;26448:3;26444:12;26437:19;;26096:366;;;:::o;26468:419::-;26634:4;26672:2;26661:9;26657:18;26649:26;;26721:9;26715:4;26711:20;26707:1;26696:9;26692:17;26685:47;26749:131;26875:4;26749:131;:::i;:::-;26741:139;;26468:419;;;:::o;26893:148::-;26995:11;27032:3;27017:18;;26893:148;;;;:::o;27047:390::-;27153:3;27181:39;27214:5;27181:39;:::i;:::-;27236:89;27318:6;27313:3;27236:89;:::i;:::-;27229:96;;27334:65;27392:6;27387:3;27380:4;27373:5;27369:16;27334:65;:::i;:::-;27424:6;27419:3;27415:16;27408:23;;27157:280;27047:390;;;;:::o;27467:874::-;27570:3;27607:5;27601:12;27636:36;27662:9;27636:36;:::i;:::-;27688:89;27770:6;27765:3;27688:89;:::i;:::-;27681:96;;27808:1;27797:9;27793:17;27824:1;27819:166;;;;27999:1;27994:341;;;;27786:549;;27819:166;27903:4;27899:9;27888;27884:25;27879:3;27872:38;27965:6;27958:14;27951:22;27943:6;27939:35;27934:3;27930:45;27923:52;;27819:166;;27994:341;28061:38;28093:5;28061:38;:::i;:::-;28121:1;28135:154;28149:6;28146:1;28143:13;28135:154;;;28223:7;28217:14;28213:1;28208:3;28204:11;28197:35;28273:1;28264:7;28260:15;28249:26;;28171:4;28168:1;28164:12;28159:17;;28135:154;;;28318:6;28313:3;28309:16;28302:23;;28001:334;;27786:549;;27574:767;;27467:874;;;;:::o;28347:589::-;28572:3;28594:95;28685:3;28676:6;28594:95;:::i;:::-;28587:102;;28706:95;28797:3;28788:6;28706:95;:::i;:::-;28699:102;;28818:92;28906:3;28897:6;28818:92;:::i;:::-;28811:99;;28927:3;28920:10;;28347:589;;;;;;:::o;28942:147::-;29043:11;29080:3;29065:18;;28942:147;;;;:::o;29095:114::-;;:::o;29215:398::-;29374:3;29395:83;29476:1;29471:3;29395:83;:::i;:::-;29388:90;;29487:93;29576:3;29487:93;:::i;:::-;29605:1;29600:3;29596:11;29589:18;;29215:398;;;:::o;29619:379::-;29803:3;29825:147;29968:3;29825:147;:::i;:::-;29818:154;;29989:3;29982:10;;29619:379;;;:::o;30004:225::-;30144:34;30140:1;30132:6;30128:14;30121:58;30213:8;30208:2;30200:6;30196:15;30189:33;30004:225;:::o;30235:366::-;30377:3;30398:67;30462:2;30457:3;30398:67;:::i;:::-;30391:74;;30474:93;30563:3;30474:93;:::i;:::-;30592:2;30587:3;30583:12;30576:19;;30235:366;;;:::o;30607:419::-;30773:4;30811:2;30800:9;30796:18;30788:26;;30860:9;30854:4;30850:20;30846:1;30835:9;30831:17;30824:47;30888:131;31014:4;30888:131;:::i;:::-;30880:139;;30607:419;;;:::o;31032:182::-;31172:34;31168:1;31160:6;31156:14;31149:58;31032:182;:::o;31220:366::-;31362:3;31383:67;31447:2;31442:3;31383:67;:::i;:::-;31376:74;;31459:93;31548:3;31459:93;:::i;:::-;31577:2;31572:3;31568:12;31561:19;;31220:366;;;:::o;31592:419::-;31758:4;31796:2;31785:9;31781:18;31773:26;;31845:9;31839:4;31835:20;31831:1;31820:9;31816:17;31809:47;31873:131;31999:4;31873:131;:::i;:::-;31865:139;;31592:419;;;:::o;32017:98::-;32068:6;32102:5;32096:12;32086:22;;32017:98;;;:::o;32121:168::-;32204:11;32238:6;32233:3;32226:19;32278:4;32273:3;32269:14;32254:29;;32121:168;;;;:::o;32295:373::-;32381:3;32409:38;32441:5;32409:38;:::i;:::-;32463:70;32526:6;32521:3;32463:70;:::i;:::-;32456:77;;32542:65;32600:6;32595:3;32588:4;32581:5;32577:16;32542:65;:::i;:::-;32632:29;32654:6;32632:29;:::i;:::-;32627:3;32623:39;32616:46;;32385:283;32295:373;;;;:::o;32674:640::-;32869:4;32907:3;32896:9;32892:19;32884:27;;32921:71;32989:1;32978:9;32974:17;32965:6;32921:71;:::i;:::-;33002:72;33070:2;33059:9;33055:18;33046:6;33002:72;:::i;:::-;33084;33152:2;33141:9;33137:18;33128:6;33084:72;:::i;:::-;33203:9;33197:4;33193:20;33188:2;33177:9;33173:18;33166:48;33231:76;33302:4;33293:6;33231:76;:::i;:::-;33223:84;;32674:640;;;;;;;:::o;33320:141::-;33376:5;33407:6;33401:13;33392:22;;33423:32;33449:5;33423:32;:::i;:::-;33320:141;;;;:::o;33467:349::-;33536:6;33585:2;33573:9;33564:7;33560:23;33556:32;33553:119;;;33591:79;;:::i;:::-;33553:119;33711:1;33736:63;33791:7;33782:6;33771:9;33767:22;33736:63;:::i;:::-;33726:73;;33682:127;33467:349;;;;:::o;33822:180::-;33870:77;33867:1;33860:88;33967:4;33964:1;33957:15;33991:4;33988:1;33981:15
Swarm Source
ipfs://fda5190f3b8a68eab3065dfb5d863f5fdae240b0b931b2b5b256289240b32acf
Loading...
Loading
Loading...
Loading
[ 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.