ERC-721
Overview
Max Total Supply
93 MEOW
Holders
52
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MEOWLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Mooncatz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-25 */ // SPDX-License-Identifier: MIT /* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@((/(((@@@@@@@@@@@@@@@@@@@@@@@@@@@@(((((/(/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@/ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@/ @@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@. @@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@ .@. @@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@. @@@@@@ @@@@@@@@@@@@@@@@@@@@@@@ @@@. @@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@. @@@@@@@@ @@@@@@@@@@@@@@@@@@@ @@@@@. @@@@@@@@@@ @@@@@@@ @@@@@@ @@@@ ,@. @@@@@@ @@@@@@@@@@@@@@@@@@@ @@@@@. @@@@@@@@@@ @@@@@@@ @@@@@@ @@@@ @@@@@. @@@@ @@@@@@@@@@@@@@@@@@@@@@@@@ @@@. @@@@@@@@@@@@@@@@@@@ @@@@@@ @@@@@@ @@@. @@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ,@. @@@@@@@@@@@@@@@@@@@ @@@@@@@@@@ @@@@ ,@. @@@@@@@@@@@@ @/ @@@@@@@@@@ @@ @@@. @@@@@@@@@@@@@@@@@@@ @@@@@@@@@@ @@@@ ,@. @@@@@@@@@@@@@@@@ @@@@@@@@@@ @@@@@. @@@@@@@@@@@@@@@@@@@ @@@@@@@@@@ @@@@ ,@. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@. @@@@@@@@@@@@@@@@@@@ @@@@@@@@@@ @@@@ ,@. @@@@@@@@@@@@ (@@@@@@@@@@@@@ ,@. @@@@@@@@@@@@@@@@@@@ @@@@ @@@@ @@@@ ,@. @@@@@@@@@@ @@@@@/ @@@@@@@@@@ @@@@@% @@@@@@@@@@@@@@@@@ @@ @@ @@ @@@@ ,@. @@@@@@@@ @@@@ @@@ @@@@@@ @@@@ @@@. @@@@@@@@@@@@@@@@@ @@@@/(@@((((@@((((@. @@@@@@@@ @@@@/(@@@ @@@@@@ @@@@(/@@@. @@@@@@@@@@@@@@@@@ @@@@@@@@ @@@@ @@@. @@@@@@@@@@ @@@@@/ @@@@@@@@@@ @@@@@% &@ @@@@@@@@@@@@@@@@@ @@@@@@ @@@@ @@@@@. @@@@@@@@@@@@ (@@@ @@@@ ,@@@ @@@@@@@@@@@@@@@@@ @@@@ @@@@@@ @@@% @@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@ @@@@ @@@@ @@ @@@@@@@ @@@@@@@@@@@@@@@ @@@@@@ @@@@@@@@@. @@@@@@@@@@@@@@@@@@@ @@ @@@@ @@ @@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@% &@@@@@@@@@@@@@@@@@@@@ @@ @@@@ @@ @@@% &@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@@@@@@@ @@ @@@@ @@@@@@@@@ @@@@@@ @@@@@@ @@@% &@@@@@@@@@@@@@@@@@@@@ @@ @@@@ @@@@@@@@@. @@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@ @@@. @@@@@@@@@@@@@@@@@@@ @@ @@@@ @@@@@@@% &@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@ @@@. @@@@@@@@@@@@@@@@@@@ @@@@ @@@@@@@@ ,@. @@@@@@@@@@@@@@ @@@@@@@ @@ @@@@ @@@@@ @@@@@@@@@@@@@@@@@ @@@@ @@@@@@@@ ,@@@ @@@@@@@@@@@@ @@@@@@@@@ @@@@@@ @@@@@ @@@@@@@@@@@@@@@@@ @@@@@@ @@ @@@@ ,@. @@@@@@@@@@@@@@ @@@ @@@@@@@@@@@@ @@@@@ @@@@@@@@@@@@@@@@@ */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // 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/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); } // File: ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex = 1; // 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 ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @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. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: ReentrancyGuard.sol pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: Mooncatz.sol pragma solidity ^0.8.0; /// @title ERC721 for Mooncatz /// @author lightlabs.io contract Mooncatz is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public baseURI; uint256 public price = 0.0069 ether; uint256 public maxSupply = 5555; uint256 public maxVIP = 1111; uint256 public limitVIP = 1; uint256 public limitWL = 2; constructor() ERC721A("Mooncatz", "MEOW") { setBaseURI("https://Mooncatz.s3.amazonaws.com/metadata/"); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mintVIP(uint256 _mintAmount) public payable nonReentrant{ uint256 s = totalSupply(); require(_mintAmount <= limitVIP, "MEOW YOU MINTED ENOUGH" ); require(_mintAmount > 0, "MINT MORE THAN 0 MEOW" ); require(s + _mintAmount <= maxVIP, "VIP SOLD OUT MEOW" ); _safeMint(msg.sender, _mintAmount); delete s; } function mintWL(uint256 _mintAmount) public payable nonReentrant { uint256 s = totalSupply(); require(_mintAmount > 0, "MINT MORE THAN 0 MEOW"); require(_mintAmount <= limitWL, "YOU MINTED ENOUGH MEOW" ); require(s + _mintAmount <= maxSupply, "WL SOLD OUT MEOW"); require(msg.value >= price * _mintAmount); _safeMint(msg.sender, _mintAmount); delete s; } function mintDev(uint256[] calldata quantity, address[] calldata recipient) external onlyOwner { require( quantity.length == recipient.length, "PROVIDE QUANTITIES AND RECIPIENTS MEOW" ); uint256 totalQuantity = 0; uint256 s = totalSupply(); for (uint256 i = 0; i < quantity.length; ++i) { totalQuantity += quantity[i]; } require(s + totalQuantity <= maxSupply, "SOLD OUT"); delete totalQuantity; for (uint256 i = 0; i < recipient.length; ++i) { _safeMint(recipient[i], quantity[i]); } delete s; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: Nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")): ""; } function setPrice(uint256 _newPrice) public onlyOwner { price = _newPrice; } function setmaxSupply(uint256 _newMaxSupply) public onlyOwner { maxSupply = _newMaxSupply; } function setmaxVIPSupply(uint256 _newmaxVIPSupply) public onlyOwner { maxVIP = _newmaxVIPSupply; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setlimitWL(uint256 _amount) public onlyOwner { limitWL = _amount; } function setlimitVIP(uint256 _amount) public onlyOwner { limitVIP = _amount; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } function withdrawAny(uint256 _amount) public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: _amount}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitVIP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxVIP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"mintDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintVIP","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWL","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setlimitVIP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setlimitWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxVIPSupply","type":"uint256"}],"name":"setmaxVIPSupply","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAny","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405260016000556618838370f34000600a556115b3600b55610457600c556001600d556002600e553480156200003757600080fd5b50604080518082018252600881526726b7b7b731b0ba3d60c11b6020808301918252835180850190945260048452634d454f5760e01b9084015281519192916200008491600191620001b7565b5080516200009a906002906020840190620001b7565b505050620000b7620000b1620000e960201b60201c565b620000ed565b6001600881905550620000e36040518060600160405280602b8152602001620026e6602b91396200013f565b6200029a565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b031633146200019e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001b3906009906020840190620001b7565b5050565b828054620001c5906200025d565b90600052602060002090601f016020900481019282620001e9576000855562000234565b82601f106200020457805160ff191683800117855562000234565b8280016001018555821562000234579182015b828111156200023457825182559160200191906001019062000217565b506200024292915062000246565b5090565b5b8082111562000242576000815560010162000247565b600181811c908216806200027257607f821691505b602082108114156200029457634e487b7160e01b600052602260045260246000fd5b50919050565b61243c80620002aa6000396000f3fe60806040526004361061020e5760003560e01c80636352211e1161011857806395d89b41116100a0578063ba419de01161006f578063ba419de0146105a6578063c87b56dd146105b9578063d5abeb01146105d9578063e985e9c5146105ef578063f2fde38b1461063857600080fd5b806395d89b411461053b578063a035b1fe14610550578063a22cb46514610566578063b88d4fde1461058657600080fd5b806377ad99f0116100e757806377ad99f0146104b457806382327189146104c75780638354a17c146104dd5780638da5cb5b146104fd57806391b7f5ed1461051b57600080fd5b80636352211e1461044a5780636c0360eb1461046a57806370a082311461047f578063715018a61461049f57600080fd5b80632f745c591161019b578063416ccd021161016a578063416ccd02146103b457806342842e0e146103ca57806343c13462146103ea5780634f6ccce71461040a57806355f804b31461042a57600080fd5b80632f745c59146103565780633a1cdf7f146103765780633bcda278146103965780633ccfd60b146103ac57600080fd5b8063095ea7b3116101e2578063095ea7b3146102c457806318160ddd146102e4578063228025e814610303578063231931bd1461032357806323b872dd1461033657600080fd5b806207dab21461021357806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c575b600080fd5b34801561021f57600080fd5b5061023361022e366004612055565b610658565b005b34801561024157600080fd5b506102556102503660046120c1565b6107ef565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61085c565b6040516102619190612205565b34801561029857600080fd5b506102ac6102a7366004612144565b6108ee565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102336102df36600461202b565b610979565b3480156102f057600080fd5b506000545b604051908152602001610261565b34801561030f57600080fd5b5061023361031e366004612144565b610a91565b610233610331366004612144565b610ac0565b34801561034257600080fd5b50610233610351366004611f37565b610c10565b34801561036257600080fd5b506102f561037136600461202b565b610c1b565b34801561038257600080fd5b50610233610391366004612144565b610d78565b3480156103a257600080fd5b506102f5600c5481565b610233610da7565b3480156103c057600080fd5b506102f5600d5481565b3480156103d657600080fd5b506102336103e5366004611f37565b610e29565b3480156103f657600080fd5b50610233610405366004612144565b610e44565b34801561041657600080fd5b506102f5610425366004612144565b610e73565b34801561043657600080fd5b506102336104453660046120fb565b610ed5565b34801561045657600080fd5b506102ac610465366004612144565b610f16565b34801561047657600080fd5b5061027f610f28565b34801561048b57600080fd5b506102f561049a366004611ee9565b610fb6565b3480156104ab57600080fd5b50610233611047565b6102336104c2366004612144565b61107d565b3480156104d357600080fd5b506102f5600e5481565b3480156104e957600080fd5b506102336104f8366004612144565b6110fc565b34801561050957600080fd5b506007546001600160a01b03166102ac565b34801561052757600080fd5b50610233610536366004612144565b61112b565b34801561054757600080fd5b5061027f61115a565b34801561055c57600080fd5b506102f5600a5481565b34801561057257600080fd5b50610233610581366004611fef565b611169565b34801561059257600080fd5b506102336105a1366004611f73565b61122e565b6102336105b4366004612144565b611267565b3480156105c557600080fd5b5061027f6105d4366004612144565b6113ba565b3480156105e557600080fd5b506102f5600b5481565b3480156105fb57600080fd5b5061025561060a366004611f04565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561064457600080fd5b50610233610653366004611ee9565b611479565b6007546001600160a01b0316331461068b5760405162461bcd60e51b815260040161068290612218565b60405180910390fd5b8281146106e95760405162461bcd60e51b815260206004820152602660248201527f50524f56494445205155414e54495449455320414e4420524543495049454e5460448201526553204d454f5760d01b6064820152608401610682565b6000806106f560005490565b905060005b8581101561073857868682818110610714576107146123c4565b905060200201358361072691906122a0565b925061073181612369565b90506106fa565b50600b5461074683836122a0565b111561077f5760405162461bcd60e51b815260206004820152600860248201526714d3d3110813d55560c21b6044820152606401610682565b6000915060005b838110156107e6576107d68585838181106107a3576107a36123c4565b90506020020160208101906107b89190611ee9565b8888848181106107ca576107ca6123c4565b90506020020135611511565b6107df81612369565b9050610786565b50505050505050565b60006001600160e01b031982166380ac58cd60e01b148061082057506001600160e01b03198216635b5e139f60e01b145b8061083b57506001600160e01b0319821663780e9d6360e01b145b8061085657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461086b9061232e565b80601f01602080910402602001604051908101604052809291908181526020018280546108979061232e565b80156108e45780601f106108b9576101008083540402835291602001916108e4565b820191906000526020600020905b8154815290600101906020018083116108c757829003601f168201915b5050505050905090565b60006108fb826000541190565b61095d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610682565b506000908152600560205260409020546001600160a01b031690565b600061098482610f16565b9050806001600160a01b0316836001600160a01b031614156109f35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610682565b336001600160a01b0382161480610a0f5750610a0f813361060a565b610a815760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610682565b610a8c83838361152b565b505050565b6007546001600160a01b03163314610abb5760405162461bcd60e51b815260040161068290612218565b600b55565b60026008541415610b135760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610682565b6002600855600054600d54821115610b665760405162461bcd60e51b815260206004820152601660248201527509a8a9eae40b29eaa409a929ca88a88408a9c9eaa8e960531b6044820152606401610682565b60008211610bae5760405162461bcd60e51b81526020600482015260156024820152744d494e54204d4f5245205448414e2030204d454f5760581b6044820152606401610682565b600c54610bbb83836122a0565b1115610bfd5760405162461bcd60e51b815260206004820152601160248201527056495020534f4c44204f5554204d454f5760781b6044820152606401610682565b610c073383611511565b50506001600855565b610a8c838383611587565b6000610c2683610fb6565b8210610c7f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610682565b600080549080805b83811015610d18576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610cda57805192505b876001600160a01b0316836001600160a01b03161415610d0f5786841415610d085750935061085692505050565b6001909301925b50600101610c87565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610682565b6007546001600160a01b03163314610da25760405162461bcd60e51b815260040161068290612218565b600e55565b6007546001600160a01b03163314610dd15760405162461bcd60e51b815260040161068290612218565b604051600090339047908381818185875af1925050503d8060008114610e13576040519150601f19603f3d011682016040523d82523d6000602084013e610e18565b606091505b5050905080610e2657600080fd5b50565b610a8c8383836040518060200160405280600081525061122e565b6007546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161068290612218565b600c55565b600080548210610ed15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610682565b5090565b6007546001600160a01b03163314610eff5760405162461bcd60e51b815260040161068290612218565b8051610f12906009906020840190611d7b565b5050565b6000610f218261186c565b5192915050565b60098054610f359061232e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f619061232e565b8015610fae5780601f10610f8357610100808354040283529160200191610fae565b820191906000526020600020905b815481529060010190602001808311610f9157829003601f168201915b505050505081565b60006001600160a01b0382166110225760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610682565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146110715760405162461bcd60e51b815260040161068290612218565b61107b6000611943565b565b6007546001600160a01b031633146110a75760405162461bcd60e51b815260040161068290612218565b604051600090339083908381818185875af1925050503d80600081146110e9576040519150601f19603f3d011682016040523d82523d6000602084013e6110ee565b606091505b5050905080610f1257600080fd5b6007546001600160a01b031633146111265760405162461bcd60e51b815260040161068290612218565b600d55565b6007546001600160a01b031633146111555760405162461bcd60e51b815260040161068290612218565b600a55565b60606002805461086b9061232e565b6001600160a01b0382163314156111c25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610682565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611239848484611587565b61124584848484611995565b6112615760405162461bcd60e51b81526004016106829061224d565b50505050565b600260085414156112ba5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610682565b6002600855600054816113075760405162461bcd60e51b81526020600482015260156024820152744d494e54204d4f5245205448414e2030204d454f5760581b6044820152606401610682565b600e548211156113525760405162461bcd60e51b8152602060048201526016602482015275594f55204d494e54454420454e4f554748204d454f5760501b6044820152606401610682565b600b5461135f83836122a0565b11156113a05760405162461bcd60e51b815260206004820152601060248201526f574c20534f4c44204f5554204d454f5760801b6044820152606401610682565b81600a546113ae91906122cc565b341015610bfd57600080fd5b60606113c7826000541190565b61141d5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610682565b6000611427611aa3565b905060008151116114475760405180602001604052806000815250611472565b8061145184611ab2565b604051602001611462929190612189565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146114a35760405162461bcd60e51b815260040161068290612218565b6001600160a01b0381166115085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610682565b610e2681611943565b610f12828260405180602001604052806000815250611bb0565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115928261186c565b80519091506000906001600160a01b0316336001600160a01b031614806115c95750336115be846108ee565b6001600160a01b0316145b806115db575081516115db903361060a565b9050806116455760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610682565b846001600160a01b031682600001516001600160a01b0316146116b95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610682565b6001600160a01b03841661171d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610682565b61172d600084846000015161152b565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611822576117d5816000541190565b15611822578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261188b826000541190565b6118ea5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610682565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611939579392505050565b50600019016118ec565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611a9757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119d99033908990889088906004016121c8565b602060405180830381600087803b1580156119f357600080fd5b505af1925050508015611a23575060408051601f3d908101601f19168201909252611a20918101906120de565b60015b611a7d573d808015611a51576040519150601f19603f3d011682016040523d82523d6000602084013e611a56565b606091505b508051611a755760405162461bcd60e51b81526004016106829061224d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a9b565b5060015b949350505050565b60606009805461086b9061232e565b606081611ad65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b005780611aea81612369565b9150611af99050600a836122b8565b9150611ada565b60008167ffffffffffffffff811115611b1b57611b1b6123da565b6040519080825280601f01601f191660200182016040528015611b45576020820181803683370190505b5090505b8415611a9b57611b5a6001836122eb565b9150611b67600a86612384565b611b729060306122a0565b60f81b818381518110611b8757611b876123c4565b60200101906001600160f81b031916908160001a905350611ba9600a866122b8565b9450611b49565b610a8c83838360016000546001600160a01b038516611c1b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610682565b83611c795760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610682565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d725760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611d6657611d4a6000888488611995565b611d665760405162461bcd60e51b81526004016106829061224d565b60019182019101611cf7565b50600055611865565b828054611d879061232e565b90600052602060002090601f016020900481019282611da95760008555611def565b82601f10611dc257805160ff1916838001178555611def565b82800160010185558215611def579182015b82811115611def578251825591602001919060010190611dd4565b50610ed19291505b80821115610ed15760008155600101611df7565b600067ffffffffffffffff80841115611e2657611e266123da565b604051601f8501601f19908116603f01168101908282118183101715611e4e57611e4e6123da565b81604052809350858152868686011115611e6757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e9857600080fd5b919050565b60008083601f840112611eaf57600080fd5b50813567ffffffffffffffff811115611ec757600080fd5b6020830191508360208260051b8501011115611ee257600080fd5b9250929050565b600060208284031215611efb57600080fd5b61147282611e81565b60008060408385031215611f1757600080fd5b611f2083611e81565b9150611f2e60208401611e81565b90509250929050565b600080600060608486031215611f4c57600080fd5b611f5584611e81565b9250611f6360208501611e81565b9150604084013590509250925092565b60008060008060808587031215611f8957600080fd5b611f9285611e81565b9350611fa060208601611e81565b925060408501359150606085013567ffffffffffffffff811115611fc357600080fd5b8501601f81018713611fd457600080fd5b611fe387823560208401611e0b565b91505092959194509250565b6000806040838503121561200257600080fd5b61200b83611e81565b91506020830135801515811461202057600080fd5b809150509250929050565b6000806040838503121561203e57600080fd5b61204783611e81565b946020939093013593505050565b6000806000806040858703121561206b57600080fd5b843567ffffffffffffffff8082111561208357600080fd5b61208f88838901611e9d565b909650945060208701359150808211156120a857600080fd5b506120b587828801611e9d565b95989497509550505050565b6000602082840312156120d357600080fd5b8135611472816123f0565b6000602082840312156120f057600080fd5b8151611472816123f0565b60006020828403121561210d57600080fd5b813567ffffffffffffffff81111561212457600080fd5b8201601f8101841361213557600080fd5b611a9b84823560208401611e0b565b60006020828403121561215657600080fd5b5035919050565b60008151808452612175816020860160208601612302565b601f01601f19169290920160200192915050565b6000835161219b818460208801612302565b8351908301906121af818360208801612302565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121fb9083018461215d565b9695505050505050565b602081526000611472602083018461215d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156122b3576122b3612398565b500190565b6000826122c7576122c76123ae565b500490565b60008160001904831182151516156122e6576122e6612398565b500290565b6000828210156122fd576122fd612398565b500390565b60005b8381101561231d578181015183820152602001612305565b838111156112615750506000910152565b600181811c9082168061234257607f821691505b6020821081141561236357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561237d5761237d612398565b5060010190565b600082612393576123936123ae565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e2657600080fdfea264697066735822122025d544393c5243beec638fcc40ca6978bfe74f7c4562b840dd0d8a541698966164736f6c6343000807003368747470733a2f2f4d6f6f6e6361747a2e73332e616d617a6f6e6177732e636f6d2f6d657461646174612f
Deployed Bytecode
0x60806040526004361061020e5760003560e01c80636352211e1161011857806395d89b41116100a0578063ba419de01161006f578063ba419de0146105a6578063c87b56dd146105b9578063d5abeb01146105d9578063e985e9c5146105ef578063f2fde38b1461063857600080fd5b806395d89b411461053b578063a035b1fe14610550578063a22cb46514610566578063b88d4fde1461058657600080fd5b806377ad99f0116100e757806377ad99f0146104b457806382327189146104c75780638354a17c146104dd5780638da5cb5b146104fd57806391b7f5ed1461051b57600080fd5b80636352211e1461044a5780636c0360eb1461046a57806370a082311461047f578063715018a61461049f57600080fd5b80632f745c591161019b578063416ccd021161016a578063416ccd02146103b457806342842e0e146103ca57806343c13462146103ea5780634f6ccce71461040a57806355f804b31461042a57600080fd5b80632f745c59146103565780633a1cdf7f146103765780633bcda278146103965780633ccfd60b146103ac57600080fd5b8063095ea7b3116101e2578063095ea7b3146102c457806318160ddd146102e4578063228025e814610303578063231931bd1461032357806323b872dd1461033657600080fd5b806207dab21461021357806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c575b600080fd5b34801561021f57600080fd5b5061023361022e366004612055565b610658565b005b34801561024157600080fd5b506102556102503660046120c1565b6107ef565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61085c565b6040516102619190612205565b34801561029857600080fd5b506102ac6102a7366004612144565b6108ee565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102336102df36600461202b565b610979565b3480156102f057600080fd5b506000545b604051908152602001610261565b34801561030f57600080fd5b5061023361031e366004612144565b610a91565b610233610331366004612144565b610ac0565b34801561034257600080fd5b50610233610351366004611f37565b610c10565b34801561036257600080fd5b506102f561037136600461202b565b610c1b565b34801561038257600080fd5b50610233610391366004612144565b610d78565b3480156103a257600080fd5b506102f5600c5481565b610233610da7565b3480156103c057600080fd5b506102f5600d5481565b3480156103d657600080fd5b506102336103e5366004611f37565b610e29565b3480156103f657600080fd5b50610233610405366004612144565b610e44565b34801561041657600080fd5b506102f5610425366004612144565b610e73565b34801561043657600080fd5b506102336104453660046120fb565b610ed5565b34801561045657600080fd5b506102ac610465366004612144565b610f16565b34801561047657600080fd5b5061027f610f28565b34801561048b57600080fd5b506102f561049a366004611ee9565b610fb6565b3480156104ab57600080fd5b50610233611047565b6102336104c2366004612144565b61107d565b3480156104d357600080fd5b506102f5600e5481565b3480156104e957600080fd5b506102336104f8366004612144565b6110fc565b34801561050957600080fd5b506007546001600160a01b03166102ac565b34801561052757600080fd5b50610233610536366004612144565b61112b565b34801561054757600080fd5b5061027f61115a565b34801561055c57600080fd5b506102f5600a5481565b34801561057257600080fd5b50610233610581366004611fef565b611169565b34801561059257600080fd5b506102336105a1366004611f73565b61122e565b6102336105b4366004612144565b611267565b3480156105c557600080fd5b5061027f6105d4366004612144565b6113ba565b3480156105e557600080fd5b506102f5600b5481565b3480156105fb57600080fd5b5061025561060a366004611f04565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561064457600080fd5b50610233610653366004611ee9565b611479565b6007546001600160a01b0316331461068b5760405162461bcd60e51b815260040161068290612218565b60405180910390fd5b8281146106e95760405162461bcd60e51b815260206004820152602660248201527f50524f56494445205155414e54495449455320414e4420524543495049454e5460448201526553204d454f5760d01b6064820152608401610682565b6000806106f560005490565b905060005b8581101561073857868682818110610714576107146123c4565b905060200201358361072691906122a0565b925061073181612369565b90506106fa565b50600b5461074683836122a0565b111561077f5760405162461bcd60e51b815260206004820152600860248201526714d3d3110813d55560c21b6044820152606401610682565b6000915060005b838110156107e6576107d68585838181106107a3576107a36123c4565b90506020020160208101906107b89190611ee9565b8888848181106107ca576107ca6123c4565b90506020020135611511565b6107df81612369565b9050610786565b50505050505050565b60006001600160e01b031982166380ac58cd60e01b148061082057506001600160e01b03198216635b5e139f60e01b145b8061083b57506001600160e01b0319821663780e9d6360e01b145b8061085657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461086b9061232e565b80601f01602080910402602001604051908101604052809291908181526020018280546108979061232e565b80156108e45780601f106108b9576101008083540402835291602001916108e4565b820191906000526020600020905b8154815290600101906020018083116108c757829003601f168201915b5050505050905090565b60006108fb826000541190565b61095d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610682565b506000908152600560205260409020546001600160a01b031690565b600061098482610f16565b9050806001600160a01b0316836001600160a01b031614156109f35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610682565b336001600160a01b0382161480610a0f5750610a0f813361060a565b610a815760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610682565b610a8c83838361152b565b505050565b6007546001600160a01b03163314610abb5760405162461bcd60e51b815260040161068290612218565b600b55565b60026008541415610b135760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610682565b6002600855600054600d54821115610b665760405162461bcd60e51b815260206004820152601660248201527509a8a9eae40b29eaa409a929ca88a88408a9c9eaa8e960531b6044820152606401610682565b60008211610bae5760405162461bcd60e51b81526020600482015260156024820152744d494e54204d4f5245205448414e2030204d454f5760581b6044820152606401610682565b600c54610bbb83836122a0565b1115610bfd5760405162461bcd60e51b815260206004820152601160248201527056495020534f4c44204f5554204d454f5760781b6044820152606401610682565b610c073383611511565b50506001600855565b610a8c838383611587565b6000610c2683610fb6565b8210610c7f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610682565b600080549080805b83811015610d18576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610cda57805192505b876001600160a01b0316836001600160a01b03161415610d0f5786841415610d085750935061085692505050565b6001909301925b50600101610c87565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610682565b6007546001600160a01b03163314610da25760405162461bcd60e51b815260040161068290612218565b600e55565b6007546001600160a01b03163314610dd15760405162461bcd60e51b815260040161068290612218565b604051600090339047908381818185875af1925050503d8060008114610e13576040519150601f19603f3d011682016040523d82523d6000602084013e610e18565b606091505b5050905080610e2657600080fd5b50565b610a8c8383836040518060200160405280600081525061122e565b6007546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161068290612218565b600c55565b600080548210610ed15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610682565b5090565b6007546001600160a01b03163314610eff5760405162461bcd60e51b815260040161068290612218565b8051610f12906009906020840190611d7b565b5050565b6000610f218261186c565b5192915050565b60098054610f359061232e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f619061232e565b8015610fae5780601f10610f8357610100808354040283529160200191610fae565b820191906000526020600020905b815481529060010190602001808311610f9157829003601f168201915b505050505081565b60006001600160a01b0382166110225760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610682565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146110715760405162461bcd60e51b815260040161068290612218565b61107b6000611943565b565b6007546001600160a01b031633146110a75760405162461bcd60e51b815260040161068290612218565b604051600090339083908381818185875af1925050503d80600081146110e9576040519150601f19603f3d011682016040523d82523d6000602084013e6110ee565b606091505b5050905080610f1257600080fd5b6007546001600160a01b031633146111265760405162461bcd60e51b815260040161068290612218565b600d55565b6007546001600160a01b031633146111555760405162461bcd60e51b815260040161068290612218565b600a55565b60606002805461086b9061232e565b6001600160a01b0382163314156111c25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610682565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611239848484611587565b61124584848484611995565b6112615760405162461bcd60e51b81526004016106829061224d565b50505050565b600260085414156112ba5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610682565b6002600855600054816113075760405162461bcd60e51b81526020600482015260156024820152744d494e54204d4f5245205448414e2030204d454f5760581b6044820152606401610682565b600e548211156113525760405162461bcd60e51b8152602060048201526016602482015275594f55204d494e54454420454e4f554748204d454f5760501b6044820152606401610682565b600b5461135f83836122a0565b11156113a05760405162461bcd60e51b815260206004820152601060248201526f574c20534f4c44204f5554204d454f5760801b6044820152606401610682565b81600a546113ae91906122cc565b341015610bfd57600080fd5b60606113c7826000541190565b61141d5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610682565b6000611427611aa3565b905060008151116114475760405180602001604052806000815250611472565b8061145184611ab2565b604051602001611462929190612189565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146114a35760405162461bcd60e51b815260040161068290612218565b6001600160a01b0381166115085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610682565b610e2681611943565b610f12828260405180602001604052806000815250611bb0565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115928261186c565b80519091506000906001600160a01b0316336001600160a01b031614806115c95750336115be846108ee565b6001600160a01b0316145b806115db575081516115db903361060a565b9050806116455760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610682565b846001600160a01b031682600001516001600160a01b0316146116b95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610682565b6001600160a01b03841661171d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610682565b61172d600084846000015161152b565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611822576117d5816000541190565b15611822578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261188b826000541190565b6118ea5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610682565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611939579392505050565b50600019016118ec565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611a9757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119d99033908990889088906004016121c8565b602060405180830381600087803b1580156119f357600080fd5b505af1925050508015611a23575060408051601f3d908101601f19168201909252611a20918101906120de565b60015b611a7d573d808015611a51576040519150601f19603f3d011682016040523d82523d6000602084013e611a56565b606091505b508051611a755760405162461bcd60e51b81526004016106829061224d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a9b565b5060015b949350505050565b60606009805461086b9061232e565b606081611ad65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b005780611aea81612369565b9150611af99050600a836122b8565b9150611ada565b60008167ffffffffffffffff811115611b1b57611b1b6123da565b6040519080825280601f01601f191660200182016040528015611b45576020820181803683370190505b5090505b8415611a9b57611b5a6001836122eb565b9150611b67600a86612384565b611b729060306122a0565b60f81b818381518110611b8757611b876123c4565b60200101906001600160f81b031916908160001a905350611ba9600a866122b8565b9450611b49565b610a8c83838360016000546001600160a01b038516611c1b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610682565b83611c795760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610682565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d725760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611d6657611d4a6000888488611995565b611d665760405162461bcd60e51b81526004016106829061224d565b60019182019101611cf7565b50600055611865565b828054611d879061232e565b90600052602060002090601f016020900481019282611da95760008555611def565b82601f10611dc257805160ff1916838001178555611def565b82800160010185558215611def579182015b82811115611def578251825591602001919060010190611dd4565b50610ed19291505b80821115610ed15760008155600101611df7565b600067ffffffffffffffff80841115611e2657611e266123da565b604051601f8501601f19908116603f01168101908282118183101715611e4e57611e4e6123da565b81604052809350858152868686011115611e6757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e9857600080fd5b919050565b60008083601f840112611eaf57600080fd5b50813567ffffffffffffffff811115611ec757600080fd5b6020830191508360208260051b8501011115611ee257600080fd5b9250929050565b600060208284031215611efb57600080fd5b61147282611e81565b60008060408385031215611f1757600080fd5b611f2083611e81565b9150611f2e60208401611e81565b90509250929050565b600080600060608486031215611f4c57600080fd5b611f5584611e81565b9250611f6360208501611e81565b9150604084013590509250925092565b60008060008060808587031215611f8957600080fd5b611f9285611e81565b9350611fa060208601611e81565b925060408501359150606085013567ffffffffffffffff811115611fc357600080fd5b8501601f81018713611fd457600080fd5b611fe387823560208401611e0b565b91505092959194509250565b6000806040838503121561200257600080fd5b61200b83611e81565b91506020830135801515811461202057600080fd5b809150509250929050565b6000806040838503121561203e57600080fd5b61204783611e81565b946020939093013593505050565b6000806000806040858703121561206b57600080fd5b843567ffffffffffffffff8082111561208357600080fd5b61208f88838901611e9d565b909650945060208701359150808211156120a857600080fd5b506120b587828801611e9d565b95989497509550505050565b6000602082840312156120d357600080fd5b8135611472816123f0565b6000602082840312156120f057600080fd5b8151611472816123f0565b60006020828403121561210d57600080fd5b813567ffffffffffffffff81111561212457600080fd5b8201601f8101841361213557600080fd5b611a9b84823560208401611e0b565b60006020828403121561215657600080fd5b5035919050565b60008151808452612175816020860160208601612302565b601f01601f19169290920160200192915050565b6000835161219b818460208801612302565b8351908301906121af818360208801612302565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121fb9083018461215d565b9695505050505050565b602081526000611472602083018461215d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156122b3576122b3612398565b500190565b6000826122c7576122c76123ae565b500490565b60008160001904831182151516156122e6576122e6612398565b500290565b6000828210156122fd576122fd612398565b500390565b60005b8381101561231d578181015183820152602001612305565b838111156112615750506000910152565b600181811c9082168061234257607f821691505b6020821081141561236357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561237d5761237d612398565b5060010190565b600082612393576123936123ae565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e2657600080fdfea264697066735822122025d544393c5243beec638fcc40ca6978bfe74f7c4562b840dd0d8a541698966164736f6c63430008070033
Deployed Bytecode Sourcemap
45693:3410:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47033:652;;;;;;;;;;-1:-1:-1;47033:652:0;;;;;:::i;:::-;;:::i;:::-;;27501:372;;;;;;;;;;-1:-1:-1;27501:372:0;;;;;:::i;:::-;;:::i;:::-;;;7173:14:1;;7166:22;7148:41;;7136:2;7121:18;27501:372:0;;;;;;;;29387:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30949:214::-;;;;;;;;;;-1:-1:-1;30949:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6471:32:1;;;6453:51;;6441:2;6426:18;30949:214:0;6307:203:1;30470:413:0;;;;;;;;;;-1:-1:-1;30470:413:0;;;;;:::i;:::-;;:::i;25758:100::-;;;;;;;;;;-1:-1:-1;25811:7:0;25838:12;25758:100;;;18108:25:1;;;18096:2;18081:18;25758:100:0;17962:177:1;48161:106:0;;;;;;;;;;-1:-1:-1;48161:106:0;;;;;:::i;:::-;;:::i;46247:344::-;;;;;;:::i;:::-;;:::i;31825:162::-;;;;;;;;;;-1:-1:-1;31825:162:0;;;;;:::i;:::-;;:::i;26422:1007::-;;;;;;;;;;-1:-1:-1;26422:1007:0;;;;;:::i;:::-;;:::i;48524:90::-;;;;;;;;;;-1:-1:-1;48524:90:0;;;;;:::i;:::-;;:::i;45895:28::-;;;;;;;;;;;;;;;;48726:192;;;:::i;45930:27::-;;;;;;;;;;;;;;;;32058:177;;;;;;;;;;-1:-1:-1;32058:177:0;;;;;:::i;:::-;;:::i;48281:119::-;;;;;;;;;;-1:-1:-1;48281:119:0;;;;;:::i;:::-;;:::i;25935:187::-;;;;;;;;;;-1:-1:-1;25935:187:0;;;;;:::i;:::-;;:::i;48410:104::-;;;;;;;;;;-1:-1:-1;48410:104:0;;;;;:::i;:::-;;:::i;29196:124::-;;;;;;;;;;-1:-1:-1;29196:124:0;;;;;:::i;:::-;;:::i;45787:21::-;;;;;;;;;;;;;:::i;27937:221::-;;;;;;;;;;-1:-1:-1;27937:221:0;;;;;:::i;:::-;;:::i;42258:94::-;;;;;;;;;;;;;:::i;48928:172::-;;;;;;:::i;:::-;;:::i;45964:26::-;;;;;;;;;;;;;;;;48624:92;;;;;;;;;;-1:-1:-1;48624:92:0;;;;;:::i;:::-;;:::i;41607:87::-;;;;;;;;;;-1:-1:-1;41680:6:0;;-1:-1:-1;;;;;41680:6:0;41607:87;;48061:90;;;;;;;;;;-1:-1:-1;48061:90:0;;;;;:::i;:::-;;:::i;29556:104::-;;;;;;;;;;;;;:::i;45815:35::-;;;;;;;;;;;;;;;;31235:288;;;;;;;;;;-1:-1:-1;31235:288:0;;;;;:::i;:::-;;:::i;32306:355::-;;;;;;;;;;-1:-1:-1;32306:355:0;;;;;:::i;:::-;;:::i;46601:422::-;;;;;;:::i;:::-;;:::i;47695:356::-;;;;;;;;;;-1:-1:-1;47695:356:0;;;;;:::i;:::-;;:::i;45857:31::-;;;;;;;;;;;;;;;;31594:164;;;;;;;;;;-1:-1:-1;31594:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31715:25:0;;;31691:4;31715:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31594:164;42507:229;;;;;;;;;;-1:-1:-1;42507:229:0;;;;;:::i;:::-;;:::i;47033:652::-;41680:6;;-1:-1:-1;;;;;41680:6:0;5556:10;41827:23;41819:68;;;;-1:-1:-1;;;41819:68:0;;;;;;;:::i;:::-;;;;;;;;;47161:35;;::::1;47139:123;;;::::0;-1:-1:-1;;;47139:123:0;;10741:2:1;47139:123:0::1;::::0;::::1;10723:21:1::0;10780:2;10760:18;;;10753:30;10819:34;10799:18;;;10792:62;-1:-1:-1;;;10870:18:1;;;10863:36;10916:19;;47139:123:0::1;10539:402:1::0;47139:123:0::1;47273:21;47309:9:::0;47321:13:::1;25811:7:::0;25838:12;;25758:100;47321:13:::1;47309:25;;47350:9;47345:101;47365:19:::0;;::::1;47345:101;;;47423:8;;47432:1;47423:11;;;;;;;:::i;:::-;;;;;;;47406:28;;;;;:::i;:::-;::::0;-1:-1:-1;47386:3:0::1;::::0;::::1;:::i;:::-;;;47345:101;;;-1:-1:-1::0;47485:9:0::1;::::0;47464:17:::1;47468:13:::0;47464:1;:17:::1;:::i;:::-;:30;;47456:51;;;::::0;-1:-1:-1;;;47456:51:0;;8029:2:1;47456:51:0::1;::::0;::::1;8011:21:1::0;8068:1;8048:18;;;8041:29;-1:-1:-1;;;8086:18:1;;;8079:38;8134:18;;47456:51:0::1;7827:331:1::0;47456:51:0::1;47518:20;;;47554:9;47549:110;47569:20:::0;;::::1;47549:110;;;47611:36;47621:9;;47631:1;47621:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47635:8;;47644:1;47635:11;;;;;;;:::i;:::-;;;;;;;47611:9;:36::i;:::-;47591:3;::::0;::::1;:::i;:::-;;;47549:110;;;-1:-1:-1::0;;;;;;;47033:652:0:o;27501:372::-;27603:4;-1:-1:-1;;;;;;27640:40:0;;-1:-1:-1;;;27640:40:0;;:105;;-1:-1:-1;;;;;;;27697:48:0;;-1:-1:-1;;;27697:48:0;27640:105;:172;;;-1:-1:-1;;;;;;;27762:50:0;;-1:-1:-1;;;27762:50:0;27640:172;:225;;;-1:-1:-1;;;;;;;;;;17138:40:0;;;27829:36;27620:245;27501:372;-1:-1:-1;;27501:372:0:o;29387:100::-;29441:13;29474:5;29467:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29387:100;:::o;30949:214::-;31017:7;31045:16;31053:7;32973:4;33007:12;-1:-1:-1;32997:22:0;32916:111;31045:16;31037:74;;;;-1:-1:-1;;;31037:74:0;;17750:2:1;31037:74:0;;;17732:21:1;17789:2;17769:18;;;17762:30;17828:34;17808:18;;;17801:62;-1:-1:-1;;;17879:18:1;;;17872:43;17932:19;;31037:74:0;17548:409:1;31037:74:0;-1:-1:-1;31131:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31131:24:0;;30949:214::o;30470:413::-;30543:13;30559:24;30575:7;30559:15;:24::i;:::-;30543:40;;30608:5;-1:-1:-1;;;;;30602:11:0;:2;-1:-1:-1;;;;;30602:11:0;;;30594:58;;;;-1:-1:-1;;;30594:58:0;;14925:2:1;30594:58:0;;;14907:21:1;14964:2;14944:18;;;14937:30;15003:34;14983:18;;;14976:62;-1:-1:-1;;;15054:18:1;;;15047:32;15096:19;;30594:58:0;14723:398:1;30594:58:0;5556:10;-1:-1:-1;;;;;30687:21:0;;;;:62;;-1:-1:-1;30712:37:0;30729:5;5556:10;31594:164;:::i;30712:37::-;30665:169;;;;-1:-1:-1;;;30665:169:0;;11493:2:1;30665:169:0;;;11475:21:1;11532:2;11512:18;;;11505:30;11571:34;11551:18;;;11544:62;11642:27;11622:18;;;11615:55;11687:19;;30665:169:0;11291:421:1;30665:169:0;30847:28;30856:2;30860:7;30869:5;30847:8;:28::i;:::-;30532:351;30470:413;;:::o;48161:106::-;41680:6;;-1:-1:-1;;;;;41680:6:0;5556:10;41827:23;41819:68;;;;-1:-1:-1;;;41819:68:0;;;;;;;:::i;:::-;48234:9:::1;:25:::0;48161:106::o;46247:344::-;44636:1;45232:7;;:19;;45224:63;;;;-1:-1:-1;;;45224:63:0;;16974:2:1;45224:63:0;;;16956:21:1;17013:2;16993:18;;;16986:30;17052:33;17032:18;;;17025:61;17103:18;;45224:63:0;16772:355:1;45224:63:0;44636:1;45365:7;:18;46317:9:::1;25838:12:::0;46376:8:::1;::::0;46361:23;::::1;;46353:59;;;::::0;-1:-1:-1;;;46353:59:0;;13800:2:1;46353:59:0::1;::::0;::::1;13782:21:1::0;13839:2;13819:18;;;13812:30;-1:-1:-1;;;13858:18:1;;;13851:52;13920:18;;46353:59:0::1;13598:346:1::0;46353:59:0::1;46439:1;46425:11;:15;46417:50;;;::::0;-1:-1:-1;;;46417:50:0;;11919:2:1;46417:50:0::1;::::0;::::1;11901:21:1::0;11958:2;11938:18;;;11931:30;-1:-1:-1;;;11977:18:1;;;11970:51;12038:18;;46417:50:0::1;11717:345:1::0;46417:50:0::1;46499:6;::::0;46480:15:::1;46484:11:::0;46480:1;:15:::1;:::i;:::-;:25;;46472:56;;;::::0;-1:-1:-1;;;46472:56:0;;9989:2:1;46472:56:0::1;::::0;::::1;9971:21:1::0;10028:2;10008:18;;;10001:30;-1:-1:-1;;;10047:18:1;;;10040:47;10104:18;;46472:56:0::1;9787:341:1::0;46472:56:0::1;46539:34;46549:10;46561:11;46539:9;:34::i;:::-;-1:-1:-1::0;;44592:1:0;45544:7;:22;46247:344::o;31825:162::-;31951:28;31961:4;31967:2;31971:7;31951:9;:28::i;26422:1007::-;26511:7;26547:16;26557:5;26547:9;:16::i;:::-;26539:5;:24;26531:71;;;;-1:-1:-1;;;26531:71:0;;7626:2:1;26531:71:0;;;7608:21:1;7665:2;7645:18;;;7638:30;7704:34;7684:18;;;7677:62;-1:-1:-1;;;7755:18:1;;;7748:32;7797:19;;26531:71:0;7424:398:1;26531:71:0;26613:22;25838:12;;;26613:22;;26876:466;26896:14;26892:1;:18;26876:466;;;26936:31;26970:14;;;:11;:14;;;;;;;;;26936:48;;;;;;;;;-1:-1:-1;;;;;26936:48:0;;;;;-1:-1:-1;;;26936:48:0;;;;;;;;;;;;27007:28;27003:111;;27080:14;;;-1:-1:-1;27003:111:0;27157:5;-1:-1:-1;;;;;27136:26:0;:17;-1:-1:-1;;;;;27136:26:0;;27132:195;;;27206:5;27191:11;:20;27187:85;;;-1:-1:-1;27247:1:0;-1:-1:-1;27240:8:0;;-1:-1:-1;;;27240:8:0;27187:85;27294:13;;;;;27132:195;-1:-1:-1;26912:3:0;;26876:466;;;-1:-1:-1;27365:56:0;;-1:-1:-1;;;27365:56:0;;16559:2:1;27365:56:0;;;16541:21:1;16598:2;16578:18;;;16571:30;16637:34;16617:18;;;16610:62;-1:-1:-1;;;16688:18:1;;;16681:44;16742:19;;27365:56:0;16357:410:1;48524:90:0;41680:6;;-1:-1:-1;;;;;41680:6:0;5556:10;41827:23;41819:68;;;;-1:-1:-1;;;41819:68:0;;;;;;;:::i;:::-;48589:7:::1;:17:::0;48524:90::o;48726:192::-;41680:6;;-1:-1:-1;;;;;41680:6:0;5556:10;41827:23;41819:68;;;;-1:-1:-1;;;41819:68:0;;;;;;;:::i;:::-;48801:82:::1;::::0;48783:12:::1;::::0;48809:10:::1;::::0;48847:21:::1;::::0;48783:12;48801:82;48783:12;48801:82;48847:21;48809:10;48801:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48782:101;;;48902:7;48894:16;;;::::0;::::1;;48771:147;48726:192::o:0;32058:177::-;32188:39;32205:4;32211:2;32215:7;32188:39;;;;;;;;;;;;:16;:39::i;48281:119::-;41680:6;;-1:-1:-1;;;;;41680:6:0;5556:10;41827:23;41819:68;;;;-1:-1:-1;;;41819:68:0;;;;;;;:::i;:::-;48367:6:::1;:25:::0;48281:119::o;25935:187::-;26002:7;25838:12;;26030:5;:21;26022:69;;;;-1:-1:-1;;;26022:69:0;;9585:2:1;26022:69:0;;;9567:21:1;9624:2;9604:18;;;9597:30;9663:34;9643:18;;;9636:62;-1:-1:-1;;;9714:18:1;;;9707:33;9757:19;;26022:69:0;9383:399:1;26022:69:0;-1:-1:-1;26109:5:0;25935:187::o;48410:104::-;41680:6;;-1:-1:-1;;;;;41680:6:0;5556:10;41827:23;41819:68;;;;-1:-1:-1;;;41819:68:0;;;;;;;:::i;:::-;48485:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48410:104:::0;:::o;29196:124::-;29260:7;29287:20;29299:7;29287:11;:20::i;:::-;:25;;29196:124;-1:-1:-1;;29196:124:0:o;45787:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27937:221::-;28001:7;-1:-1:-1;;;;;28029:19:0;;28021:75;;;;-1:-1:-1;;;28021:75:0;;12269:2:1;28021:75:0;;;12251:21:1;12308:2;12288:18;;;12281:30;12347:34;12327:18;;;12320:62;-1:-1:-1;;;12398:18:1;;;12391:41;12449:19;;28021:75:0;12067:407:1;28021:75:0;-1:-1:-1;;;;;;28122:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28122:27:0;;27937:221::o;42258:94::-;41680:6;;-1:-1:-1;;;;;41680:6:0;5556:10;41827:23;41819:68;;;;-1:-1:-1;;;41819:68:0;;;;;;;:::i;:::-;42323:21:::1;42341:1;42323:9;:21::i;:::-;42258:94::o:0;48928:172::-;41680:6;;-1:-1:-1;;;;;41680:6:0;5556:10;41827:23;41819:68;;;;-1:-1:-1;;;41819:68:0;;;;;;;:::i;:::-;49021:44:::1;::::0;49003:12:::1;::::0;49029:10:::1;::::0;49053:7;;49003:12;49021:44;49003:12;49021:44;49053:7;49029:10;49021:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49002:63;;;49084:7;49076:16;;;::::0;::::1;48624:92:::0;41680:6;;-1:-1:-1;;;;;41680:6:0;5556:10;41827:23;41819:68;;;;-1:-1:-1;;;41819:68:0;;;;;;;:::i;:::-;48690:8:::1;:18:::0;48624:92::o;48061:90::-;41680:6;;-1:-1:-1;;;;;41680:6:0;5556:10;41827:23;41819:68;;;;-1:-1:-1;;;41819:68:0;;;;;;;:::i;:::-;48126:5:::1;:17:::0;48061:90::o;29556:104::-;29612:13;29645:7;29638:14;;;;;:::i;31235:288::-;-1:-1:-1;;;;;31330:24:0;;5556:10;31330:24;;31322:63;;;;-1:-1:-1;;;31322:63:0;;14151:2:1;31322:63:0;;;14133:21:1;14190:2;14170:18;;;14163:30;14229:28;14209:18;;;14202:56;14275:18;;31322:63:0;13949:350:1;31322:63:0;5556:10;31398:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31398:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31398:53:0;;;;;;;;;;31467:48;;7148:41:1;;;31398:42:0;;5556:10;31467:48;;7121:18:1;31467:48:0;;;;;;;31235:288;;:::o;32306:355::-;32465:28;32475:4;32481:2;32485:7;32465:9;:28::i;:::-;32526:48;32549:4;32555:2;32559:7;32568:5;32526:22;:48::i;:::-;32504:149;;;;-1:-1:-1;;;32504:149:0;;;;;;;:::i;:::-;32306:355;;;;:::o;46601:422::-;44636:1;45232:7;;:19;;45224:63;;;;-1:-1:-1;;;45224:63:0;;16974:2:1;45224:63:0;;;16956:21:1;17013:2;16993:18;;;16986:30;17052:33;17032:18;;;17025:61;17103:18;;45224:63:0;16772:355:1;45224:63:0;44636:1;45365:7;:18;46677:9:::1;25838:12:::0;46721:15;46713:49:::1;;;::::0;-1:-1:-1;;;46713:49:0;;11919:2:1;46713:49:0::1;::::0;::::1;11901:21:1::0;11958:2;11938:18;;;11931:30;-1:-1:-1;;;11977:18:1;;;11970:51;12038:18;;46713:49:0::1;11717:345:1::0;46713:49:0::1;46796:7;;46781:11;:22;;46773:58;;;::::0;-1:-1:-1;;;46773:58:0;;13088:2:1;46773:58:0::1;::::0;::::1;13070:21:1::0;13127:2;13107:18;;;13100:30;-1:-1:-1;;;13146:18:1;;;13139:52;13208:18;;46773:58:0::1;12886:346:1::0;46773:58:0::1;46869:9;::::0;46850:15:::1;46854:11:::0;46850:1;:15:::1;:::i;:::-;:28;;46842:57;;;::::0;-1:-1:-1;;;46842:57:0;;11148:2:1;46842:57:0::1;::::0;::::1;11130:21:1::0;11187:2;11167:18;;;11160:30;-1:-1:-1;;;11206:18:1;;;11199:46;11262:18;;46842:57:0::1;10946:340:1::0;46842:57:0::1;46939:11;46931:5;;:19;;;;:::i;:::-;46918:9;:32;;46910:41;;;::::0;::::1;47695:356:::0;47768:13;47802:16;47810:7;32973:4;33007:12;-1:-1:-1;32997:22:0;32916:111;47802:16;47794:62;;;;-1:-1:-1;;;47794:62:0;;8365:2:1;47794:62:0;;;8347:21:1;8404:2;8384:18;;;8377:30;8443:34;8423:18;;;8416:62;-1:-1:-1;;;8494:18:1;;;8487:31;8535:19;;47794:62:0;8163:397:1;47794:62:0;47867:28;47898:10;:8;:10::i;:::-;47867:41;;47957:1;47932:14;47926:28;:32;:117;;;;;;;;;;;;;;;;;47994:14;48010:18;:7;:16;:18::i;:::-;47977:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47926:117;47919:124;47695:356;-1:-1:-1;;;47695:356:0:o;42507:229::-;41680:6;;-1:-1:-1;;;;;41680:6:0;5556:10;41827:23;41819:68;;;;-1:-1:-1;;;41819:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42610:22:0;::::1;42588:110;;;::::0;-1:-1:-1;;;42588:110:0;;8767:2:1;42588:110:0::1;::::0;::::1;8749:21:1::0;8806:2;8786:18;;;8779:30;8845:34;8825:18;;;8818:62;-1:-1:-1;;;8896:18:1;;;8889:36;8942:19;;42588:110:0::1;8565:402:1::0;42588:110:0::1;42709:19;42719:8;42709:9;:19::i;33035:104::-:0;33104:27;33114:2;33118:8;33104:27;;;;;;;;;;;;:9;:27::i;37836:196::-;37951:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37951:29:0;-1:-1:-1;;;;;37951:29:0;;;;;;;;;37996:28;;37951:24;;37996:28;;;;;;;37836:196;;;:::o;35716:2002::-;35831:35;35869:20;35881:7;35869:11;:20::i;:::-;35944:18;;35831:58;;-1:-1:-1;35902:22:0;;-1:-1:-1;;;;;35928:34:0;5556:10;-1:-1:-1;;;;;35928:34:0;;:87;;;-1:-1:-1;5556:10:0;35979:20;35991:7;35979:11;:20::i;:::-;-1:-1:-1;;;;;35979:36:0;;35928:87;:154;;;-1:-1:-1;36049:18:0;;36032:50;;5556:10;31594:164;:::i;36032:50::-;35902:181;;36104:17;36096:80;;;;-1:-1:-1;;;36096:80:0;;14506:2:1;36096:80:0;;;14488:21:1;14545:2;14525:18;;;14518:30;14584:34;14564:18;;;14557:62;-1:-1:-1;;;14635:18:1;;;14628:48;14693:19;;36096:80:0;14304:414:1;36096:80:0;36219:4;-1:-1:-1;;;;;36197:26:0;:13;:18;;;-1:-1:-1;;;;;36197:26:0;;36189:77;;;;-1:-1:-1;;;36189:77:0;;12681:2:1;36189:77:0;;;12663:21:1;12720:2;12700:18;;;12693:30;12759:34;12739:18;;;12732:62;-1:-1:-1;;;12810:18:1;;;12803:36;12856:19;;36189:77:0;12479:402:1;36189:77:0;-1:-1:-1;;;;;36285:16:0;;36277:66;;;;-1:-1:-1;;;36277:66:0;;10335:2:1;36277:66:0;;;10317:21:1;10374:2;10354:18;;;10347:30;10413:34;10393:18;;;10386:62;-1:-1:-1;;;10464:18:1;;;10457:35;10509:19;;36277:66:0;10133:401:1;36277:66:0;36464:49;36481:1;36485:7;36494:13;:18;;;36464:8;:49::i;:::-;-1:-1:-1;;;;;36809:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;36809:31:0;;;-1:-1:-1;;;;;36809:31:0;;;-1:-1:-1;;36809:31:0;;;;;;;36855:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36855:29:0;;;;;;;;;;;;;36901:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36946:61:0;;;;-1:-1:-1;;;36991:15:0;36946:61;;;;;;37281:11;;;37311:24;;;;;:29;37281:11;;37311:29;37307:295;;37379:20;37387:11;32973:4;33007:12;-1:-1:-1;32997:22:0;32916:111;37379:20;37375:212;;;37456:18;;;37424:24;;;:11;:24;;;;;;;;:50;;37539:28;;;;37497:70;;-1:-1:-1;;;37497:70:0;-1:-1:-1;;;;;;37497:70:0;;;-1:-1:-1;;;;;37424:50:0;;;37497:70;;;;;;;37375:212;36784:829;37649:7;37645:2;-1:-1:-1;;;;;37630:27:0;37639:4;-1:-1:-1;;;;;37630:27:0;;;;;;;;;;;37668:42;35820:1898;;35716:2002;;;:::o;28597:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;28700:16:0;28708:7;32973:4;33007:12;-1:-1:-1;32997:22:0;32916:111;28700:16;28692:71;;;;-1:-1:-1;;;28692:71:0;;9174:2:1;28692:71:0;;;9156:21:1;9213:2;9193:18;;;9186:30;9252:34;9232:18;;;9225:62;-1:-1:-1;;;9303:18:1;;;9296:40;9353:19;;28692:71:0;8972:406:1;28692:71:0;28821:7;28801:245;28868:31;28902:17;;;:11;:17;;;;;;;;;28868:51;;;;;;;;;-1:-1:-1;;;;;28868:51:0;;;;;-1:-1:-1;;;28868:51:0;;;;;;;;;;;;28942:28;28938:93;;29002:9;28597:537;-1:-1:-1;;;28597:537:0:o;28938:93::-;-1:-1:-1;;;28841:6:0;28801:245;;42744:173;42819:6;;;-1:-1:-1;;;;;42836:17:0;;;-1:-1:-1;;;;;;42836:17:0;;;;;;;42869:40;;42819:6;;;42836:17;42819:6;;42869:40;;42800:16;;42869:40;42789:128;42744:173;:::o;38597:804::-;38752:4;-1:-1:-1;;;;;38773:13:0;;7218:19;:23;38769:625;;38809:72;;-1:-1:-1;;;38809:72:0;;-1:-1:-1;;;;;38809:36:0;;;;;:72;;5556:10;;38860:4;;38866:7;;38875:5;;38809:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38809:72:0;;;;;;;;-1:-1:-1;;38809:72:0;;;;;;;;;;;;:::i;:::-;;;38805:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39055:13:0;;39051:273;;39098:61;;-1:-1:-1;;;39098:61:0;;;;;;;:::i;39051:273::-;39274:6;39268:13;39259:6;39255:2;39251:15;39244:38;38805:534;-1:-1:-1;;;;;;38932:55:0;-1:-1:-1;;;38932:55:0;;-1:-1:-1;38925:62:0;;38769:625;-1:-1:-1;39378:4:0;38769:625;38597:804;;;;;;:::o;46129:108::-;46189:13;46222:7;46215:14;;;;;:::i;3038:723::-;3094:13;3315:10;3311:53;;-1:-1:-1;;3342:10:0;;;;;;;;;;;;-1:-1:-1;;;3342:10:0;;;;;3038:723::o;3311:53::-;3389:5;3374:12;3430:78;3437:9;;3430:78;;3463:8;;;;:::i;:::-;;-1:-1:-1;3486:10:0;;-1:-1:-1;3494:2:0;3486:10;;:::i;:::-;;;3430:78;;;3518:19;3550:6;3540:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3540:17:0;;3518:39;;3568:154;3575:10;;3568:154;;3602:11;3612:1;3602:11;;:::i;:::-;;-1:-1:-1;3671:10:0;3679:2;3671:5;:10;:::i;:::-;3658:24;;:2;:24;:::i;:::-;3645:39;;3628:6;3635;3628:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3628:56:0;;;;;;;;-1:-1:-1;3699:11:0;3708:2;3699:11;;:::i;:::-;;;3568:154;;33502:163;33625:32;33631:2;33635:8;33645:5;33652:4;34063:20;34086:12;-1:-1:-1;;;;;34117:16:0;;34109:62;;;;-1:-1:-1;;;34109:62:0;;15748:2:1;34109:62:0;;;15730:21:1;15787:2;15767:18;;;15760:30;15826:34;15806:18;;;15799:62;-1:-1:-1;;;15877:18:1;;;15870:31;15918:19;;34109:62:0;15546:397:1;34109:62:0;34190:13;34182:66;;;;-1:-1:-1;;;34182:66:0;;16150:2:1;34182:66:0;;;16132:21:1;16189:2;16169:18;;;16162:30;16228:34;16208:18;;;16201:62;-1:-1:-1;;;16279:18:1;;;16272:38;16327:19;;34182:66:0;15948:404:1;34182:66:0;-1:-1:-1;;;;;34600:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;34600:45:0;;-1:-1:-1;;;;;34600:45:0;;;;;;;;;;34660:50;;;;;;;;;;;;;;34727:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;34777:66:0;;;;-1:-1:-1;;;34827:15:0;34777:66;;;;;;;34727:25;;34912:415;34932:8;34928:1;:12;34912:415;;;34971:38;;34996:12;;-1:-1:-1;;;;;34971:38:0;;;34988:1;;34971:38;;34988:1;;34971:38;35032:4;35028:249;;;35095:59;35126:1;35130:2;35134:12;35148:5;35095:22;:59::i;:::-;35061:196;;;;-1:-1:-1;;;35061:196:0;;;;;;;:::i;:::-;35297:14;;;;;34942:3;34912:415;;;-1:-1:-1;35343:12:0;:27;35394:60;32306:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;1039:18;1028:30;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:186::-;1259:6;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;1391:260::-;1459:6;1467;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1559:29;1578:9;1559:29;:::i;:::-;1549:39;;1607:38;1641:2;1630:9;1626:18;1607:38;:::i;:::-;1597:48;;1391:260;;;;;:::o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;1989:666::-;2084:6;2092;2100;2108;2161:3;2149:9;2140:7;2136:23;2132:33;2129:53;;;2178:1;2175;2168:12;2129:53;2201:29;2220:9;2201:29;:::i;:::-;2191:39;;2249:38;2283:2;2272:9;2268:18;2249:38;:::i;:::-;2239:48;;2334:2;2323:9;2319:18;2306:32;2296:42;;2389:2;2378:9;2374:18;2361:32;2416:18;2408:6;2405:30;2402:50;;;2448:1;2445;2438:12;2402:50;2471:22;;2524:4;2516:13;;2512:27;-1:-1:-1;2502:55:1;;2553:1;2550;2543:12;2502:55;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1989:666;;;;;;;:::o;2660:347::-;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2825:29;2844:9;2825:29;:::i;:::-;2815:39;;2904:2;2893:9;2889:18;2876:32;2951:5;2944:13;2937:21;2930:5;2927:32;2917:60;;2973:1;2970;2963:12;2917:60;2996:5;2986:15;;;2660:347;;;;;:::o;3012:254::-;3080:6;3088;3141:2;3129:9;3120:7;3116:23;3112:32;3109:52;;;3157:1;3154;3147:12;3109:52;3180:29;3199:9;3180:29;:::i;:::-;3170:39;3256:2;3241:18;;;;3228:32;;-1:-1:-1;;;3012:254:1:o;3271:773::-;3393:6;3401;3409;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3526:9;3513:23;3555:18;3596:2;3588:6;3585:14;3582:34;;;3612:1;3609;3602:12;3582:34;3651:70;3713:7;3704:6;3693:9;3689:22;3651:70;:::i;:::-;3740:8;;-1:-1:-1;3625:96:1;-1:-1:-1;3828:2:1;3813:18;;3800:32;;-1:-1:-1;3844:16:1;;;3841:36;;;3873:1;3870;3863:12;3841:36;;3912:72;3976:7;3965:8;3954:9;3950:24;3912:72;:::i;:::-;3271:773;;;;-1:-1:-1;4003:8:1;-1:-1:-1;;;;3271:773:1:o;4049:245::-;4107:6;4160:2;4148:9;4139:7;4135:23;4131:32;4128:52;;;4176:1;4173;4166:12;4128:52;4215:9;4202:23;4234:30;4258:5;4234:30;:::i;4299:249::-;4368:6;4421:2;4409:9;4400:7;4396:23;4392:32;4389:52;;;4437:1;4434;4427:12;4389:52;4469:9;4463:16;4488:30;4512:5;4488:30;:::i;4553:450::-;4622:6;4675:2;4663:9;4654:7;4650:23;4646:32;4643:52;;;4691:1;4688;4681:12;4643:52;4731:9;4718:23;4764:18;4756:6;4753:30;4750:50;;;4796:1;4793;4786:12;4750:50;4819:22;;4872:4;4864:13;;4860:27;-1:-1:-1;4850:55:1;;4901:1;4898;4891:12;4850:55;4924:73;4989:7;4984:2;4971:16;4966:2;4962;4958:11;4924:73;:::i;5008:180::-;5067:6;5120:2;5108:9;5099:7;5095:23;5091:32;5088:52;;;5136:1;5133;5126:12;5088:52;-1:-1:-1;5159:23:1;;5008:180;-1:-1:-1;5008:180:1:o;5193:257::-;5234:3;5272:5;5266:12;5299:6;5294:3;5287:19;5315:63;5371:6;5364:4;5359:3;5355:14;5348:4;5341:5;5337:16;5315:63;:::i;:::-;5432:2;5411:15;-1:-1:-1;;5407:29:1;5398:39;;;;5439:4;5394:50;;5193:257;-1:-1:-1;;5193:257:1:o;5455:637::-;5735:3;5773:6;5767:13;5789:53;5835:6;5830:3;5823:4;5815:6;5811:17;5789:53;:::i;:::-;5905:13;;5864:16;;;;5927:57;5905:13;5864:16;5961:4;5949:17;;5927:57;:::i;:::-;-1:-1:-1;;;6006:20:1;;6035:22;;;6084:1;6073:13;;5455:637;-1:-1:-1;;;;5455:637:1:o;6515:488::-;-1:-1:-1;;;;;6784:15:1;;;6766:34;;6836:15;;6831:2;6816:18;;6809:43;6883:2;6868:18;;6861:34;;;6931:3;6926:2;6911:18;;6904:31;;;6709:4;;6952:45;;6977:19;;6969:6;6952:45;:::i;:::-;6944:53;6515:488;-1:-1:-1;;;;;;6515:488:1:o;7200:219::-;7349:2;7338:9;7331:21;7312:4;7369:44;7409:2;7398:9;7394:18;7386:6;7369:44;:::i;13237:356::-;13439:2;13421:21;;;13458:18;;;13451:30;13517:34;13512:2;13497:18;;13490:62;13584:2;13569:18;;13237:356::o;15126:415::-;15328:2;15310:21;;;15367:2;15347:18;;;15340:30;15406:34;15401:2;15386:18;;15379:62;-1:-1:-1;;;15472:2:1;15457:18;;15450:49;15531:3;15516:19;;15126:415::o;18144:128::-;18184:3;18215:1;18211:6;18208:1;18205:13;18202:39;;;18221:18;;:::i;:::-;-1:-1:-1;18257:9:1;;18144:128::o;18277:120::-;18317:1;18343;18333:35;;18348:18;;:::i;:::-;-1:-1:-1;18382:9:1;;18277:120::o;18402:168::-;18442:7;18508:1;18504;18500:6;18496:14;18493:1;18490:21;18485:1;18478:9;18471:17;18467:45;18464:71;;;18515:18;;:::i;:::-;-1:-1:-1;18555:9:1;;18402:168::o;18575:125::-;18615:4;18643:1;18640;18637:8;18634:34;;;18648:18;;:::i;:::-;-1:-1:-1;18685:9:1;;18575:125::o;18705:258::-;18777:1;18787:113;18801:6;18798:1;18795:13;18787:113;;;18877:11;;;18871:18;18858:11;;;18851:39;18823:2;18816:10;18787:113;;;18918:6;18915:1;18912:13;18909:48;;;-1:-1:-1;;18953:1:1;18935:16;;18928:27;18705:258::o;18968:380::-;19047:1;19043:12;;;;19090;;;19111:61;;19165:4;19157:6;19153:17;19143:27;;19111:61;19218:2;19210:6;19207:14;19187:18;19184:38;19181:161;;;19264:10;19259:3;19255:20;19252:1;19245:31;19299:4;19296:1;19289:15;19327:4;19324:1;19317:15;19181:161;;18968:380;;;:::o;19353:135::-;19392:3;-1:-1:-1;;19413:17:1;;19410:43;;;19433:18;;:::i;:::-;-1:-1:-1;19480:1:1;19469:13;;19353:135::o;19493:112::-;19525:1;19551;19541:35;;19556:18;;:::i;:::-;-1:-1:-1;19590:9:1;;19493:112::o;19610:127::-;19671:10;19666:3;19662:20;19659:1;19652:31;19702:4;19699:1;19692:15;19726:4;19723:1;19716:15;19742:127;19803:10;19798:3;19794:20;19791:1;19784:31;19834:4;19831:1;19824:15;19858:4;19855:1;19848:15;19874:127;19935:10;19930:3;19926:20;19923:1;19916:31;19966:4;19963:1;19956:15;19990:4;19987:1;19980:15;20006:127;20067:10;20062:3;20058:20;20055:1;20048:31;20098:4;20095:1;20088:15;20122:4;20119:1;20112:15;20138:131;-1:-1:-1;;;;;;20212:32:1;;20202:43;;20192:71;;20259:1;20256;20249:12
Swarm Source
ipfs://25d544393c5243beec638fcc40ca6978bfe74f7c4562b840dd0d8a5416989661
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.