Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
10,005 LILS
Holders
1,638
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 LILSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Lilverse2
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-27 */ // SPDX-License-Identifier: UNLICENSED 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo( uint256 tokenId, uint256 salePrice ) external view returns (address receiver, uint256 royaltyAmount); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 tokenId, uint256 salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: NFTS/Lilverse/Contracts/Lilverse2.0.sol pragma solidity ^0.8.0; 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/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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 v4.4.1 (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 `IERC721.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}. */ // 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. */ // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (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`, 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (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 tokenId); /** * @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/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See 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_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _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 virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } 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; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _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 || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _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)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), 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[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @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 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { 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 TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/DMMC.sol pragma solidity >=0.8.4 <0.9.0; contract Lilverse2 is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; constructor() ERC721A("Lilverse NFT", "LILS") { } function airdrop(address[] memory users)public onlyOwner{ for (uint256 i = 0; i < users.length; i++) { _mint(users[i], 1, "", false); } } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory){ require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), baseExtension) ) : ""; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _baseExtension) public onlyOwner { baseExtension = _baseExtension; } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"users","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"_baseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200004a91906200047c565b503480156200005857600080fd5b506040518060400160405280600c81526020017f4c696c7665727365204e465400000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c494c53000000000000000000000000000000000000000000000000000000008152508160029081620000d691906200047c565b508060039081620000e891906200047c565b50620000f96200012f60201b60201c565b600081905550505062000121620001156200013460201b60201c565b6200013c60201b60201c565b600160098190555062000563565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200028457607f821691505b6020821081036200029a57620002996200023c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002c5565b620003108683620002c5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200035d62000357620003518462000328565b62000332565b62000328565b9050919050565b6000819050919050565b62000379836200033c565b62000391620003888262000364565b848454620002d2565b825550505050565b600090565b620003a862000399565b620003b58184846200036e565b505050565b5b81811015620003dd57620003d16000826200039e565b600181019050620003bb565b5050565b601f8211156200042c57620003f681620002a0565b6200040184620002b5565b8101602085101562000411578190505b620004296200042085620002b5565b830182620003ba565b50505b505050565b600082821c905092915050565b6000620004516000198460080262000431565b1980831691505092915050565b60006200046c83836200043e565b9150826002028217905092915050565b620004878262000202565b67ffffffffffffffff811115620004a357620004a26200020d565b5b620004af82546200026b565b620004bc828285620003e1565b600060209050601f831160018114620004f45760008415620004df578287015190505b620004eb85826200045e565b8655506200055b565b601f1984166200050486620002a0565b60005b828110156200052e5784890151825560018201915060208501945060208101905062000507565b868310156200054e57848901516200054a601f8916826200043e565b8355505b6001600288020188555050505b505050505050565b6133f580620005736000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde14610364578063c668286214610380578063c87b56dd1461039e578063da3ef23f146103ce578063e985e9c5146103ea578063f2fde38b1461041a5761014d565b806370a08231146102b6578063715018a6146102e6578063729ad39e146102f05780638da5cb5b1461030c57806395d89b411461032a578063a22cb465146103485761014d565b806323b872dd1161011557806323b872dd1461020a5780633ccfd60b1461022657806342842e0e1461023057806355f804b31461024c5780636352211e146102685780636c0360eb146102985761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c600480360381019061016791906123e4565b610436565b604051610179919061242c565b60405180910390f35b61018a610448565b60405161019791906124d7565b60405180910390f35b6101ba60048036038101906101b5919061252f565b6104da565b6040516101c7919061259d565b60405180910390f35b6101ea60048036038101906101e591906125e4565b610556565b005b6101f4610660565b6040516102019190612633565b60405180910390f35b610224600480360381019061021f919061264e565b610677565b005b61022e610687565b005b61024a6004803603810190610245919061264e565b610793565b005b610266600480360381019061026191906127d6565b6107b3565b005b610282600480360381019061027d919061252f565b610842565b60405161028f919061259d565b60405180910390f35b6102a0610858565b6040516102ad91906124d7565b60405180910390f35b6102d060048036038101906102cb919061281f565b6108e6565b6040516102dd9190612633565b60405180910390f35b6102ee6109b5565b005b61030a60048036038101906103059190612914565b610a3d565b005b610314610b13565b604051610321919061259d565b60405180910390f35b610332610b3d565b60405161033f91906124d7565b60405180910390f35b610362600480360381019061035d9190612989565b610bcf565b005b61037e60048036038101906103799190612a6a565b610d46565b005b610388610dc2565b60405161039591906124d7565b60405180910390f35b6103b860048036038101906103b3919061252f565b610e50565b6040516103c591906124d7565b60405180910390f35b6103e860048036038101906103e391906127d6565b610efa565b005b61040460048036038101906103ff9190612aed565b610f89565b604051610411919061242c565b60405180910390f35b610434600480360381019061042f919061281f565b61101d565b005b600061044182611114565b9050919050565b60606002805461045790612b5c565b80601f016020809104026020016040519081016040528092919081815260200182805461048390612b5c565b80156104d05780601f106104a5576101008083540402835291602001916104d0565b820191906000526020600020905b8154815290600101906020018083116104b357829003601f168201915b5050505050905090565b60006104e5826111f6565b61051b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061056182610842565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105c8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105e7611244565b73ffffffffffffffffffffffffffffffffffffffff1614158015610619575061061781610612611244565b610f89565b155b15610650576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61065b83838361124c565b505050565b600061066a6112fe565b6001546000540303905090565b610682838383611303565b505050565b61068f611244565b73ffffffffffffffffffffffffffffffffffffffff166106ad610b13565b73ffffffffffffffffffffffffffffffffffffffff1614610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa90612bd9565b60405180910390fd5b61070b6117f2565b6000610715610b13565b73ffffffffffffffffffffffffffffffffffffffff164760405161073890612c2a565b60006040518083038185875af1925050503d8060008114610775576040519150601f19603f3d011682016040523d82523d6000602084013e61077a565b606091505b505090508061078857600080fd5b50610791611841565b565b6107ae83838360405180602001604052806000815250610d46565b505050565b6107bb611244565b73ffffffffffffffffffffffffffffffffffffffff166107d9610b13565b73ffffffffffffffffffffffffffffffffffffffff161461082f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082690612bd9565b60405180910390fd5b80600a908161083e9190612deb565b5050565b600061084d8261184b565b600001519050919050565b600a805461086590612b5c565b80601f016020809104026020016040519081016040528092919081815260200182805461089190612b5c565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361094d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6109bd611244565b73ffffffffffffffffffffffffffffffffffffffff166109db610b13565b73ffffffffffffffffffffffffffffffffffffffff1614610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2890612bd9565b60405180910390fd5b610a3b6000611ada565b565b610a45611244565b73ffffffffffffffffffffffffffffffffffffffff16610a63610b13565b73ffffffffffffffffffffffffffffffffffffffff1614610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab090612bd9565b60405180910390fd5b60005b8151811015610b0f57610afc828281518110610adb57610ada612ebd565b5b60200260200101516001604051806020016040528060008152506000611ba0565b8080610b0790612f1b565b915050610abc565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610b4c90612b5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7890612b5c565b8015610bc55780601f10610b9a57610100808354040283529160200191610bc5565b820191906000526020600020905b815481529060010190602001808311610ba857829003601f168201915b5050505050905090565b610bd7611244565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c3b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610c48611244565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610cf5611244565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d3a919061242c565b60405180910390a35050565b610d51848484611303565b610d708373ffffffffffffffffffffffffffffffffffffffff16611f6a565b8015610d855750610d8384848484611f7d565b155b15610dbc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b8054610dcf90612b5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dfb90612b5c565b8015610e485780601f10610e1d57610100808354040283529160200191610e48565b820191906000526020600020905b815481529060010190602001808311610e2b57829003601f168201915b505050505081565b6060610e5b826111f6565b610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190612fd5565b60405180910390fd5b6000610ea46120cd565b90506000815111610ec45760405180602001604052806000815250610ef2565b80610ece8461215f565b600b604051602001610ee2939291906130b4565b6040516020818303038152906040525b915050919050565b610f02611244565b73ffffffffffffffffffffffffffffffffffffffff16610f20610b13565b73ffffffffffffffffffffffffffffffffffffffff1614610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90612bd9565b60405180910390fd5b80600b9081610f859190612deb565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611025611244565b73ffffffffffffffffffffffffffffffffffffffff16611043610b13565b73ffffffffffffffffffffffffffffffffffffffff1614611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090612bd9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff90613157565b60405180910390fd5b61111181611ada565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806111df57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806111ef57506111ee826122bf565b5b9050919050565b6000816112016112fe565b11158015611210575060005482105b801561123d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061130e8261184b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611335611244565b73ffffffffffffffffffffffffffffffffffffffff16148061136857506113678260000151611362611244565b610f89565b5b806113ad5750611376611244565b73ffffffffffffffffffffffffffffffffffffffff16611395846104da565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806113e6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461144f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114b5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114c28585856001612329565b6114d2600084846000015161124c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611782576000548110156117815782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117eb858585600161232f565b5050505050565b600260095403611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e906131c3565b60405180910390fd5b6002600981905550565b6001600981905550565b611853612335565b6000829050806118616112fe565b11158015611870575060005481105b15611aa3576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611aa157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611985578092505050611ad5565b5b600115611aa057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a9b578092505050611ad5565b611986565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c0c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403611c46576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c536000868387612329565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015611e1d5750611e1c8773ffffffffffffffffffffffffffffffffffffffff16611f6a565b5b15611ee2575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e926000888480600101955088611f7d565b611ec8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203611e23578260005414611edd57600080fd5b611f4d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203611ee3575b816000819055505050611f63600086838761232f565b5050505050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fa3611244565b8786866040518563ffffffff1660e01b8152600401611fc59493929190613238565b6020604051808303816000875af192505050801561200157506040513d601f19601f82011682018060405250810190611ffe9190613299565b60015b61207a573d8060008114612031576040519150601f19603f3d011682016040523d82523d6000602084013e612036565b606091505b506000815103612072576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546120dc90612b5c565b80601f016020809104026020016040519081016040528092919081815260200182805461210890612b5c565b80156121555780601f1061212a57610100808354040283529160200191612155565b820191906000526020600020905b81548152906001019060200180831161213857829003601f168201915b5050505050905090565b6060600082036121a6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122ba565b600082905060005b600082146121d85780806121c190612f1b565b915050600a826121d191906132f5565b91506121ae565b60008167ffffffffffffffff8111156121f4576121f36126ab565b5b6040519080825280601f01601f1916602001820160405280156122265781602001600182028036833780820191505090505b5090505b600085146122b35760018261223f9190613326565b9150600a8561224e919061335a565b603061225a919061338b565b60f81b8183815181106122705761226f612ebd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122ac91906132f5565b945061222a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123c18161238c565b81146123cc57600080fd5b50565b6000813590506123de816123b8565b92915050565b6000602082840312156123fa576123f9612382565b5b6000612408848285016123cf565b91505092915050565b60008115159050919050565b61242681612411565b82525050565b6000602082019050612441600083018461241d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612481578082015181840152602081019050612466565b60008484015250505050565b6000601f19601f8301169050919050565b60006124a982612447565b6124b38185612452565b93506124c3818560208601612463565b6124cc8161248d565b840191505092915050565b600060208201905081810360008301526124f1818461249e565b905092915050565b6000819050919050565b61250c816124f9565b811461251757600080fd5b50565b60008135905061252981612503565b92915050565b60006020828403121561254557612544612382565b5b60006125538482850161251a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125878261255c565b9050919050565b6125978161257c565b82525050565b60006020820190506125b2600083018461258e565b92915050565b6125c18161257c565b81146125cc57600080fd5b50565b6000813590506125de816125b8565b92915050565b600080604083850312156125fb576125fa612382565b5b6000612609858286016125cf565b925050602061261a8582860161251a565b9150509250929050565b61262d816124f9565b82525050565b60006020820190506126486000830184612624565b92915050565b60008060006060848603121561266757612666612382565b5b6000612675868287016125cf565b9350506020612686868287016125cf565b92505060406126978682870161251a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126e38261248d565b810181811067ffffffffffffffff82111715612702576127016126ab565b5b80604052505050565b6000612715612378565b905061272182826126da565b919050565b600067ffffffffffffffff821115612741576127406126ab565b5b61274a8261248d565b9050602081019050919050565b82818337600083830152505050565b600061277961277484612726565b61270b565b905082815260208101848484011115612795576127946126a6565b5b6127a0848285612757565b509392505050565b600082601f8301126127bd576127bc6126a1565b5b81356127cd848260208601612766565b91505092915050565b6000602082840312156127ec576127eb612382565b5b600082013567ffffffffffffffff81111561280a57612809612387565b5b612816848285016127a8565b91505092915050565b60006020828403121561283557612834612382565b5b6000612843848285016125cf565b91505092915050565b600067ffffffffffffffff821115612867576128666126ab565b5b602082029050602081019050919050565b600080fd5b600061289061288b8461284c565b61270b565b905080838252602082019050602084028301858111156128b3576128b2612878565b5b835b818110156128dc57806128c888826125cf565b8452602084019350506020810190506128b5565b5050509392505050565b600082601f8301126128fb576128fa6126a1565b5b813561290b84826020860161287d565b91505092915050565b60006020828403121561292a57612929612382565b5b600082013567ffffffffffffffff81111561294857612947612387565b5b612954848285016128e6565b91505092915050565b61296681612411565b811461297157600080fd5b50565b6000813590506129838161295d565b92915050565b600080604083850312156129a05761299f612382565b5b60006129ae858286016125cf565b92505060206129bf85828601612974565b9150509250929050565b600067ffffffffffffffff8211156129e4576129e36126ab565b5b6129ed8261248d565b9050602081019050919050565b6000612a0d612a08846129c9565b61270b565b905082815260208101848484011115612a2957612a286126a6565b5b612a34848285612757565b509392505050565b600082601f830112612a5157612a506126a1565b5b8135612a618482602086016129fa565b91505092915050565b60008060008060808587031215612a8457612a83612382565b5b6000612a92878288016125cf565b9450506020612aa3878288016125cf565b9350506040612ab48782880161251a565b925050606085013567ffffffffffffffff811115612ad557612ad4612387565b5b612ae187828801612a3c565b91505092959194509250565b60008060408385031215612b0457612b03612382565b5b6000612b12858286016125cf565b9250506020612b23858286016125cf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b7457607f821691505b602082108103612b8757612b86612b2d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bc3602083612452565b9150612bce82612b8d565b602082019050919050565b60006020820190508181036000830152612bf281612bb6565b9050919050565b600081905092915050565b50565b6000612c14600083612bf9565b9150612c1f82612c04565b600082019050919050565b6000612c3582612c07565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ca17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612c64565b612cab8683612c64565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612ce8612ce3612cde846124f9565b612cc3565b6124f9565b9050919050565b6000819050919050565b612d0283612ccd565b612d16612d0e82612cef565b848454612c71565b825550505050565b600090565b612d2b612d1e565b612d36818484612cf9565b505050565b5b81811015612d5a57612d4f600082612d23565b600181019050612d3c565b5050565b601f821115612d9f57612d7081612c3f565b612d7984612c54565b81016020851015612d88578190505b612d9c612d9485612c54565b830182612d3b565b50505b505050565b600082821c905092915050565b6000612dc260001984600802612da4565b1980831691505092915050565b6000612ddb8383612db1565b9150826002028217905092915050565b612df482612447565b67ffffffffffffffff811115612e0d57612e0c6126ab565b5b612e178254612b5c565b612e22828285612d5e565b600060209050601f831160018114612e555760008415612e43578287015190505b612e4d8582612dcf565b865550612eb5565b601f198416612e6386612c3f565b60005b82811015612e8b57848901518255600182019150602085019450602081019050612e66565b86831015612ea85784890151612ea4601f891682612db1565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f26826124f9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f5857612f57612eec565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612fbf602f83612452565b9150612fca82612f63565b604082019050919050565b60006020820190508181036000830152612fee81612fb2565b9050919050565b600081905092915050565b600061300b82612447565b6130158185612ff5565b9350613025818560208601612463565b80840191505092915050565b6000815461303e81612b5c565b6130488186612ff5565b945060018216600081146130635760018114613078576130ab565b60ff19831686528115158202860193506130ab565b61308185612c3f565b60005b838110156130a357815481890152600182019150602081019050613084565b838801955050505b50505092915050565b60006130c08286613000565b91506130cc8285613000565b91506130d88284613031565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613141602683612452565b915061314c826130e5565b604082019050919050565b6000602082019050818103600083015261317081613134565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006131ad601f83612452565b91506131b882613177565b602082019050919050565b600060208201905081810360008301526131dc816131a0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061320a826131e3565b61321481856131ee565b9350613224818560208601612463565b61322d8161248d565b840191505092915050565b600060808201905061324d600083018761258e565b61325a602083018661258e565b6132676040830185612624565b818103606083015261327981846131ff565b905095945050505050565b600081519050613293816123b8565b92915050565b6000602082840312156132af576132ae612382565b5b60006132bd84828501613284565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613300826124f9565b915061330b836124f9565b92508261331b5761331a6132c6565b5b828204905092915050565b6000613331826124f9565b915061333c836124f9565b925082820390508181111561335457613353612eec565b5b92915050565b6000613365826124f9565b9150613370836124f9565b9250826133805761337f6132c6565b5b828206905092915050565b6000613396826124f9565b91506133a1836124f9565b92508282019050808211156133b9576133b8612eec565b5b9291505056fea2646970667358221220ff09f5dce4026b1f69f8281f922139293c08f0eafa85db2b407a15d4b6159f4764736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde14610364578063c668286214610380578063c87b56dd1461039e578063da3ef23f146103ce578063e985e9c5146103ea578063f2fde38b1461041a5761014d565b806370a08231146102b6578063715018a6146102e6578063729ad39e146102f05780638da5cb5b1461030c57806395d89b411461032a578063a22cb465146103485761014d565b806323b872dd1161011557806323b872dd1461020a5780633ccfd60b1461022657806342842e0e1461023057806355f804b31461024c5780636352211e146102685780636c0360eb146102985761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c600480360381019061016791906123e4565b610436565b604051610179919061242c565b60405180910390f35b61018a610448565b60405161019791906124d7565b60405180910390f35b6101ba60048036038101906101b5919061252f565b6104da565b6040516101c7919061259d565b60405180910390f35b6101ea60048036038101906101e591906125e4565b610556565b005b6101f4610660565b6040516102019190612633565b60405180910390f35b610224600480360381019061021f919061264e565b610677565b005b61022e610687565b005b61024a6004803603810190610245919061264e565b610793565b005b610266600480360381019061026191906127d6565b6107b3565b005b610282600480360381019061027d919061252f565b610842565b60405161028f919061259d565b60405180910390f35b6102a0610858565b6040516102ad91906124d7565b60405180910390f35b6102d060048036038101906102cb919061281f565b6108e6565b6040516102dd9190612633565b60405180910390f35b6102ee6109b5565b005b61030a60048036038101906103059190612914565b610a3d565b005b610314610b13565b604051610321919061259d565b60405180910390f35b610332610b3d565b60405161033f91906124d7565b60405180910390f35b610362600480360381019061035d9190612989565b610bcf565b005b61037e60048036038101906103799190612a6a565b610d46565b005b610388610dc2565b60405161039591906124d7565b60405180910390f35b6103b860048036038101906103b3919061252f565b610e50565b6040516103c591906124d7565b60405180910390f35b6103e860048036038101906103e391906127d6565b610efa565b005b61040460048036038101906103ff9190612aed565b610f89565b604051610411919061242c565b60405180910390f35b610434600480360381019061042f919061281f565b61101d565b005b600061044182611114565b9050919050565b60606002805461045790612b5c565b80601f016020809104026020016040519081016040528092919081815260200182805461048390612b5c565b80156104d05780601f106104a5576101008083540402835291602001916104d0565b820191906000526020600020905b8154815290600101906020018083116104b357829003601f168201915b5050505050905090565b60006104e5826111f6565b61051b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061056182610842565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105c8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105e7611244565b73ffffffffffffffffffffffffffffffffffffffff1614158015610619575061061781610612611244565b610f89565b155b15610650576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61065b83838361124c565b505050565b600061066a6112fe565b6001546000540303905090565b610682838383611303565b505050565b61068f611244565b73ffffffffffffffffffffffffffffffffffffffff166106ad610b13565b73ffffffffffffffffffffffffffffffffffffffff1614610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa90612bd9565b60405180910390fd5b61070b6117f2565b6000610715610b13565b73ffffffffffffffffffffffffffffffffffffffff164760405161073890612c2a565b60006040518083038185875af1925050503d8060008114610775576040519150601f19603f3d011682016040523d82523d6000602084013e61077a565b606091505b505090508061078857600080fd5b50610791611841565b565b6107ae83838360405180602001604052806000815250610d46565b505050565b6107bb611244565b73ffffffffffffffffffffffffffffffffffffffff166107d9610b13565b73ffffffffffffffffffffffffffffffffffffffff161461082f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082690612bd9565b60405180910390fd5b80600a908161083e9190612deb565b5050565b600061084d8261184b565b600001519050919050565b600a805461086590612b5c565b80601f016020809104026020016040519081016040528092919081815260200182805461089190612b5c565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361094d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6109bd611244565b73ffffffffffffffffffffffffffffffffffffffff166109db610b13565b73ffffffffffffffffffffffffffffffffffffffff1614610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2890612bd9565b60405180910390fd5b610a3b6000611ada565b565b610a45611244565b73ffffffffffffffffffffffffffffffffffffffff16610a63610b13565b73ffffffffffffffffffffffffffffffffffffffff1614610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab090612bd9565b60405180910390fd5b60005b8151811015610b0f57610afc828281518110610adb57610ada612ebd565b5b60200260200101516001604051806020016040528060008152506000611ba0565b8080610b0790612f1b565b915050610abc565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610b4c90612b5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7890612b5c565b8015610bc55780601f10610b9a57610100808354040283529160200191610bc5565b820191906000526020600020905b815481529060010190602001808311610ba857829003601f168201915b5050505050905090565b610bd7611244565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c3b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610c48611244565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610cf5611244565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d3a919061242c565b60405180910390a35050565b610d51848484611303565b610d708373ffffffffffffffffffffffffffffffffffffffff16611f6a565b8015610d855750610d8384848484611f7d565b155b15610dbc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b8054610dcf90612b5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dfb90612b5c565b8015610e485780601f10610e1d57610100808354040283529160200191610e48565b820191906000526020600020905b815481529060010190602001808311610e2b57829003601f168201915b505050505081565b6060610e5b826111f6565b610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190612fd5565b60405180910390fd5b6000610ea46120cd565b90506000815111610ec45760405180602001604052806000815250610ef2565b80610ece8461215f565b600b604051602001610ee2939291906130b4565b6040516020818303038152906040525b915050919050565b610f02611244565b73ffffffffffffffffffffffffffffffffffffffff16610f20610b13565b73ffffffffffffffffffffffffffffffffffffffff1614610f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6d90612bd9565b60405180910390fd5b80600b9081610f859190612deb565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611025611244565b73ffffffffffffffffffffffffffffffffffffffff16611043610b13565b73ffffffffffffffffffffffffffffffffffffffff1614611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090612bd9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff90613157565b60405180910390fd5b61111181611ada565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806111df57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806111ef57506111ee826122bf565b5b9050919050565b6000816112016112fe565b11158015611210575060005482105b801561123d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061130e8261184b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611335611244565b73ffffffffffffffffffffffffffffffffffffffff16148061136857506113678260000151611362611244565b610f89565b5b806113ad5750611376611244565b73ffffffffffffffffffffffffffffffffffffffff16611395846104da565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806113e6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461144f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114b5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114c28585856001612329565b6114d2600084846000015161124c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611782576000548110156117815782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117eb858585600161232f565b5050505050565b600260095403611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e906131c3565b60405180910390fd5b6002600981905550565b6001600981905550565b611853612335565b6000829050806118616112fe565b11158015611870575060005481105b15611aa3576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611aa157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611985578092505050611ad5565b5b600115611aa057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a9b578092505050611ad5565b611986565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c0c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403611c46576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c536000868387612329565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015611e1d5750611e1c8773ffffffffffffffffffffffffffffffffffffffff16611f6a565b5b15611ee2575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e926000888480600101955088611f7d565b611ec8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203611e23578260005414611edd57600080fd5b611f4d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203611ee3575b816000819055505050611f63600086838761232f565b5050505050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fa3611244565b8786866040518563ffffffff1660e01b8152600401611fc59493929190613238565b6020604051808303816000875af192505050801561200157506040513d601f19601f82011682018060405250810190611ffe9190613299565b60015b61207a573d8060008114612031576040519150601f19603f3d011682016040523d82523d6000602084013e612036565b606091505b506000815103612072576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546120dc90612b5c565b80601f016020809104026020016040519081016040528092919081815260200182805461210890612b5c565b80156121555780601f1061212a57610100808354040283529160200191612155565b820191906000526020600020905b81548152906001019060200180831161213857829003601f168201915b5050505050905090565b6060600082036121a6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122ba565b600082905060005b600082146121d85780806121c190612f1b565b915050600a826121d191906132f5565b91506121ae565b60008167ffffffffffffffff8111156121f4576121f36126ab565b5b6040519080825280601f01601f1916602001820160405280156122265781602001600182028036833780820191505090505b5090505b600085146122b35760018261223f9190613326565b9150600a8561224e919061335a565b603061225a919061338b565b60f81b8183815181106122705761226f612ebd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122ac91906132f5565b945061222a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123c18161238c565b81146123cc57600080fd5b50565b6000813590506123de816123b8565b92915050565b6000602082840312156123fa576123f9612382565b5b6000612408848285016123cf565b91505092915050565b60008115159050919050565b61242681612411565b82525050565b6000602082019050612441600083018461241d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612481578082015181840152602081019050612466565b60008484015250505050565b6000601f19601f8301169050919050565b60006124a982612447565b6124b38185612452565b93506124c3818560208601612463565b6124cc8161248d565b840191505092915050565b600060208201905081810360008301526124f1818461249e565b905092915050565b6000819050919050565b61250c816124f9565b811461251757600080fd5b50565b60008135905061252981612503565b92915050565b60006020828403121561254557612544612382565b5b60006125538482850161251a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125878261255c565b9050919050565b6125978161257c565b82525050565b60006020820190506125b2600083018461258e565b92915050565b6125c18161257c565b81146125cc57600080fd5b50565b6000813590506125de816125b8565b92915050565b600080604083850312156125fb576125fa612382565b5b6000612609858286016125cf565b925050602061261a8582860161251a565b9150509250929050565b61262d816124f9565b82525050565b60006020820190506126486000830184612624565b92915050565b60008060006060848603121561266757612666612382565b5b6000612675868287016125cf565b9350506020612686868287016125cf565b92505060406126978682870161251a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126e38261248d565b810181811067ffffffffffffffff82111715612702576127016126ab565b5b80604052505050565b6000612715612378565b905061272182826126da565b919050565b600067ffffffffffffffff821115612741576127406126ab565b5b61274a8261248d565b9050602081019050919050565b82818337600083830152505050565b600061277961277484612726565b61270b565b905082815260208101848484011115612795576127946126a6565b5b6127a0848285612757565b509392505050565b600082601f8301126127bd576127bc6126a1565b5b81356127cd848260208601612766565b91505092915050565b6000602082840312156127ec576127eb612382565b5b600082013567ffffffffffffffff81111561280a57612809612387565b5b612816848285016127a8565b91505092915050565b60006020828403121561283557612834612382565b5b6000612843848285016125cf565b91505092915050565b600067ffffffffffffffff821115612867576128666126ab565b5b602082029050602081019050919050565b600080fd5b600061289061288b8461284c565b61270b565b905080838252602082019050602084028301858111156128b3576128b2612878565b5b835b818110156128dc57806128c888826125cf565b8452602084019350506020810190506128b5565b5050509392505050565b600082601f8301126128fb576128fa6126a1565b5b813561290b84826020860161287d565b91505092915050565b60006020828403121561292a57612929612382565b5b600082013567ffffffffffffffff81111561294857612947612387565b5b612954848285016128e6565b91505092915050565b61296681612411565b811461297157600080fd5b50565b6000813590506129838161295d565b92915050565b600080604083850312156129a05761299f612382565b5b60006129ae858286016125cf565b92505060206129bf85828601612974565b9150509250929050565b600067ffffffffffffffff8211156129e4576129e36126ab565b5b6129ed8261248d565b9050602081019050919050565b6000612a0d612a08846129c9565b61270b565b905082815260208101848484011115612a2957612a286126a6565b5b612a34848285612757565b509392505050565b600082601f830112612a5157612a506126a1565b5b8135612a618482602086016129fa565b91505092915050565b60008060008060808587031215612a8457612a83612382565b5b6000612a92878288016125cf565b9450506020612aa3878288016125cf565b9350506040612ab48782880161251a565b925050606085013567ffffffffffffffff811115612ad557612ad4612387565b5b612ae187828801612a3c565b91505092959194509250565b60008060408385031215612b0457612b03612382565b5b6000612b12858286016125cf565b9250506020612b23858286016125cf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b7457607f821691505b602082108103612b8757612b86612b2d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bc3602083612452565b9150612bce82612b8d565b602082019050919050565b60006020820190508181036000830152612bf281612bb6565b9050919050565b600081905092915050565b50565b6000612c14600083612bf9565b9150612c1f82612c04565b600082019050919050565b6000612c3582612c07565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ca17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612c64565b612cab8683612c64565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612ce8612ce3612cde846124f9565b612cc3565b6124f9565b9050919050565b6000819050919050565b612d0283612ccd565b612d16612d0e82612cef565b848454612c71565b825550505050565b600090565b612d2b612d1e565b612d36818484612cf9565b505050565b5b81811015612d5a57612d4f600082612d23565b600181019050612d3c565b5050565b601f821115612d9f57612d7081612c3f565b612d7984612c54565b81016020851015612d88578190505b612d9c612d9485612c54565b830182612d3b565b50505b505050565b600082821c905092915050565b6000612dc260001984600802612da4565b1980831691505092915050565b6000612ddb8383612db1565b9150826002028217905092915050565b612df482612447565b67ffffffffffffffff811115612e0d57612e0c6126ab565b5b612e178254612b5c565b612e22828285612d5e565b600060209050601f831160018114612e555760008415612e43578287015190505b612e4d8582612dcf565b865550612eb5565b601f198416612e6386612c3f565b60005b82811015612e8b57848901518255600182019150602085019450602081019050612e66565b86831015612ea85784890151612ea4601f891682612db1565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f26826124f9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f5857612f57612eec565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612fbf602f83612452565b9150612fca82612f63565b604082019050919050565b60006020820190508181036000830152612fee81612fb2565b9050919050565b600081905092915050565b600061300b82612447565b6130158185612ff5565b9350613025818560208601612463565b80840191505092915050565b6000815461303e81612b5c565b6130488186612ff5565b945060018216600081146130635760018114613078576130ab565b60ff19831686528115158202860193506130ab565b61308185612c3f565b60005b838110156130a357815481890152600182019150602081019050613084565b838801955050505b50505092915050565b60006130c08286613000565b91506130cc8285613000565b91506130d88284613031565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613141602683612452565b915061314c826130e5565b604082019050919050565b6000602082019050818103600083015261317081613134565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006131ad601f83612452565b91506131b882613177565b602082019050919050565b600060208201905081810360008301526131dc816131a0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061320a826131e3565b61321481856131ee565b9350613224818560208601612463565b61322d8161248d565b840191505092915050565b600060808201905061324d600083018761258e565b61325a602083018661258e565b6132676040830185612624565b818103606083015261327981846131ff565b905095945050505050565b600081519050613293816123b8565b92915050565b6000602082840312156132af576132ae612382565b5b60006132bd84828501613284565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613300826124f9565b915061330b836124f9565b92508261331b5761331a6132c6565b5b828204905092915050565b6000613331826124f9565b915061333c836124f9565b925082820390508181111561335457613353612eec565b5b92915050565b6000613365826124f9565b9150613370836124f9565b9250826133805761337f6132c6565b5b828206905092915050565b6000613396826124f9565b91506133a1836124f9565b92508282019050808211156133b9576133b8612eec565b5b9291505056fea2646970667358221220ff09f5dce4026b1f69f8281f922139293c08f0eafa85db2b407a15d4b6159f4764736f6c63430008110033
Deployed Bytecode Sourcemap
54664:1403:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55908:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40514:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42017:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41580:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36378:303;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42874:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55752:150;;;:::i;:::-;;43115:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55524:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40323:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54755:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37498:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14670:103;;;:::i;:::-;;54883:159;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14019:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40683:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42293:279;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43371:369;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54781:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55048:362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55628:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42643:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14928:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55908:154;56002:4;56022:36;56046:11;56022:23;:36::i;:::-;56015:43;;55908:154;;;:::o;40514:100::-;40568:13;40601:5;40594:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40514:100;:::o;42017:204::-;42085:7;42110:16;42118:7;42110;:16::i;:::-;42105:64;;42135:34;;;;;;;;;;;;;;42105:64;42189:15;:24;42205:7;42189:24;;;;;;;;;;;;;;;;;;;;;42182:31;;42017:204;;;:::o;41580:371::-;41653:13;41669:24;41685:7;41669:15;:24::i;:::-;41653:40;;41714:5;41708:11;;:2;:11;;;41704:48;;41728:24;;;;;;;;;;;;;;41704:48;41785:5;41769:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;41795:37;41812:5;41819:12;:10;:12::i;:::-;41795:16;:37::i;:::-;41794:38;41769:63;41765:138;;;41856:35;;;;;;;;;;;;;;41765:138;41915:28;41924:2;41928:7;41937:5;41915:8;:28::i;:::-;41642:309;41580:371;;:::o;36378:303::-;36422:7;36647:15;:13;:15::i;:::-;36632:12;;36616:13;;:28;:46;36609:53;;36378:303;:::o;42874:170::-;43008:28;43018:4;43024:2;43028:7;43008:9;:28::i;:::-;42874:170;;;:::o;55752:150::-;14250:12;:10;:12::i;:::-;14239:23;;:7;:5;:7::i;:::-;:23;;;14231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9364:21:::1;:19;:21::i;:::-;55810:7:::2;55831;:5;:7::i;:::-;55823:21;;55852;55823:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55809:69;;;55893:2;55885:11;;;::::0;::::2;;55802:100;9408:20:::1;:18;:20::i;:::-;55752:150::o:0;43115:185::-;43253:39;43270:4;43276:2;43280:7;43253:39;;;;;;;;;;;;:16;:39::i;:::-;43115:185;;;:::o;55524:98::-;14250:12;:10;:12::i;:::-;14239:23;;:7;:5;:7::i;:::-;:23;;;14231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55605:11:::1;55595:7;:21;;;;;;:::i;:::-;;55524:98:::0;:::o;40323:124::-;40387:7;40414:20;40426:7;40414:11;:20::i;:::-;:25;;;40407:32;;40323:124;;;:::o;54755:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37498:206::-;37562:7;37603:1;37586:19;;:5;:19;;;37582:60;;37614:28;;;;;;;;;;;;;;37582:60;37668:12;:19;37681:5;37668:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37660:36;;37653:43;;37498:206;;;:::o;14670:103::-;14250:12;:10;:12::i;:::-;14239:23;;:7;:5;:7::i;:::-;:23;;;14231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14735:30:::1;14762:1;14735:18;:30::i;:::-;14670:103::o:0;54883:159::-;14250:12;:10;:12::i;:::-;14239:23;;:7;:5;:7::i;:::-;:23;;;14231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54951:9:::1;54946:91;54970:5;:12;54966:1;:16;54946:91;;;55000:29;55006:5;55012:1;55006:8;;;;;;;;:::i;:::-;;;;;;;;55016:1;55000:29;;;;;;;;;;;::::0;55023:5:::1;55000;:29::i;:::-;54984:3;;;;;:::i;:::-;;;;54946:91;;;;54883:159:::0;:::o;14019:87::-;14065:7;14092:6;;;;;;;;;;;14085:13;;14019:87;:::o;40683:104::-;40739:13;40772:7;40765:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40683:104;:::o;42293:279::-;42396:12;:10;:12::i;:::-;42384:24;;:8;:24;;;42380:54;;42417:17;;;;;;;;;;;;;;42380:54;42492:8;42447:18;:32;42466:12;:10;:12::i;:::-;42447:32;;;;;;;;;;;;;;;:42;42480:8;42447:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;42545:8;42516:48;;42531:12;:10;:12::i;:::-;42516:48;;;42555:8;42516:48;;;;;;:::i;:::-;;;;;;;;42293:279;;:::o;43371:369::-;43538:28;43548:4;43554:2;43558:7;43538:9;:28::i;:::-;43581:15;:2;:13;;;:15::i;:::-;:76;;;;;43601:56;43632:4;43638:2;43642:7;43651:5;43601:30;:56::i;:::-;43600:57;43581:76;43577:156;;;43681:40;;;;;;;;;;;;;;43577:156;43371:369;;;;:::o;54781:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55048:362::-;55123:13;55153:17;55161:8;55153:7;:17::i;:::-;55144:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;55232:28;55263:10;:8;:10::i;:::-;55232:41;;55318:1;55293:14;55287:28;:32;:117;;;;;;;;;;;;;;;;;55346:14;55362:19;:8;:17;:19::i;:::-;55383:13;55329:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55287:117;55280:124;;;55048:362;;;:::o;55628:116::-;14250:12;:10;:12::i;:::-;14239:23;;:7;:5;:7::i;:::-;:23;;;14231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55724:14:::1;55708:13;:30;;;;;;:::i;:::-;;55628:116:::0;:::o;42643:164::-;42740:4;42764:18;:25;42783:5;42764:25;;;;;;;;;;;;;;;:35;42790:8;42764:35;;;;;;;;;;;;;;;;;;;;;;;;;42757:42;;42643:164;;;;:::o;14928:201::-;14250:12;:10;:12::i;:::-;14239:23;;:7;:5;:7::i;:::-;:23;;;14231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15037:1:::1;15017:22;;:8;:22;;::::0;15009:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15093:28;15112:8;15093:18;:28::i;:::-;14928:201:::0;:::o;37129:305::-;37231:4;37283:25;37268:40;;;:11;:40;;;;:105;;;;37340:33;37325:48;;;:11;:48;;;;37268:105;:158;;;;37390:36;37414:11;37390:23;:36::i;:::-;37268:158;37248:178;;37129:305;;;:::o;43995:187::-;44052:4;44095:7;44076:15;:13;:15::i;:::-;:26;;:53;;;;;44116:13;;44106:7;:23;44076:53;:98;;;;;44147:11;:20;44159:7;44147:20;;;;;;;;;;;:27;;;;;;;;;;;;44146:28;44076:98;44069:105;;43995:187;;;:::o;12743:98::-;12796:7;12823:10;12816:17;;12743:98;:::o;51606:196::-;51748:2;51721:15;:24;51737:7;51721:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51786:7;51782:2;51766:28;;51775:5;51766:28;;;;;;;;;;;;51606:196;;;:::o;36102:92::-;36158:7;36102:92;:::o;47108:2112::-;47223:35;47261:20;47273:7;47261:11;:20::i;:::-;47223:58;;47294:22;47336:13;:18;;;47320:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;47371:50;47388:13;:18;;;47408:12;:10;:12::i;:::-;47371:16;:50::i;:::-;47320:101;:154;;;;47462:12;:10;:12::i;:::-;47438:36;;:20;47450:7;47438:11;:20::i;:::-;:36;;;47320:154;47294:181;;47493:17;47488:66;;47519:35;;;;;;;;;;;;;;47488:66;47591:4;47569:26;;:13;:18;;;:26;;;47565:67;;47604:28;;;;;;;;;;;;;;47565:67;47661:1;47647:16;;:2;:16;;;47643:52;;47672:23;;;;;;;;;;;;;;47643:52;47708:43;47730:4;47736:2;47740:7;47749:1;47708:21;:43::i;:::-;47816:49;47833:1;47837:7;47846:13;:18;;;47816:8;:49::i;:::-;48191:1;48161:12;:18;48174:4;48161:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48235:1;48207:12;:16;48220:2;48207:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48281:2;48253:11;:20;48265:7;48253:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;48343:15;48298:11;:20;48310:7;48298:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;48611:19;48643:1;48633:7;:11;48611:33;;48704:1;48663:43;;:11;:24;48675:11;48663:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;48659:445;;48888:13;;48874:11;:27;48870:219;;;48958:13;:18;;;48926:11;:24;48938:11;48926:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;49041:13;:28;;;48999:11;:24;49011:11;48999:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;48870:219;48659:445;48136:979;49151:7;49147:2;49132:27;;49141:4;49132:27;;;;;;;;;;;;49170:42;49191:4;49197:2;49201:7;49210:1;49170:20;:42::i;:::-;47212:2008;;47108:2112;;;:::o;9444:293::-;8846:1;9578:7;;:19;9570:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;8846:1;9711:7;:18;;;;9444:293::o;9745:213::-;8802:1;9928:7;:22;;;;9745:213::o;39153:1108::-;39214:21;;:::i;:::-;39248:12;39263:7;39248:22;;39331:4;39312:15;:13;:15::i;:::-;:23;;:47;;;;;39346:13;;39339:4;:20;39312:47;39308:886;;;39380:31;39414:11;:17;39426:4;39414:17;;;;;;;;;;;39380:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39455:9;:16;;;39450:729;;39526:1;39500:28;;:9;:14;;;:28;;;39496:101;;39564:9;39557:16;;;;;;39496:101;39899:261;39906:4;39899:261;;;39939:6;;;;;;;;39984:11;:17;39996:4;39984:17;;;;;;;;;;;39972:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40058:1;40032:28;;:9;:14;;;:28;;;40028:109;;40100:9;40093:16;;;;;;40028:109;39899:261;;;39450:729;39361:833;39308:886;40222:31;;;;;;;;;;;;;;39153:1108;;;;:::o;15289:191::-;15363:16;15382:6;;;;;;;;;;;15363:25;;15408:8;15399:6;;:17;;;;;;;;;;;;;;;;;;15463:8;15432:40;;15453:8;15432:40;;;;;;;;;;;;15352:128;15289:191;:::o;45079:1775::-;45218:20;45241:13;;45218:36;;45283:1;45269:16;;:2;:16;;;45265:48;;45294:19;;;;;;;;;;;;;;45265:48;45340:1;45328:8;:13;45324:44;;45350:18;;;;;;;;;;;;;;45324:44;45381:61;45411:1;45415:2;45419:12;45433:8;45381:21;:61::i;:::-;45754:8;45719:12;:16;45732:2;45719:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45818:8;45778:12;:16;45791:2;45778:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45877:2;45844:11;:25;45856:12;45844:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;45944:15;45894:11;:25;45906:12;45894:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;45977:20;46000:12;45977:35;;46027:11;46056:8;46041:12;:23;46027:37;;46085:4;:23;;;;;46093:15;:2;:13;;;:15::i;:::-;46085:23;46081:641;;;46129:314;46185:12;46181:2;46160:38;;46177:1;46160:38;;;;;;;;;;;;46226:69;46265:1;46269:2;46273:14;;;;;;46289:5;46226:30;:69::i;:::-;46221:174;;46331:40;;;;;;;;;;;;;;46221:174;46438:3;46422:12;:19;46129:314;;46524:12;46507:13;;:29;46503:43;;46538:8;;;46503:43;46081:641;;;46587:120;46643:14;;;;;;46639:2;46618:40;;46635:1;46618:40;;;;;;;;;;;;46702:3;46686:12;:19;46587:120;;46081:641;46752:12;46736:13;:28;;;;45694:1082;;46786:60;46815:1;46819:2;46823:12;46837:8;46786:20;:60::i;:::-;45207:1647;45079:1775;;;;:::o;16307:387::-;16367:4;16575:12;16642:7;16630:20;16622:28;;16685:1;16678:4;:8;16671:15;;;16307:387;;;:::o;52294:667::-;52457:4;52494:2;52478:36;;;52515:12;:10;:12::i;:::-;52529:4;52535:7;52544:5;52478:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52474:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52729:1;52712:6;:13;:18;52708:235;;52758:40;;;;;;;;;;;;;;52708:235;52901:6;52895:13;52886:6;52882:2;52878:15;52871:38;52474:480;52607:45;;;52597:55;;;:6;:55;;;;52590:62;;;52294:667;;;;;;:::o;55416:102::-;55476:13;55505:7;55498:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55416:102;:::o;10305:723::-;10361:13;10591:1;10582:5;:10;10578:53;;10609:10;;;;;;;;;;;;;;;;;;;;;10578:53;10641:12;10656:5;10641:20;;10672:14;10697:78;10712:1;10704:4;:9;10697:78;;10730:8;;;;;:::i;:::-;;;;10761:2;10753:10;;;;;:::i;:::-;;;10697:78;;;10785:19;10817:6;10807:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10785:39;;10835:154;10851:1;10842:5;:10;10835:154;;10879:1;10869:11;;;;;:::i;:::-;;;10946:2;10938:5;:10;;;;:::i;:::-;10925:2;:24;;;;:::i;:::-;10912:39;;10895:6;10902;10895:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;10975:2;10966:11;;;;;:::i;:::-;;;10835:154;;;11013:6;10999:21;;;;;10305:723;;;;:::o;1738:157::-;1823:4;1862:25;1847:40;;;:11;:40;;;;1840:47;;1738:157;;;:::o;53609:159::-;;;;;:::o;54427:158::-;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:311::-;8905:4;8995:18;8987:6;8984:30;8981:56;;;9017:18;;:::i;:::-;8981:56;9067:4;9059:6;9055:17;9047:25;;9127:4;9121;9117:15;9109:23;;8828:311;;;:::o;9145:117::-;9254:1;9251;9244:12;9285:710;9381:5;9406:81;9422:64;9479:6;9422:64;:::i;:::-;9406:81;:::i;:::-;9397:90;;9507:5;9536:6;9529:5;9522:21;9570:4;9563:5;9559:16;9552:23;;9623:4;9615:6;9611:17;9603:6;9599:30;9652:3;9644:6;9641:15;9638:122;;;9671:79;;:::i;:::-;9638:122;9786:6;9769:220;9803:6;9798:3;9795:15;9769:220;;;9878:3;9907:37;9940:3;9928:10;9907:37;:::i;:::-;9902:3;9895:50;9974:4;9969:3;9965:14;9958:21;;9845:144;9829:4;9824:3;9820:14;9813:21;;9769:220;;;9773:21;9387:608;;9285:710;;;;;:::o;10018:370::-;10089:5;10138:3;10131:4;10123:6;10119:17;10115:27;10105:122;;10146:79;;:::i;:::-;10105:122;10263:6;10250:20;10288:94;10378:3;10370:6;10363:4;10355:6;10351:17;10288:94;:::i;:::-;10279:103;;10095:293;10018:370;;;;:::o;10394:539::-;10478:6;10527:2;10515:9;10506:7;10502:23;10498:32;10495:119;;;10533:79;;:::i;:::-;10495:119;10681:1;10670:9;10666:17;10653:31;10711:18;10703:6;10700:30;10697:117;;;10733:79;;:::i;:::-;10697:117;10838:78;10908:7;10899:6;10888:9;10884:22;10838:78;:::i;:::-;10828:88;;10624:302;10394:539;;;;:::o;10939:116::-;11009:21;11024:5;11009:21;:::i;:::-;11002:5;10999:32;10989:60;;11045:1;11042;11035:12;10989:60;10939:116;:::o;11061:133::-;11104:5;11142:6;11129:20;11120:29;;11158:30;11182:5;11158:30;:::i;:::-;11061:133;;;;:::o;11200:468::-;11265:6;11273;11322:2;11310:9;11301:7;11297:23;11293:32;11290:119;;;11328:79;;:::i;:::-;11290:119;11448:1;11473:53;11518:7;11509:6;11498:9;11494:22;11473:53;:::i;:::-;11463:63;;11419:117;11575:2;11601:50;11643:7;11634:6;11623:9;11619:22;11601:50;:::i;:::-;11591:60;;11546:115;11200:468;;;;;:::o;11674:307::-;11735:4;11825:18;11817:6;11814:30;11811:56;;;11847:18;;:::i;:::-;11811:56;11885:29;11907:6;11885:29;:::i;:::-;11877:37;;11969:4;11963;11959:15;11951:23;;11674:307;;;:::o;11987:423::-;12064:5;12089:65;12105:48;12146:6;12105:48;:::i;:::-;12089:65;:::i;:::-;12080:74;;12177:6;12170:5;12163:21;12215:4;12208:5;12204:16;12253:3;12244:6;12239:3;12235:16;12232:25;12229:112;;;12260:79;;:::i;:::-;12229:112;12350:54;12397:6;12392:3;12387;12350:54;:::i;:::-;12070:340;11987:423;;;;;:::o;12429:338::-;12484:5;12533:3;12526:4;12518:6;12514:17;12510:27;12500:122;;12541:79;;:::i;:::-;12500:122;12658:6;12645:20;12683:78;12757:3;12749:6;12742:4;12734:6;12730:17;12683:78;:::i;:::-;12674:87;;12490:277;12429:338;;;;:::o;12773:943::-;12868:6;12876;12884;12892;12941:3;12929:9;12920:7;12916:23;12912:33;12909:120;;;12948:79;;:::i;:::-;12909:120;13068:1;13093:53;13138:7;13129:6;13118:9;13114:22;13093:53;:::i;:::-;13083:63;;13039:117;13195:2;13221:53;13266:7;13257:6;13246:9;13242:22;13221:53;:::i;:::-;13211:63;;13166:118;13323:2;13349:53;13394:7;13385:6;13374:9;13370:22;13349:53;:::i;:::-;13339:63;;13294:118;13479:2;13468:9;13464:18;13451:32;13510:18;13502:6;13499:30;13496:117;;;13532:79;;:::i;:::-;13496:117;13637:62;13691:7;13682:6;13671:9;13667:22;13637:62;:::i;:::-;13627:72;;13422:287;12773:943;;;;;;;:::o;13722:474::-;13790:6;13798;13847:2;13835:9;13826:7;13822:23;13818:32;13815:119;;;13853:79;;:::i;:::-;13815:119;13973:1;13998:53;14043:7;14034:6;14023:9;14019:22;13998:53;:::i;:::-;13988:63;;13944:117;14100:2;14126:53;14171:7;14162:6;14151:9;14147:22;14126:53;:::i;:::-;14116:63;;14071:118;13722:474;;;;;:::o;14202:180::-;14250:77;14247:1;14240:88;14347:4;14344:1;14337:15;14371:4;14368:1;14361:15;14388:320;14432:6;14469:1;14463:4;14459:12;14449:22;;14516:1;14510:4;14506:12;14537:18;14527:81;;14593:4;14585:6;14581:17;14571:27;;14527:81;14655:2;14647:6;14644:14;14624:18;14621:38;14618:84;;14674:18;;:::i;:::-;14618:84;14439:269;14388:320;;;:::o;14714:182::-;14854:34;14850:1;14842:6;14838:14;14831:58;14714:182;:::o;14902:366::-;15044:3;15065:67;15129:2;15124:3;15065:67;:::i;:::-;15058:74;;15141:93;15230:3;15141:93;:::i;:::-;15259:2;15254:3;15250:12;15243:19;;14902:366;;;:::o;15274:419::-;15440:4;15478:2;15467:9;15463:18;15455:26;;15527:9;15521:4;15517:20;15513:1;15502:9;15498:17;15491:47;15555:131;15681:4;15555:131;:::i;:::-;15547:139;;15274:419;;;:::o;15699:147::-;15800:11;15837:3;15822:18;;15699:147;;;;:::o;15852:114::-;;:::o;15972:398::-;16131:3;16152:83;16233:1;16228:3;16152:83;:::i;:::-;16145:90;;16244:93;16333:3;16244:93;:::i;:::-;16362:1;16357:3;16353:11;16346:18;;15972:398;;;:::o;16376:379::-;16560:3;16582:147;16725:3;16582:147;:::i;:::-;16575:154;;16746:3;16739:10;;16376:379;;;:::o;16761:141::-;16810:4;16833:3;16825:11;;16856:3;16853:1;16846:14;16890:4;16887:1;16877:18;16869:26;;16761:141;;;:::o;16908:93::-;16945:6;16992:2;16987;16980:5;16976:14;16972:23;16962:33;;16908:93;;;:::o;17007:107::-;17051:8;17101:5;17095:4;17091:16;17070:37;;17007:107;;;;:::o;17120:393::-;17189:6;17239:1;17227:10;17223:18;17262:97;17292:66;17281:9;17262:97;:::i;:::-;17380:39;17410:8;17399:9;17380:39;:::i;:::-;17368:51;;17452:4;17448:9;17441:5;17437:21;17428:30;;17501:4;17491:8;17487:19;17480:5;17477:30;17467:40;;17196:317;;17120:393;;;;;:::o;17519:60::-;17547:3;17568:5;17561:12;;17519:60;;;:::o;17585:142::-;17635:9;17668:53;17686:34;17695:24;17713:5;17695:24;:::i;:::-;17686:34;:::i;:::-;17668:53;:::i;:::-;17655:66;;17585:142;;;:::o;17733:75::-;17776:3;17797:5;17790:12;;17733:75;;;:::o;17814:269::-;17924:39;17955:7;17924:39;:::i;:::-;17985:91;18034:41;18058:16;18034:41;:::i;:::-;18026:6;18019:4;18013:11;17985:91;:::i;:::-;17979:4;17972:105;17890:193;17814:269;;;:::o;18089:73::-;18134:3;18089:73;:::o;18168:189::-;18245:32;;:::i;:::-;18286:65;18344:6;18336;18330:4;18286:65;:::i;:::-;18221:136;18168:189;;:::o;18363:186::-;18423:120;18440:3;18433:5;18430:14;18423:120;;;18494:39;18531:1;18524:5;18494:39;:::i;:::-;18467:1;18460:5;18456:13;18447:22;;18423:120;;;18363:186;;:::o;18555:543::-;18656:2;18651:3;18648:11;18645:446;;;18690:38;18722:5;18690:38;:::i;:::-;18774:29;18792:10;18774:29;:::i;:::-;18764:8;18760:44;18957:2;18945:10;18942:18;18939:49;;;18978:8;18963:23;;18939:49;19001:80;19057:22;19075:3;19057:22;:::i;:::-;19047:8;19043:37;19030:11;19001:80;:::i;:::-;18660:431;;18645:446;18555:543;;;:::o;19104:117::-;19158:8;19208:5;19202:4;19198:16;19177:37;;19104:117;;;;:::o;19227:169::-;19271:6;19304:51;19352:1;19348:6;19340:5;19337:1;19333:13;19304:51;:::i;:::-;19300:56;19385:4;19379;19375:15;19365:25;;19278:118;19227:169;;;;:::o;19401:295::-;19477:4;19623:29;19648:3;19642:4;19623:29;:::i;:::-;19615:37;;19685:3;19682:1;19678:11;19672:4;19669:21;19661:29;;19401:295;;;;:::o;19701:1395::-;19818:37;19851:3;19818:37;:::i;:::-;19920:18;19912:6;19909:30;19906:56;;;19942:18;;:::i;:::-;19906:56;19986:38;20018:4;20012:11;19986:38;:::i;:::-;20071:67;20131:6;20123;20117:4;20071:67;:::i;:::-;20165:1;20189:4;20176:17;;20221:2;20213:6;20210:14;20238:1;20233:618;;;;20895:1;20912:6;20909:77;;;20961:9;20956:3;20952:19;20946:26;20937:35;;20909:77;21012:67;21072:6;21065:5;21012:67;:::i;:::-;21006:4;20999:81;20868:222;20203:887;;20233:618;20285:4;20281:9;20273:6;20269:22;20319:37;20351:4;20319:37;:::i;:::-;20378:1;20392:208;20406:7;20403:1;20400:14;20392:208;;;20485:9;20480:3;20476:19;20470:26;20462:6;20455:42;20536:1;20528:6;20524:14;20514:24;;20583:2;20572:9;20568:18;20555:31;;20429:4;20426:1;20422:12;20417:17;;20392:208;;;20628:6;20619:7;20616:19;20613:179;;;20686:9;20681:3;20677:19;20671:26;20729:48;20771:4;20763:6;20759:17;20748:9;20729:48;:::i;:::-;20721:6;20714:64;20636:156;20613:179;20838:1;20834;20826:6;20822:14;20818:22;20812:4;20805:36;20240:611;;;20203:887;;19793:1303;;;19701:1395;;:::o;21102:180::-;21150:77;21147:1;21140:88;21247:4;21244:1;21237:15;21271:4;21268:1;21261:15;21288:180;21336:77;21333:1;21326:88;21433:4;21430:1;21423:15;21457:4;21454:1;21447:15;21474:233;21513:3;21536:24;21554:5;21536:24;:::i;:::-;21527:33;;21582:66;21575:5;21572:77;21569:103;;21652:18;;:::i;:::-;21569:103;21699:1;21692:5;21688:13;21681:20;;21474:233;;;:::o;21713:234::-;21853:34;21849:1;21841:6;21837:14;21830:58;21922:17;21917:2;21909:6;21905:15;21898:42;21713:234;:::o;21953:366::-;22095:3;22116:67;22180:2;22175:3;22116:67;:::i;:::-;22109:74;;22192:93;22281:3;22192:93;:::i;:::-;22310:2;22305:3;22301:12;22294:19;;21953:366;;;:::o;22325:419::-;22491:4;22529:2;22518:9;22514:18;22506:26;;22578:9;22572:4;22568:20;22564:1;22553:9;22549:17;22542:47;22606:131;22732:4;22606:131;:::i;:::-;22598:139;;22325:419;;;:::o;22750:148::-;22852:11;22889:3;22874:18;;22750:148;;;;:::o;22904:390::-;23010:3;23038:39;23071:5;23038:39;:::i;:::-;23093:89;23175:6;23170:3;23093:89;:::i;:::-;23086:96;;23191:65;23249:6;23244:3;23237:4;23230:5;23226:16;23191:65;:::i;:::-;23281:6;23276:3;23272:16;23265:23;;23014:280;22904:390;;;;:::o;23324:874::-;23427:3;23464:5;23458:12;23493:36;23519:9;23493:36;:::i;:::-;23545:89;23627:6;23622:3;23545:89;:::i;:::-;23538:96;;23665:1;23654:9;23650:17;23681:1;23676:166;;;;23856:1;23851:341;;;;23643:549;;23676:166;23760:4;23756:9;23745;23741:25;23736:3;23729:38;23822:6;23815:14;23808:22;23800:6;23796:35;23791:3;23787:45;23780:52;;23676:166;;23851:341;23918:38;23950:5;23918:38;:::i;:::-;23978:1;23992:154;24006:6;24003:1;24000:13;23992:154;;;24080:7;24074:14;24070:1;24065:3;24061:11;24054:35;24130:1;24121:7;24117:15;24106:26;;24028:4;24025:1;24021:12;24016:17;;23992:154;;;24175:6;24170:3;24166:16;24159:23;;23858:334;;23643:549;;23431:767;;23324:874;;;;:::o;24204:589::-;24429:3;24451:95;24542:3;24533:6;24451:95;:::i;:::-;24444:102;;24563:95;24654:3;24645:6;24563:95;:::i;:::-;24556:102;;24675:92;24763:3;24754:6;24675:92;:::i;:::-;24668:99;;24784:3;24777:10;;24204:589;;;;;;:::o;24799:225::-;24939:34;24935:1;24927:6;24923:14;24916:58;25008:8;25003:2;24995:6;24991:15;24984:33;24799:225;:::o;25030:366::-;25172:3;25193:67;25257:2;25252:3;25193:67;:::i;:::-;25186:74;;25269:93;25358:3;25269:93;:::i;:::-;25387:2;25382:3;25378:12;25371:19;;25030:366;;;:::o;25402:419::-;25568:4;25606:2;25595:9;25591:18;25583:26;;25655:9;25649:4;25645:20;25641:1;25630:9;25626:17;25619:47;25683:131;25809:4;25683:131;:::i;:::-;25675:139;;25402:419;;;:::o;25827:181::-;25967:33;25963:1;25955:6;25951:14;25944:57;25827:181;:::o;26014:366::-;26156:3;26177:67;26241:2;26236:3;26177:67;:::i;:::-;26170:74;;26253:93;26342:3;26253:93;:::i;:::-;26371:2;26366:3;26362:12;26355:19;;26014:366;;;:::o;26386:419::-;26552:4;26590:2;26579:9;26575:18;26567:26;;26639:9;26633:4;26629:20;26625:1;26614:9;26610:17;26603:47;26667:131;26793:4;26667:131;:::i;:::-;26659:139;;26386:419;;;:::o;26811:98::-;26862:6;26896:5;26890:12;26880:22;;26811:98;;;:::o;26915:168::-;26998:11;27032:6;27027:3;27020:19;27072:4;27067:3;27063:14;27048:29;;26915:168;;;;:::o;27089:373::-;27175:3;27203:38;27235:5;27203:38;:::i;:::-;27257:70;27320:6;27315:3;27257:70;:::i;:::-;27250:77;;27336:65;27394:6;27389:3;27382:4;27375:5;27371:16;27336:65;:::i;:::-;27426:29;27448:6;27426:29;:::i;:::-;27421:3;27417:39;27410:46;;27179:283;27089:373;;;;:::o;27468:640::-;27663:4;27701:3;27690:9;27686:19;27678:27;;27715:71;27783:1;27772:9;27768:17;27759:6;27715:71;:::i;:::-;27796:72;27864:2;27853:9;27849:18;27840:6;27796:72;:::i;:::-;27878;27946:2;27935:9;27931:18;27922:6;27878:72;:::i;:::-;27997:9;27991:4;27987:20;27982:2;27971:9;27967:18;27960:48;28025:76;28096:4;28087:6;28025:76;:::i;:::-;28017:84;;27468:640;;;;;;;:::o;28114:141::-;28170:5;28201:6;28195:13;28186:22;;28217:32;28243:5;28217:32;:::i;:::-;28114:141;;;;:::o;28261:349::-;28330:6;28379:2;28367:9;28358:7;28354:23;28350:32;28347:119;;;28385:79;;:::i;:::-;28347:119;28505:1;28530:63;28585:7;28576:6;28565:9;28561:22;28530:63;:::i;:::-;28520:73;;28476:127;28261:349;;;;:::o;28616:180::-;28664:77;28661:1;28654:88;28761:4;28758:1;28751:15;28785:4;28782:1;28775:15;28802:185;28842:1;28859:20;28877:1;28859:20;:::i;:::-;28854:25;;28893:20;28911:1;28893:20;:::i;:::-;28888:25;;28932:1;28922:35;;28937:18;;:::i;:::-;28922:35;28979:1;28976;28972:9;28967:14;;28802:185;;;;:::o;28993:194::-;29033:4;29053:20;29071:1;29053:20;:::i;:::-;29048:25;;29087:20;29105:1;29087:20;:::i;:::-;29082:25;;29131:1;29128;29124:9;29116:17;;29155:1;29149:4;29146:11;29143:37;;;29160:18;;:::i;:::-;29143:37;28993:194;;;;:::o;29193:176::-;29225:1;29242:20;29260:1;29242:20;:::i;:::-;29237:25;;29276:20;29294:1;29276:20;:::i;:::-;29271:25;;29315:1;29305:35;;29320:18;;:::i;:::-;29305:35;29361:1;29358;29354:9;29349:14;;29193:176;;;;:::o;29375:191::-;29415:3;29434:20;29452:1;29434:20;:::i;:::-;29429:25;;29468:20;29486:1;29468:20;:::i;:::-;29463:25;;29511:1;29508;29504:9;29497:16;;29532:3;29529:1;29526:10;29523:36;;;29539:18;;:::i;:::-;29523:36;29375:191;;;;:::o
Swarm Source
ipfs://ff09f5dce4026b1f69f8281f922139293c08f0eafa85db2b407a15d4b6159f47
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.