Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
100 GG
Holders
57
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
6 GGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GG
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-22 */ // File: SchlongSociety/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); 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; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (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() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @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: SchlongSociety/ERC721A.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } uint256 private currentIndex = 1; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // 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) private _ownerships; // Mapping owner address to address data mapping(address => uint128) private _balance; // 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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex-1; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_balance[owner]); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); _balance[to] += uint128(quantity); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _balance[from] -= 1; _balance[to] += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // 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: SchlongSociety/GoblinGirls.sol pragma solidity ^0.8.0; contract GG is Ownable, ERC721A, ReentrancyGuard { string _baseUri = "ipfs://Qmd4pK5w6jZmNmKwbXjBfud7Lm7zvckm8AcGanFGJHL5gM/"; mapping(address => bool) whitelisted; mapping(address => uint256) purchased; mapping(address => bool) goblinMinted; uint256 private freeMinted = 0; uint256 maxFree = 1000; uint256 public tokenPrice = 1 ether; bool public hasSaleStarted = false; IERC721A public goblinTown = IERC721A(0xbCe3781ae7Ca1a5e050Bd9C4c77369867eBc307e); constructor() ERC721A("Goblin Girls", "GG", 30, 100) { } function reserve(uint256 quantity) external onlyOwner { require(quantity + totalSupply() <= collectionSize, "GG: Not enough tokens left for minting"); _safeMint(msg.sender, quantity); } function mint(uint256 quantity) external payable { require(msg.value >= tokenPrice * quantity, "GG: Incorrect ETH"); require(hasSaleStarted, "GG: Cannot mint before sale has started"); require(quantity + totalSupply() <= collectionSize, "GG: Total supply exceeded"); require(purchased[msg.sender] + quantity <= 30, "GG: Can not purchase more than 30"); purchased[msg.sender] += quantity; _safeMint(msg.sender, quantity); } function mintFree() external payable { require(hasSaleStarted, "GG: Cannot mint before sale has started"); require(1 + totalSupply() <= collectionSize, "GG: Total supply exceeded"); require(freeMinted++ < maxFree, "GG: No more free Goblin Girls available"); if(goblinTown.balanceOf(msg.sender) > 0 && !goblinMinted[msg.sender]) { whitelisted[msg.sender] = true; } require(whitelisted[msg.sender] && !goblinMinted[msg.sender], "GG: User is not approved for free mint"); goblinMinted[msg.sender] = true; whitelisted[msg.sender] = false; _safeMint(msg.sender, 1); } function addToWl(address[] calldata addresses) external onlyOwner{ for(uint i=0; i<addresses.length; i++) { whitelisted[addresses[i]] = true; } } function _baseURI() internal view override returns (string memory) { return _baseUri; } function setBaseURI(string memory newBaseURI) external onlyOwner { _baseUri = newBaseURI; } function flipSaleState() external onlyOwner { hasSaleStarted = !hasSaleStarted; } function setPrice(uint256 newPrice) external onlyOwner { tokenPrice = newPrice; } function withdrawAll() external onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWl","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":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goblinTown","outputs":[{"internalType":"contract IERC721A","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"uint256","name":"quantity","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600180556000600855610120604052603660c08181529062002ded60e03980516200003391600a9160209091019062000243565b506000600e556103e8600f55670de0b6b3a7640000601055601180546001600160a81b03191674bce3781ae7ca1a5e050bd9c4c77369867ebc307e001790553480156200007f57600080fd5b506040518060400160405280600c81526020016b476f626c696e204769726c7360a01b81525060405180604001604052806002815260200161474760f01b815250601e6064620000de620000d8620001ef60201b60201c565b620001f3565b600081116200014b5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001ad5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000142565b8351620001c290600290602087019062000243565b508251620001d890600390602086019062000243565b5060a0919091526080525050600160095562000325565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200025190620002e9565b90600052602060002090601f016020900481019282620002755760008555620002c0565b82601f106200029057805160ff1916838001178555620002c0565b82800160010185558215620002c0579182015b82811115620002c0578251825591602001919060010190620002a3565b50620002ce929150620002d2565b5090565b5b80821115620002ce5760008155600101620002d3565b600181811c90821680620002fe57607f821691505b6020821081036200031f57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612a866200036760003960008181611cc501528181611cef01526121cb015260008181610e6601528181610ffa01526113d50152612a866000f3fe6080604052600436106101d85760003560e01c806370a082311161010257806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610513578063d7224ba014610533578063e985e9c514610549578063f2fde38b1461059257600080fd5b806395d89b41146104ab578063a0712d68146104c0578063a22cb465146104d3578063b88d4fde146104f357600080fd5b8063853828b6116100d1578063853828b6146104505780638ab53447146104655780638da5cb5b1461046d57806391b7f5ed1461048b57600080fd5b806370a08231146103e5578063715018a6146104055780637ff9b5961461041a578063819b25ba1461043057600080fd5b806323b872dd1161017a5780634f6ccce7116101495780634f6ccce71461036557806353439aa21461038557806355f804b3146103a55780636352211e146103c557600080fd5b806323b872dd146102f05780632f745c591461031057806334918dfd1461033057806342842e0e1461034557600080fd5b8063095ea7b3116101b6578063095ea7b31461026c5780630f6dc7a91461028e57806318160ddd146102b35780631c8b232d146102d657600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f836600461249f565b6105b2565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610683565b6040516102099190612514565b34801561024057600080fd5b5061025461024f366004612527565b610715565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c61028736600461255c565b6107b5565b005b34801561029a57600080fd5b506011546102549061010090046001600160a01b031681565b3480156102bf57600080fd5b506102c86108e7565b604051908152602001610209565b3480156102e257600080fd5b506011546101fd9060ff1681565b3480156102fc57600080fd5b5061028c61030b366004612586565b6108fc565b34801561031c57600080fd5b506102c861032b36600461255c565b610907565b34801561033c57600080fd5b5061028c610aa7565b34801561035157600080fd5b5061028c610360366004612586565b610b15565b34801561037157600080fd5b506102c8610380366004612527565b610b30565b34801561039157600080fd5b5061028c6103a03660046125c2565b610bb2565b3480156103b157600080fd5b5061028c6103c03660046126c3565b610c7e565b3480156103d157600080fd5b506102546103e0366004612527565b610cef565b3480156103f157600080fd5b506102c861040036600461270c565b610d01565b34801561041157600080fd5b5061028c610da4565b34801561042657600080fd5b506102c860105481565b34801561043c57600080fd5b5061028c61044b366004612527565b610e0a565b34801561045c57600080fd5b5061028c610f18565b61028c610f96565b34801561047957600080fd5b506000546001600160a01b0316610254565b34801561049757600080fd5b5061028c6104a6366004612527565b6112a6565b3480156104b757600080fd5b50610227611305565b61028c6104ce366004612527565b611314565b3480156104df57600080fd5b5061028c6104ee366004612727565b6114f9565b3480156104ff57600080fd5b5061028c61050e366004612763565b6115bd565b34801561051f57600080fd5b5061022761052e366004612527565b61164c565b34801561053f57600080fd5b506102c860085481565b34801561055557600080fd5b506101fd6105643660046127df565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561059e57600080fd5b5061028c6105ad36600461270c565b611727565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061061557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061064957506001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000145b8061067d57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606002805461069290612812565b80601f01602080910402602001604051908101604052809291908181526020018280546106be90612812565b801561070b5780601f106106e05761010080835404028352916020019161070b565b820191906000526020600020905b8154815290600101906020018083116106ee57829003601f168201915b5050505050905090565b6000610722826001541190565b6107995760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107c082610cef565b9050806001600160a01b0316836001600160a01b0316036108495760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610790565b336001600160a01b038216148061086557506108658133610564565b6108d75760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610790565b6108e2838383611806565b505050565b6000600180546108f79190612862565b905090565b6108e283838361186f565b600061091283610d01565b82106109865760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610790565b60006109906108e7565b905060008060005b83811015610a38576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109eb57805192505b876001600160a01b0316836001600160a01b031603610a2557868403610a175750935061067d92505050565b83610a2181612879565b9450505b5080610a3081612879565b915050610998565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610790565b6000546001600160a01b03163314610b015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610790565b6011805460ff19811660ff90911615179055565b6108e2838383604051806020016040528060008152506115bd565b6000610b3a6108e7565b8210610bae5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610790565b5090565b6000546001600160a01b03163314610c0c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610790565b60005b818110156108e2576001600b6000858585818110610c2f57610c2f612892565b9050602002016020810190610c44919061270c565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610c7681612879565b915050610c0f565b6000546001600160a01b03163314610cd85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610790565b8051610ceb90600a9060208401906123f9565b5050565b6000610cfa82611c30565b5192915050565b60006001600160a01b038216610d7f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610790565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610dfe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610790565b610e086000611dfb565b565b6000546001600160a01b03163314610e645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610790565b7f0000000000000000000000000000000000000000000000000000000000000000610e8d6108e7565b610e9790836128a8565b1115610f0b5760405162461bcd60e51b815260206004820152602660248201527f47473a204e6f7420656e6f75676820746f6b656e73206c65667420666f72206d60448201527f696e74696e6700000000000000000000000000000000000000000000000000006064820152608401610790565b610f153382611e58565b50565b6000546001600160a01b03163314610f725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610790565b60405133904780156108fc02916000818181858888f19350505050610e0857600080fd5b60115460ff16610ff85760405162461bcd60e51b815260206004820152602760248201527f47473a2043616e6e6f74206d696e74206265666f72652073616c6520686173206044820152661cdd185c9d195960ca1b6064820152608401610790565b7f00000000000000000000000000000000000000000000000000000000000000006110216108e7565b61102c9060016128a8565b111561107a5760405162461bcd60e51b815260206004820152601960248201527f47473a20546f74616c20737570706c79206578636565646564000000000000006044820152606401610790565b600f54600e805490600061108d83612879565b91905055106111045760405162461bcd60e51b815260206004820152602760248201527f47473a204e6f206d6f7265206672656520476f626c696e204769726c7320617660448201527f61696c61626c65000000000000000000000000000000000000000000000000006064820152608401610790565b6011546040517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015260009161010090046001600160a01b0316906370a0823190602401602060405180830381865afa15801561116b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118f91906128c0565b1180156111ac5750336000908152600d602052604090205460ff16155b156111cc57336000908152600b60205260409020805460ff191660011790555b336000908152600b602052604090205460ff1680156111fb5750336000908152600d602052604090205460ff16155b61126d5760405162461bcd60e51b815260206004820152602660248201527f47473a2055736572206973206e6f7420617070726f76656420666f722066726560448201527f65206d696e7400000000000000000000000000000000000000000000000000006064820152608401610790565b336000818152600d602090815260408083208054600160ff199182168117909255600b909352922080549091169055610e089190611e58565b6000546001600160a01b031633146113005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610790565b601055565b60606003805461069290612812565b8060105461132291906128d9565b3410156113715760405162461bcd60e51b815260206004820152601160248201527f47473a20496e636f7272656374204554480000000000000000000000000000006044820152606401610790565b60115460ff166113d35760405162461bcd60e51b815260206004820152602760248201527f47473a2043616e6e6f74206d696e74206265666f72652073616c6520686173206044820152661cdd185c9d195960ca1b6064820152608401610790565b7f00000000000000000000000000000000000000000000000000000000000000006113fc6108e7565b61140690836128a8565b11156114545760405162461bcd60e51b815260206004820152601960248201527f47473a20546f74616c20737570706c79206578636565646564000000000000006044820152606401610790565b336000908152600c6020526040902054601e906114729083906128a8565b11156114ca5760405162461bcd60e51b815260206004820152602160248201527f47473a2043616e206e6f74207075726368617365206d6f7265207468616e20336044820152600360fc1b6064820152608401610790565b336000908152600c6020526040812080548392906114e99084906128a8565b90915550610f1590503382611e58565b336001600160a01b038316036115515760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610790565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115c884848461186f565b6115d484848484611e72565b6116465760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610790565b50505050565b6060611659826001541190565b6116cb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610790565b60006116d5611fca565b905060008151116116f55760405180602001604052806000815250611720565b806116ff84611fd9565b6040516020016117109291906128f8565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146117815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610790565b6001600160a01b0381166117fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610790565b610f1581611dfb565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061187a82611c30565b80519091506000906001600160a01b0316336001600160a01b031614806118b15750336118a684610715565b6001600160a01b0316145b806118c3575081516118c39033610564565b9050806119385760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610790565b846001600160a01b031682600001516001600160a01b0316146119c35760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610790565b6001600160a01b038416611a3f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610790565b611a4f6000848460000151611806565b6001600160a01b0385166000908152600560205260408120805460019290611a819084906001600160801b031661294f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611acd91859116612977565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611b558460016128a8565b6000818152600460205260409020549091506001600160a01b0316611be757611b7f816001541190565b15611be75760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6040805180820190915260008082526020820152611c4f826001541190565b611cc15760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610790565b60007f00000000000000000000000000000000000000000000000000000000000000008310611d2257611d147f000000000000000000000000000000000000000000000000000000000000000084612862565b611d1f9060016128a8565b90505b825b818110611d8c576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611d7957949350505050565b5080611d84816129a2565b915050611d24565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610790565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610ceb8282604051806020016040528060008152506120f2565b60006001600160a01b0384163b15611fbe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611eb69033908990889088906004016129b9565b6020604051808303816000875af1925050508015611ef1575060408051601f3d908101601f19168201909252611eee918101906129f5565b60015b611fa4573d808015611f1f576040519150601f19603f3d011682016040523d82523d6000602084013e611f24565b606091505b508051600003611f9c5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610790565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fc2565b5060015b949350505050565b6060600a805461069290612812565b6060816000036120005750506040805180820190915260018152600360fc1b602082015290565b8160005b811561202a578061201481612879565b91506120239050600a83612a28565b9150612004565b60008167ffffffffffffffff81111561204557612045612637565b6040519080825280601f01601f19166020018201604052801561206f576020820181803683370190505b5090505b8415611fc257612084600183612862565b9150612091600a86612a3c565b61209c9060306128a8565b60f81b8183815181106120b1576120b1612892565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506120eb600a86612a28565b9450612073565b6001546001600160a01b0384166121715760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610790565b61217c816001541190565b156121c95760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610790565b7f000000000000000000000000000000000000000000000000000000000000000083111561225f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f67680000000000000000000000000000000000000000000000000000000000006064820152608401610790565b6001600160a01b038416600090815260056020526040812080548592906122909084906001600160801b0316612977565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008781526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905581905b848110156123ef5760405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461235d6000878487611e72565b6123cf5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610790565b816123d981612879565b92505080806123e790612879565b915050612310565b5060015550505050565b82805461240590612812565b90600052602060002090601f016020900481019282612427576000855561246d565b82601f1061244057805160ff191683800117855561246d565b8280016001018555821561246d579182015b8281111561246d578251825591602001919060010190612452565b50610bae9291505b80821115610bae5760008155600101612475565b6001600160e01b031981168114610f1557600080fd5b6000602082840312156124b157600080fd5b813561172081612489565b60005b838110156124d75781810151838201526020016124bf565b838111156116465750506000910152565b600081518084526125008160208601602086016124bc565b601f01601f19169290920160200192915050565b60208152600061172060208301846124e8565b60006020828403121561253957600080fd5b5035919050565b80356001600160a01b038116811461255757600080fd5b919050565b6000806040838503121561256f57600080fd5b61257883612540565b946020939093013593505050565b60008060006060848603121561259b57600080fd5b6125a484612540565b92506125b260208501612540565b9150604084013590509250925092565b600080602083850312156125d557600080fd5b823567ffffffffffffffff808211156125ed57600080fd5b818501915085601f83011261260157600080fd5b81358181111561261057600080fd5b8660208260051b850101111561262557600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561266857612668612637565b604051601f8501601f19908116603f0116810190828211818310171561269057612690612637565b816040528093508581528686860111156126a957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156126d557600080fd5b813567ffffffffffffffff8111156126ec57600080fd5b8201601f810184136126fd57600080fd5b611fc28482356020840161264d565b60006020828403121561271e57600080fd5b61172082612540565b6000806040838503121561273a57600080fd5b61274383612540565b91506020830135801515811461275857600080fd5b809150509250929050565b6000806000806080858703121561277957600080fd5b61278285612540565b935061279060208601612540565b925060408501359150606085013567ffffffffffffffff8111156127b357600080fd5b8501601f810187136127c457600080fd5b6127d38782356020840161264d565b91505092959194509250565b600080604083850312156127f257600080fd5b6127fb83612540565b915061280960208401612540565b90509250929050565b600181811c9082168061282657607f821691505b60208210810361284657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156128745761287461284c565b500390565b60006001820161288b5761288b61284c565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600082198211156128bb576128bb61284c565b500190565b6000602082840312156128d257600080fd5b5051919050565b60008160001904831182151516156128f3576128f361284c565b500290565b6000835161290a8184602088016124bc565b83519083019061291e8183602088016124bc565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160801b038381169083168181101561296f5761296f61284c565b039392505050565b60006001600160801b038083168185168083038211156129995761299961284c565b01949350505050565b6000816129b1576129b161284c565b506000190190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526129eb60808301846124e8565b9695505050505050565b600060208284031215612a0757600080fd5b815161172081612489565b634e487b7160e01b600052601260045260246000fd5b600082612a3757612a37612a12565b500490565b600082612a4b57612a4b612a12565b50069056fea2646970667358221220344ed7e128e88e68182068bfa99fa3e722cbd81eef6f60091679b1f083108b3264736f6c634300080d0033697066733a2f2f516d6434704b3577366a5a6d4e6d4b7762586a42667564374c6d377a76636b6d38416347616e46474a484c35674d2f
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806370a082311161010257806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610513578063d7224ba014610533578063e985e9c514610549578063f2fde38b1461059257600080fd5b806395d89b41146104ab578063a0712d68146104c0578063a22cb465146104d3578063b88d4fde146104f357600080fd5b8063853828b6116100d1578063853828b6146104505780638ab53447146104655780638da5cb5b1461046d57806391b7f5ed1461048b57600080fd5b806370a08231146103e5578063715018a6146104055780637ff9b5961461041a578063819b25ba1461043057600080fd5b806323b872dd1161017a5780634f6ccce7116101495780634f6ccce71461036557806353439aa21461038557806355f804b3146103a55780636352211e146103c557600080fd5b806323b872dd146102f05780632f745c591461031057806334918dfd1461033057806342842e0e1461034557600080fd5b8063095ea7b3116101b6578063095ea7b31461026c5780630f6dc7a91461028e57806318160ddd146102b35780631c8b232d146102d657600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f836600461249f565b6105b2565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610683565b6040516102099190612514565b34801561024057600080fd5b5061025461024f366004612527565b610715565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c61028736600461255c565b6107b5565b005b34801561029a57600080fd5b506011546102549061010090046001600160a01b031681565b3480156102bf57600080fd5b506102c86108e7565b604051908152602001610209565b3480156102e257600080fd5b506011546101fd9060ff1681565b3480156102fc57600080fd5b5061028c61030b366004612586565b6108fc565b34801561031c57600080fd5b506102c861032b36600461255c565b610907565b34801561033c57600080fd5b5061028c610aa7565b34801561035157600080fd5b5061028c610360366004612586565b610b15565b34801561037157600080fd5b506102c8610380366004612527565b610b30565b34801561039157600080fd5b5061028c6103a03660046125c2565b610bb2565b3480156103b157600080fd5b5061028c6103c03660046126c3565b610c7e565b3480156103d157600080fd5b506102546103e0366004612527565b610cef565b3480156103f157600080fd5b506102c861040036600461270c565b610d01565b34801561041157600080fd5b5061028c610da4565b34801561042657600080fd5b506102c860105481565b34801561043c57600080fd5b5061028c61044b366004612527565b610e0a565b34801561045c57600080fd5b5061028c610f18565b61028c610f96565b34801561047957600080fd5b506000546001600160a01b0316610254565b34801561049757600080fd5b5061028c6104a6366004612527565b6112a6565b3480156104b757600080fd5b50610227611305565b61028c6104ce366004612527565b611314565b3480156104df57600080fd5b5061028c6104ee366004612727565b6114f9565b3480156104ff57600080fd5b5061028c61050e366004612763565b6115bd565b34801561051f57600080fd5b5061022761052e366004612527565b61164c565b34801561053f57600080fd5b506102c860085481565b34801561055557600080fd5b506101fd6105643660046127df565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561059e57600080fd5b5061028c6105ad36600461270c565b611727565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061061557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061064957506001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000145b8061067d57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606002805461069290612812565b80601f01602080910402602001604051908101604052809291908181526020018280546106be90612812565b801561070b5780601f106106e05761010080835404028352916020019161070b565b820191906000526020600020905b8154815290600101906020018083116106ee57829003601f168201915b5050505050905090565b6000610722826001541190565b6107995760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107c082610cef565b9050806001600160a01b0316836001600160a01b0316036108495760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610790565b336001600160a01b038216148061086557506108658133610564565b6108d75760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610790565b6108e2838383611806565b505050565b6000600180546108f79190612862565b905090565b6108e283838361186f565b600061091283610d01565b82106109865760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610790565b60006109906108e7565b905060008060005b83811015610a38576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109eb57805192505b876001600160a01b0316836001600160a01b031603610a2557868403610a175750935061067d92505050565b83610a2181612879565b9450505b5080610a3081612879565b915050610998565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610790565b6000546001600160a01b03163314610b015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610790565b6011805460ff19811660ff90911615179055565b6108e2838383604051806020016040528060008152506115bd565b6000610b3a6108e7565b8210610bae5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610790565b5090565b6000546001600160a01b03163314610c0c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610790565b60005b818110156108e2576001600b6000858585818110610c2f57610c2f612892565b9050602002016020810190610c44919061270c565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610c7681612879565b915050610c0f565b6000546001600160a01b03163314610cd85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610790565b8051610ceb90600a9060208401906123f9565b5050565b6000610cfa82611c30565b5192915050565b60006001600160a01b038216610d7f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610790565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610dfe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610790565b610e086000611dfb565b565b6000546001600160a01b03163314610e645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610790565b7f0000000000000000000000000000000000000000000000000000000000000064610e8d6108e7565b610e9790836128a8565b1115610f0b5760405162461bcd60e51b815260206004820152602660248201527f47473a204e6f7420656e6f75676820746f6b656e73206c65667420666f72206d60448201527f696e74696e6700000000000000000000000000000000000000000000000000006064820152608401610790565b610f153382611e58565b50565b6000546001600160a01b03163314610f725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610790565b60405133904780156108fc02916000818181858888f19350505050610e0857600080fd5b60115460ff16610ff85760405162461bcd60e51b815260206004820152602760248201527f47473a2043616e6e6f74206d696e74206265666f72652073616c6520686173206044820152661cdd185c9d195960ca1b6064820152608401610790565b7f00000000000000000000000000000000000000000000000000000000000000646110216108e7565b61102c9060016128a8565b111561107a5760405162461bcd60e51b815260206004820152601960248201527f47473a20546f74616c20737570706c79206578636565646564000000000000006044820152606401610790565b600f54600e805490600061108d83612879565b91905055106111045760405162461bcd60e51b815260206004820152602760248201527f47473a204e6f206d6f7265206672656520476f626c696e204769726c7320617660448201527f61696c61626c65000000000000000000000000000000000000000000000000006064820152608401610790565b6011546040517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015260009161010090046001600160a01b0316906370a0823190602401602060405180830381865afa15801561116b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118f91906128c0565b1180156111ac5750336000908152600d602052604090205460ff16155b156111cc57336000908152600b60205260409020805460ff191660011790555b336000908152600b602052604090205460ff1680156111fb5750336000908152600d602052604090205460ff16155b61126d5760405162461bcd60e51b815260206004820152602660248201527f47473a2055736572206973206e6f7420617070726f76656420666f722066726560448201527f65206d696e7400000000000000000000000000000000000000000000000000006064820152608401610790565b336000818152600d602090815260408083208054600160ff199182168117909255600b909352922080549091169055610e089190611e58565b6000546001600160a01b031633146113005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610790565b601055565b60606003805461069290612812565b8060105461132291906128d9565b3410156113715760405162461bcd60e51b815260206004820152601160248201527f47473a20496e636f7272656374204554480000000000000000000000000000006044820152606401610790565b60115460ff166113d35760405162461bcd60e51b815260206004820152602760248201527f47473a2043616e6e6f74206d696e74206265666f72652073616c6520686173206044820152661cdd185c9d195960ca1b6064820152608401610790565b7f00000000000000000000000000000000000000000000000000000000000000646113fc6108e7565b61140690836128a8565b11156114545760405162461bcd60e51b815260206004820152601960248201527f47473a20546f74616c20737570706c79206578636565646564000000000000006044820152606401610790565b336000908152600c6020526040902054601e906114729083906128a8565b11156114ca5760405162461bcd60e51b815260206004820152602160248201527f47473a2043616e206e6f74207075726368617365206d6f7265207468616e20336044820152600360fc1b6064820152608401610790565b336000908152600c6020526040812080548392906114e99084906128a8565b90915550610f1590503382611e58565b336001600160a01b038316036115515760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610790565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115c884848461186f565b6115d484848484611e72565b6116465760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610790565b50505050565b6060611659826001541190565b6116cb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610790565b60006116d5611fca565b905060008151116116f55760405180602001604052806000815250611720565b806116ff84611fd9565b6040516020016117109291906128f8565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146117815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610790565b6001600160a01b0381166117fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610790565b610f1581611dfb565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061187a82611c30565b80519091506000906001600160a01b0316336001600160a01b031614806118b15750336118a684610715565b6001600160a01b0316145b806118c3575081516118c39033610564565b9050806119385760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610790565b846001600160a01b031682600001516001600160a01b0316146119c35760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610790565b6001600160a01b038416611a3f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610790565b611a4f6000848460000151611806565b6001600160a01b0385166000908152600560205260408120805460019290611a819084906001600160801b031661294f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611acd91859116612977565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611b558460016128a8565b6000818152600460205260409020549091506001600160a01b0316611be757611b7f816001541190565b15611be75760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6040805180820190915260008082526020820152611c4f826001541190565b611cc15760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610790565b60007f000000000000000000000000000000000000000000000000000000000000001e8310611d2257611d147f000000000000000000000000000000000000000000000000000000000000001e84612862565b611d1f9060016128a8565b90505b825b818110611d8c576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611d7957949350505050565b5080611d84816129a2565b915050611d24565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610790565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610ceb8282604051806020016040528060008152506120f2565b60006001600160a01b0384163b15611fbe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611eb69033908990889088906004016129b9565b6020604051808303816000875af1925050508015611ef1575060408051601f3d908101601f19168201909252611eee918101906129f5565b60015b611fa4573d808015611f1f576040519150601f19603f3d011682016040523d82523d6000602084013e611f24565b606091505b508051600003611f9c5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610790565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fc2565b5060015b949350505050565b6060600a805461069290612812565b6060816000036120005750506040805180820190915260018152600360fc1b602082015290565b8160005b811561202a578061201481612879565b91506120239050600a83612a28565b9150612004565b60008167ffffffffffffffff81111561204557612045612637565b6040519080825280601f01601f19166020018201604052801561206f576020820181803683370190505b5090505b8415611fc257612084600183612862565b9150612091600a86612a3c565b61209c9060306128a8565b60f81b8183815181106120b1576120b1612892565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506120eb600a86612a28565b9450612073565b6001546001600160a01b0384166121715760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610790565b61217c816001541190565b156121c95760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610790565b7f000000000000000000000000000000000000000000000000000000000000001e83111561225f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f67680000000000000000000000000000000000000000000000000000000000006064820152608401610790565b6001600160a01b038416600090815260056020526040812080548592906122909084906001600160801b0316612977565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008781526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905581905b848110156123ef5760405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461235d6000878487611e72565b6123cf5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610790565b816123d981612879565b92505080806123e790612879565b915050612310565b5060015550505050565b82805461240590612812565b90600052602060002090601f016020900481019282612427576000855561246d565b82601f1061244057805160ff191683800117855561246d565b8280016001018555821561246d579182015b8281111561246d578251825591602001919060010190612452565b50610bae9291505b80821115610bae5760008155600101612475565b6001600160e01b031981168114610f1557600080fd5b6000602082840312156124b157600080fd5b813561172081612489565b60005b838110156124d75781810151838201526020016124bf565b838111156116465750506000910152565b600081518084526125008160208601602086016124bc565b601f01601f19169290920160200192915050565b60208152600061172060208301846124e8565b60006020828403121561253957600080fd5b5035919050565b80356001600160a01b038116811461255757600080fd5b919050565b6000806040838503121561256f57600080fd5b61257883612540565b946020939093013593505050565b60008060006060848603121561259b57600080fd5b6125a484612540565b92506125b260208501612540565b9150604084013590509250925092565b600080602083850312156125d557600080fd5b823567ffffffffffffffff808211156125ed57600080fd5b818501915085601f83011261260157600080fd5b81358181111561261057600080fd5b8660208260051b850101111561262557600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561266857612668612637565b604051601f8501601f19908116603f0116810190828211818310171561269057612690612637565b816040528093508581528686860111156126a957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156126d557600080fd5b813567ffffffffffffffff8111156126ec57600080fd5b8201601f810184136126fd57600080fd5b611fc28482356020840161264d565b60006020828403121561271e57600080fd5b61172082612540565b6000806040838503121561273a57600080fd5b61274383612540565b91506020830135801515811461275857600080fd5b809150509250929050565b6000806000806080858703121561277957600080fd5b61278285612540565b935061279060208601612540565b925060408501359150606085013567ffffffffffffffff8111156127b357600080fd5b8501601f810187136127c457600080fd5b6127d38782356020840161264d565b91505092959194509250565b600080604083850312156127f257600080fd5b6127fb83612540565b915061280960208401612540565b90509250929050565b600181811c9082168061282657607f821691505b60208210810361284657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156128745761287461284c565b500390565b60006001820161288b5761288b61284c565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600082198211156128bb576128bb61284c565b500190565b6000602082840312156128d257600080fd5b5051919050565b60008160001904831182151516156128f3576128f361284c565b500290565b6000835161290a8184602088016124bc565b83519083019061291e8183602088016124bc565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160801b038381169083168181101561296f5761296f61284c565b039392505050565b60006001600160801b038083168185168083038211156129995761299961284c565b01949350505050565b6000816129b1576129b161284c565b506000190190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526129eb60808301846124e8565b9695505050505050565b600060208284031215612a0757600080fd5b815161172081612489565b634e487b7160e01b600052601260045260246000fd5b600082612a3757612a37612a12565b500490565b600082612a4b57612a4b612a12565b50069056fea2646970667358221220344ed7e128e88e68182068bfa99fa3e722cbd81eef6f60091679b1f083108b3264736f6c634300080d0033
Deployed Bytecode Sourcemap
50986:2709:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36504:370;;;;;;;;;;-1:-1:-1;36504:370:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;36504:370:0;;;;;;;;37972:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39506:204::-;;;;;;;;;;-1:-1:-1;39506:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1738:55:1;;;1720:74;;1708:2;1693:18;39506:204:0;1574:226:1;39069:379:0;;;;;;;;;;-1:-1:-1;39069:379:0;;;;;:::i;:::-;;:::i;:::-;;51407:81;;;;;;;;;;-1:-1:-1;51407:81:0;;;;;;;-1:-1:-1;;;;;51407:81:0;;;35063:96;;;;;;;;;;;;;:::i;:::-;;;2658:25:1;;;2646:2;2631:18;35063:96:0;2512:177:1;51364:34:0;;;;;;;;;;-1:-1:-1;51364:34:0;;;;;;;;40356:142;;;;;;;;;;-1:-1:-1;40356:142:0;;;;;:::i;:::-;;:::i;35696:744::-;;;;;;;;;;-1:-1:-1;35696:744:0;;;;;:::i;:::-;;:::i;53369:95::-;;;;;;;;;;;;;:::i;40561:157::-;;;;;;;;;;-1:-1:-1;40561:157:0;;;;;:::i;:::-;;:::i;35228:177::-;;;;;;;;;;-1:-1:-1;35228:177:0;;;;;:::i;:::-;;:::i;52958:181::-;;;;;;;;;;-1:-1:-1;52958:181:0;;;;;:::i;:::-;;:::i;53256:105::-;;;;;;;;;;-1:-1:-1;53256:105:0;;;;;:::i;:::-;;:::i;37795:118::-;;;;;;;;;;-1:-1:-1;37795:118:0;;;;;:::i;:::-;;:::i;36930:199::-;;;;;;;;;;-1:-1:-1;36930:199:0;;;;;:::i;:::-;;:::i;50085:103::-;;;;;;;;;;;;;:::i;51322:35::-;;;;;;;;;;;;;;;;51568:218;;;;;;;;;;-1:-1:-1;51568:218:0;;;;;:::i;:::-;;:::i;53575:117::-;;;;;;;;;;;;;:::i;52285:665::-;;;:::i;49434:87::-;;;;;;;;;;-1:-1:-1;49480:7:0;49507:6;-1:-1:-1;;;;;49507:6:0;49434:87;;53472:95;;;;;;;;;;-1:-1:-1;53472:95:0;;;;;:::i;:::-;;:::i;38127:98::-;;;;;;;;;;;;;:::i;51794:483::-;;;;;;:::i;:::-;;:::i;39774:274::-;;;;;;;;;;-1:-1:-1;39774:274:0;;;;;:::i;:::-;;:::i;40781:311::-;;;;;;;;;;-1:-1:-1;40781:311:0;;;;;:::i;:::-;;:::i;38288:403::-;;;;;;;;;;-1:-1:-1;38288:403:0;;;;;:::i;:::-;;:::i;45011:43::-;;;;;;;;;;;;;;;;40111:186;;;;;;;;;;-1:-1:-1;40111:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;40256:25:0;;;40233:4;40256:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40111:186;50343:201;;;;;;;;;;-1:-1:-1;50343:201:0;;;;;:::i;:::-;;:::i;36504:370::-;36631:4;-1:-1:-1;;;;;;36661:40:0;;36676:25;36661:40;;:99;;-1:-1:-1;;;;;;;36712:48:0;;36727:33;36712:48;36661:99;:160;;;-1:-1:-1;;;;;;;36771:50:0;;36786:35;36771:50;36661:160;:207;;;-1:-1:-1;22368:25:0;-1:-1:-1;;;;;;22353:40:0;;;36832:36;36647:221;36504:370;-1:-1:-1;;36504:370:0:o;37972:94::-;38026:13;38055:5;38048:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37972:94;:::o;39506:204::-;39574:7;39598:16;39606:7;41418:12;;-1:-1:-1;41408:22:0;41331:105;39598:16;39590:74;;;;-1:-1:-1;;;39590:74:0;;7053:2:1;39590:74:0;;;7035:21:1;7092:2;7072:18;;;7065:30;7131:34;7111:18;;;7104:62;7202:15;7182:18;;;7175:43;7235:19;;39590:74:0;;;;;;;;;-1:-1:-1;39680:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39680:24:0;;39506:204::o;39069:379::-;39138:13;39154:24;39170:7;39154:15;:24::i;:::-;39138:40;;39199:5;-1:-1:-1;;;;;39193:11:0;:2;-1:-1:-1;;;;;39193:11:0;;39185:58;;;;-1:-1:-1;;;39185:58:0;;7467:2:1;39185:58:0;;;7449:21:1;7506:2;7486:18;;;7479:30;7545:34;7525:18;;;7518:62;7616:4;7596:18;;;7589:32;7638:19;;39185:58:0;7265:398:1;39185:58:0;32696:10;-1:-1:-1;;;;;39268:21:0;;;;:62;;-1:-1:-1;39293:37:0;39310:5;32696:10;40111:186;:::i;39293:37::-;39252:153;;;;-1:-1:-1;;;39252:153:0;;7870:2:1;39252:153:0;;;7852:21:1;7909:2;7889:18;;;7882:30;7948:34;7928:18;;;7921:62;8019:27;7999:18;;;7992:55;8064:19;;39252:153:0;7668:421:1;39252:153:0;39414:28;39423:2;39427:7;39436:5;39414:8;:28::i;:::-;39131:317;39069:379;;:::o;35063:96::-;35116:7;35152:1;35139:12;;:14;;;;:::i;:::-;35132:21;;35063:96;:::o;40356:142::-;40464:28;40474:4;40480:2;40484:7;40464:9;:28::i;35696:744::-;35805:7;35840:16;35850:5;35840:9;:16::i;:::-;35832:5;:24;35824:71;;;;-1:-1:-1;;;35824:71:0;;8615:2:1;35824:71:0;;;8597:21:1;8654:2;8634:18;;;8627:30;8693:34;8673:18;;;8666:62;8764:4;8744:18;;;8737:32;8786:19;;35824:71:0;8413:398:1;35824:71:0;35902:22;35927:13;:11;:13::i;:::-;35902:38;;35947:19;35977:25;36027:9;36022:350;36046:14;36042:1;:18;36022:350;;;36076:31;36110:14;;;:11;:14;;;;;;;;;36076:48;;;;;;;;;-1:-1:-1;;;;;36076:48:0;;;;;-1:-1:-1;;;36076:48:0;;;;;;;;;;;;36137:28;36133:89;;36198:14;;;-1:-1:-1;36133:89:0;36255:5;-1:-1:-1;;;;;36234:26:0;:17;-1:-1:-1;;;;;36234:26:0;;36230:135;;36292:5;36277:11;:20;36273:59;;-1:-1:-1;36319:1:0;-1:-1:-1;36312:8:0;;-1:-1:-1;;;36312:8:0;36273:59;36342:13;;;;:::i;:::-;;;;36230:135;-1:-1:-1;36062:3:0;;;;:::i;:::-;;;;36022:350;;;-1:-1:-1;36378:56:0;;-1:-1:-1;;;36378:56:0;;9158:2:1;36378:56:0;;;9140:21:1;9197:2;9177:18;;;9170:30;9236:34;9216:18;;;9209:62;9307:16;9287:18;;;9280:44;9341:19;;36378:56:0;8956:410:1;53369:95:0;49480:7;49507:6;-1:-1:-1;;;;;49507:6:0;32696:10;49654:23;49646:68;;;;-1:-1:-1;;;49646:68:0;;9573:2:1;49646:68:0;;;9555:21:1;;;9592:18;;;9585:30;9651:34;9631:18;;;9624:62;9703:18;;49646:68:0;9371:356:1;49646:68:0;53442:14:::1;::::0;;-1:-1:-1;;53424:32:0;::::1;53442:14;::::0;;::::1;53441:15;53424:32;::::0;;53369:95::o;40561:157::-;40673:39;40690:4;40696:2;40700:7;40673:39;;;;;;;;;;;;:16;:39::i;35228:177::-;35295:7;35327:13;:11;:13::i;:::-;35319:5;:21;35311:69;;;;-1:-1:-1;;;35311:69:0;;9934:2:1;35311:69:0;;;9916:21:1;9973:2;9953:18;;;9946:30;10012:34;9992:18;;;9985:62;10083:5;10063:18;;;10056:33;10106:19;;35311:69:0;9732:399:1;35311:69:0;-1:-1:-1;35394:5:0;35228:177::o;52958:181::-;49480:7;49507:6;-1:-1:-1;;;;;49507:6:0;32696:10;49654:23;49646:68;;;;-1:-1:-1;;;49646:68:0;;9573:2:1;49646:68:0;;;9555:21:1;;;9592:18;;;9585:30;9651:34;9631:18;;;9624:62;9703:18;;49646:68:0;9371:356:1;49646:68:0;53038:6:::1;53034:98;53048:18:::0;;::::1;53034:98;;;53116:4;53088:11;:25;53100:9;;53110:1;53100:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;53088:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;53088:25:0;:32;;-1:-1:-1;;53088:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53068:3;::::1;::::0;::::1;:::i;:::-;;;;53034:98;;53256:105:::0;49480:7;49507:6;-1:-1:-1;;;;;49507:6:0;32696:10;49654:23;49646:68;;;;-1:-1:-1;;;49646:68:0;;9573:2:1;49646:68:0;;;9555:21:1;;;9592:18;;;9585:30;9651:34;9631:18;;;9624:62;9703:18;;49646:68:0;9371:356:1;49646:68:0;53332:21;;::::1;::::0;:8:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53256:105:::0;:::o;37795:118::-;37859:7;37882:20;37894:7;37882:11;:20::i;:::-;:25;;37795:118;-1:-1:-1;;37795:118:0:o;36930:199::-;36994:7;-1:-1:-1;;;;;37018:19:0;;37010:75;;;;-1:-1:-1;;;37010:75:0;;10527:2:1;37010:75:0;;;10509:21:1;10566:2;10546:18;;;10539:30;10605:34;10585:18;;;10578:62;10676:13;10656:18;;;10649:41;10707:19;;37010:75:0;10325:407:1;37010:75:0;-1:-1:-1;;;;;;37107:15:0;;;;;:8;:15;;;;;;-1:-1:-1;;;;;37107:15:0;;36930:199::o;50085:103::-;49480:7;49507:6;-1:-1:-1;;;;;49507:6:0;32696:10;49654:23;49646:68;;;;-1:-1:-1;;;49646:68:0;;9573:2:1;49646:68:0;;;9555:21:1;;;9592:18;;;9585:30;9651:34;9631:18;;;9624:62;9703:18;;49646:68:0;9371:356:1;49646:68:0;50150:30:::1;50177:1;50150:18;:30::i;:::-;50085:103::o:0;51568:218::-;49480:7;49507:6;-1:-1:-1;;;;;49507:6:0;32696:10;49654:23;49646:68;;;;-1:-1:-1;;;49646:68:0;;9573:2:1;49646:68:0;;;9555:21:1;;;9592:18;;;9585:30;9651:34;9631:18;;;9624:62;9703:18;;49646:68:0;9371:356:1;49646:68:0;51669:14:::1;51652:13;:11;:13::i;:::-;51641:24;::::0;:8;:24:::1;:::i;:::-;:42;;51633:93;;;::::0;-1:-1:-1;;;51633:93:0;;11072:2:1;51633:93:0::1;::::0;::::1;11054:21:1::0;11111:2;11091:18;;;11084:30;11150:34;11130:18;;;11123:62;11221:8;11201:18;;;11194:36;11247:19;;51633:93:0::1;10870:402:1::0;51633:93:0::1;51747:31;51757:10;51769:8;51747:9;:31::i;:::-;51568:218:::0;:::o;53575:117::-;49480:7;49507:6;-1:-1:-1;;;;;49507:6:0;32696:10;49654:23;49646:68;;;;-1:-1:-1;;;49646:68:0;;9573:2:1;49646:68:0;;;9555:21:1;;;9592:18;;;9585:30;9651:34;9631:18;;;9624:62;9703:18;;49646:68:0;9371:356:1;49646:68:0;53636:47:::1;::::0;53644:10:::1;::::0;53661:21:::1;53636:47:::0;::::1;;;::::0;::::1;::::0;;;53661:21;53644:10;53636:47;::::1;;;;;;53628:56;;;::::0;::::1;52285:665:::0;52341:14;;;;52333:66;;;;-1:-1:-1;;;52333:66:0;;11479:2:1;52333:66:0;;;11461:21:1;11518:2;11498:18;;;11491:30;11557:34;11537:18;;;11530:62;-1:-1:-1;;;11608:18:1;;;11601:37;11655:19;;52333:66:0;11277:403:1;52333:66:0;52439:14;52422:13;:11;:13::i;:::-;52418:17;;:1;:17;:::i;:::-;:35;;52410:73;;;;-1:-1:-1;;;52410:73:0;;11887:2:1;52410:73:0;;;11869:21:1;11926:2;11906:18;;;11899:30;11965:27;11945:18;;;11938:55;12010:18;;52410:73:0;11685:349:1;52410:73:0;52517:7;;52502:10;:12;;;:10;:12;;;:::i;:::-;;;;;:22;52494:74;;;;-1:-1:-1;;;52494:74:0;;12241:2:1;52494:74:0;;;12223:21:1;12280:2;12260:18;;;12253:30;12319:34;12299:18;;;12292:62;12390:9;12370:18;;;12363:37;12417:19;;52494:74:0;12039:403:1;52494:74:0;52582:10;;:32;;;;;52603:10;52582:32;;;1720:74:1;52617:1:0;;52582:10;;;-1:-1:-1;;;;;52582:10:0;;:20;;1693:18:1;;52582:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;:65;;;;-1:-1:-1;52636:10:0;52623:24;;;;:12;:24;;;;;;;;52622:25;52582:65;52579:127;;;52676:10;52664:23;;;;:11;:23;;;;;:30;;-1:-1:-1;;52664:30:0;52690:4;52664:30;;;52579:127;52736:10;52724:23;;;;:11;:23;;;;;;;;:52;;;;-1:-1:-1;52765:10:0;52752:24;;;;:12;:24;;;;;;;;52751:25;52724:52;52716:103;;;;-1:-1:-1;;;52716:103:0;;12838:2:1;52716:103:0;;;12820:21:1;12877:2;12857:18;;;12850:30;12916:34;12896:18;;;12889:62;12987:8;12967:18;;;12960:36;13013:19;;52716:103:0;12636:402:1;52716:103:0;52845:10;52832:24;;;;:12;:24;;;;;;;;:31;;52859:4;-1:-1:-1;;52832:31:0;;;;;;;;52874:11;:23;;;;;:31;;;;;;;52918:24;;52845:10;52918:9;:24::i;53472:95::-;49480:7;49507:6;-1:-1:-1;;;;;49507:6:0;32696:10;49654:23;49646:68;;;;-1:-1:-1;;;49646:68:0;;9573:2:1;49646:68:0;;;9555:21:1;;;9592:18;;;9585:30;9651:34;9631:18;;;9624:62;9703:18;;49646:68:0;9371:356:1;49646:68:0;53538:10:::1;:21:::0;53472:95::o;38127:98::-;38183:13;38212:7;38205:14;;;;;:::i;51794:483::-;51888:8;51875:10;;:21;;;;:::i;:::-;51862:9;:34;;51854:64;;;;-1:-1:-1;;;51854:64:0;;13418:2:1;51854:64:0;;;13400:21:1;13457:2;13437:18;;;13430:30;13496:19;13476:18;;;13469:47;13533:18;;51854:64:0;13216:341:1;51854:64:0;51937:14;;;;51929:66;;;;-1:-1:-1;;;51929:66:0;;11479:2:1;51929:66:0;;;11461:21:1;11518:2;11498:18;;;11491:30;11557:34;11537:18;;;11530:62;-1:-1:-1;;;11608:18:1;;;11601:37;11655:19;;51929:66:0;11277:403:1;51929:66:0;52042:14;52025:13;:11;:13::i;:::-;52014:24;;:8;:24;:::i;:::-;:42;;52006:80;;;;-1:-1:-1;;;52006:80:0;;11887:2:1;52006:80:0;;;11869:21:1;11926:2;11906:18;;;11899:30;11965:27;11945:18;;;11938:55;12010:18;;52006:80:0;11685:349:1;52006:80:0;52115:10;52105:21;;;;:9;:21;;;;;;52141:2;;52105:32;;52129:8;;52105:32;:::i;:::-;:38;;52097:84;;;;-1:-1:-1;;;52097:84:0;;13764:2:1;52097:84:0;;;13746:21:1;13803:2;13783:18;;;13776:30;13842:34;13822:18;;;13815:62;-1:-1:-1;;;13893:18:1;;;13886:31;13934:19;;52097:84:0;13562:397:1;52097:84:0;52204:10;52194:21;;;;:9;:21;;;;;:33;;52219:8;;52194:21;:33;;52219:8;;52194:33;:::i;:::-;;;;-1:-1:-1;52238:31:0;;-1:-1:-1;52248:10:0;52260:8;52238:9;:31::i;39774:274::-;32696:10;-1:-1:-1;;;;;39865:24:0;;;39857:63;;;;-1:-1:-1;;;39857:63:0;;14166:2:1;39857:63:0;;;14148:21:1;14205:2;14185:18;;;14178:30;14244:28;14224:18;;;14217:56;14290:18;;39857:63:0;13964:350:1;39857:63:0;32696:10;39929:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39929:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39929:53:0;;;;;;;;;;39994:48;;586:41:1;;;39929:42:0;;32696:10;39994:48;;559:18:1;39994:48:0;;;;;;;39774:274;;:::o;40781:311::-;40918:28;40928:4;40934:2;40938:7;40918:9;:28::i;:::-;40969:48;40992:4;40998:2;41002:7;41011:5;40969:22;:48::i;:::-;40953:133;;;;-1:-1:-1;;;40953:133:0;;14521:2:1;40953:133:0;;;14503:21:1;14560:2;14540:18;;;14533:30;14599:34;14579:18;;;14572:62;14670:21;14650:18;;;14643:49;14709:19;;40953:133:0;14319:415:1;40953:133:0;40781:311;;;;:::o;38288:403::-;38386:13;38427:16;38435:7;41418:12;;-1:-1:-1;41408:22:0;41331:105;38427:16;38411:97;;;;-1:-1:-1;;;38411:97:0;;14941:2:1;38411:97:0;;;14923:21:1;14980:2;14960:18;;;14953:30;15019:34;14999:18;;;14992:62;15090:17;15070:18;;;15063:45;15125:19;;38411:97:0;14739:411:1;38411:97:0;38517:21;38541:10;:8;:10::i;:::-;38517:34;;38596:1;38578:7;38572:21;:25;:113;;;;;;;;;;;;;;;;;38633:7;38642:18;:7;:16;:18::i;:::-;38616:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38572:113;38558:127;38288:403;-1:-1:-1;;;38288:403:0:o;50343:201::-;49480:7;49507:6;-1:-1:-1;;;;;49507:6:0;32696:10;49654:23;49646:68;;;;-1:-1:-1;;;49646:68:0;;9573:2:1;49646:68:0;;;9555:21:1;;;9592:18;;;9585:30;9651:34;9631:18;;;9624:62;9703:18;;49646:68:0;9371:356:1;49646:68:0;-1:-1:-1;;;;;50432:22:0;::::1;50424:73;;;::::0;-1:-1:-1;;;50424:73:0;;15999:2:1;50424:73:0::1;::::0;::::1;15981:21:1::0;16038:2;16018:18;;;16011:30;16077:34;16057:18;;;16050:62;16148:8;16128:18;;;16121:36;16174:19;;50424:73:0::1;15797:402:1::0;50424:73:0::1;50508:28;50527:8;50508:18;:28::i;44833:172::-:0;44930:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;44930:29:0;-1:-1:-1;;;;;44930:29:0;;;;;;;;;44971:28;;44930:24;;44971:28;;;;;;;44833:172;;;:::o;43222:1505::-;43319:35;43357:20;43369:7;43357:11;:20::i;:::-;43428:18;;43319:58;;-1:-1:-1;43386:22:0;;-1:-1:-1;;;;;43412:34:0;32696:10;-1:-1:-1;;;;;43412:34:0;;:81;;;-1:-1:-1;32696:10:0;43457:20;43469:7;43457:11;:20::i;:::-;-1:-1:-1;;;;;43457:36:0;;43412:81;:142;;;-1:-1:-1;43521:18:0;;43504:50;;32696:10;40111:186;:::i;43504:50::-;43386:169;;43580:17;43564:101;;;;-1:-1:-1;;;43564:101:0;;16406:2:1;43564:101:0;;;16388:21:1;16445:2;16425:18;;;16418:30;16484:34;16464:18;;;16457:62;16555:20;16535:18;;;16528:48;16593:19;;43564:101:0;16204:414:1;43564:101:0;43712:4;-1:-1:-1;;;;;43690:26:0;:13;:18;;;-1:-1:-1;;;;;43690:26:0;;43674:98;;;;-1:-1:-1;;;43674:98:0;;16825:2:1;43674:98:0;;;16807:21:1;16864:2;16844:18;;;16837:30;16903:34;16883:18;;;16876:62;16974:8;16954:18;;;16947:36;17000:19;;43674:98:0;16623:402:1;43674:98:0;-1:-1:-1;;;;;43787:16:0;;43779:66;;;;-1:-1:-1;;;43779:66:0;;17232:2:1;43779:66:0;;;17214:21:1;17271:2;17251:18;;;17244:30;17310:34;17290:18;;;17283:62;17381:7;17361:18;;;17354:35;17406:19;;43779:66:0;17030:401:1;43779:66:0;43954:49;43971:1;43975:7;43984:13;:18;;;43954:8;:49::i;:::-;-1:-1:-1;;;;;44012:14:0;;;;;;:8;:14;;;;;:19;;44030:1;;44012:14;:19;;44030:1;;-1:-1:-1;;;;;44012:19:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;44012:19:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;44038:12:0;;-1:-1:-1;44038:12:0;;;:8;:12;;;;;:17;;-1:-1:-1;;;44038:12:0;;:17;;-1:-1:-1;;44038:17:0;;:::i;:::-;;;-1:-1:-1;;;;;44038:17:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44085:43:0;;;;;;;;-1:-1:-1;;;;;44085:43:0;;;;;;44111:15;44085:43;;;;;;;;;-1:-1:-1;44062:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;44062:66:0;-1:-1:-1;;;;;;44062:66:0;;;;;;;;;;;44378:11;44074:7;-1:-1:-1;44378:11:0;:::i;:::-;44441:1;44400:24;;;:11;:24;;;;;:29;44356:33;;-1:-1:-1;;;;;;44400:29:0;44396:236;;44458:20;44466:11;41418:12;;-1:-1:-1;41408:22:0;41331:105;44458:20;44454:171;;;44518:97;;;;;;;;44545:18;;-1:-1:-1;;;;;44518:97:0;;;;;;44576:28;;;;44518:97;;;;;;;;;;-1:-1:-1;44491:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;44491:124:0;-1:-1:-1;;;;;;44491:124:0;;;;;;;;;;;;44454:171;44664:7;44660:2;-1:-1:-1;;;;;44645:27:0;44654:4;-1:-1:-1;;;;;44645:27:0;;;;;;;;;;;43312:1415;;;43222:1505;;;:::o;37135:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;37252:16:0;37260:7;41418:12;;-1:-1:-1;41408:22:0;41331:105;37252:16;37244:71;;;;-1:-1:-1;;;37244:71:0;;18147:2:1;37244:71:0;;;18129:21:1;18186:2;18166:18;;;18159:30;18225:34;18205:18;;;18198:62;18296:12;18276:18;;;18269:40;18326:19;;37244:71:0;17945:406:1;37244:71:0;37324:26;37372:12;37361:7;:23;37357:93;;37416:22;37426:12;37416:7;:22;:::i;:::-;:26;;37441:1;37416:26;:::i;:::-;37395:47;;37357:93;37478:7;37458:212;37495:18;37487:4;:26;37458:212;;37532:31;37566:17;;;:11;:17;;;;;;;;;37532:51;;;;;;;;;-1:-1:-1;;;;;37532:51:0;;;;;-1:-1:-1;;;37532:51:0;;;;;;;;;;;;37596:28;37592:71;;37644:9;37135:606;-1:-1:-1;;;;37135:606:0:o;37592:71::-;-1:-1:-1;37515:6:0;;;;:::i;:::-;;;;37458:212;;;-1:-1:-1;37678:57:0;;-1:-1:-1;;;37678:57:0;;18699:2:1;37678:57:0;;;18681:21:1;18738:2;18718:18;;;18711:30;18777:34;18757:18;;;18750:62;18848:17;18828:18;;;18821:45;18883:19;;37678:57:0;18497:411:1;50704:191:0;50778:16;50797:6;;-1:-1:-1;;;;;50814:17:0;;;-1:-1:-1;;50814:17:0;;;;;;50847:40;;50797:6;;;;;;;50847:40;;50778:16;50847:40;50767:128;50704:191;:::o;41442:98::-;41507:27;41517:2;41521:8;41507:27;;;;;;;;;;;;:9;:27::i;46548:690::-;46685:4;-1:-1:-1;;;;;46702:13:0;;12433:19;:23;46698:535;;46741:72;;-1:-1:-1;;;46741:72:0;;-1:-1:-1;;;;;46741:36:0;;;;;:72;;32696:10;;46792:4;;46798:7;;46807:5;;46741:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46741:72:0;;;;;;;;-1:-1:-1;;46741:72:0;;;;;;;;;;;;:::i;:::-;;;46728:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46972:6;:13;46989:1;46972:18;46968:215;;47005:61;;-1:-1:-1;;;47005:61:0;;14521:2:1;47005:61:0;;;14503:21:1;14560:2;14540:18;;;14533:30;14599:34;14579:18;;;14572:62;14670:21;14650:18;;;14643:49;14709:19;;47005:61:0;14319:415:1;46968:215:0;47151:6;47145:13;47136:6;47132:2;47128:15;47121:38;46728:464;-1:-1:-1;;;;;;46863:55:0;-1:-1:-1;;;46863:55:0;;-1:-1:-1;46856:62:0;;46698:535;-1:-1:-1;47221:4:0;46698:535;46548:690;;;;;;:::o;53147:101::-;53199:13;53232:8;53225:15;;;;;:::i;9146:723::-;9202:13;9423:5;9432:1;9423:10;9419:53;;-1:-1:-1;;9450:10:0;;;;;;;;;;;;-1:-1:-1;;;9450:10:0;;;;;9146:723::o;9419:53::-;9497:5;9482:12;9538:78;9545:9;;9538:78;;9571:8;;;;:::i;:::-;;-1:-1:-1;9594:10:0;;-1:-1:-1;9602:2:0;9594:10;;:::i;:::-;;;9538:78;;;9626:19;9658:6;9648:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9648:17:0;;9626:39;;9676:154;9683:10;;9676:154;;9710:11;9720:1;9710:11;;:::i;:::-;;-1:-1:-1;9779:10:0;9787:2;9779:5;:10;:::i;:::-;9766:24;;:2;:24;:::i;:::-;9753:39;;9736:6;9743;9736:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;9807:11:0;9816:2;9807:11;;:::i;:::-;;;9676:154;;41879:1111;42007:12;;-1:-1:-1;;;;;42034:16:0;;42026:62;;;;-1:-1:-1;;;42026:62:0;;20317:2:1;42026:62:0;;;20299:21:1;20356:2;20336:18;;;20329:30;20395:34;20375:18;;;20368:62;20466:3;20446:18;;;20439:31;20487:19;;42026:62:0;20115:397:1;42026:62:0;42225:21;42233:12;41418;;-1:-1:-1;41408:22:0;41331:105;42225:21;42224:22;42216:64;;;;-1:-1:-1;;;42216:64:0;;20719:2:1;42216:64:0;;;20701:21:1;20758:2;20738:18;;;20731:30;20797:31;20777:18;;;20770:59;20846:18;;42216:64:0;20517:353:1;42216:64:0;42307:12;42295:8;:24;;42287:71;;;;-1:-1:-1;;;42287:71:0;;21077:2:1;42287:71:0;;;21059:21:1;21116:2;21096:18;;;21089:30;21155:34;21135:18;;;21128:62;21226:4;21206:18;;;21199:32;21248:19;;42287:71:0;20875:398:1;42287:71:0;-1:-1:-1;;;;;42437:12:0;;;;;;:8;:12;;;;;:33;;42461:8;;42437:12;:33;;42461:8;;-1:-1:-1;;;;;42437:33:0;;:::i;:::-;;;-1:-1:-1;;;;;42437:33:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42505:43:0;;;;;;;;-1:-1:-1;;;;;42505:43:0;;;;;;42531:15;42505:43;;;;;;;;;-1:-1:-1;42477:25:0;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;42477:71:0;-1:-1:-1;;;;;;42477:71:0;;;;;;;;;;;42489:12;;42601:281;42625:8;42621:1;:12;42601:281;;;42654:38;;42679:12;;-1:-1:-1;;;;;42654:38:0;;;42671:1;;42654:38;;42671:1;;42654:38;42719:59;42750:1;42754:2;42758:12;42772:5;42719:22;:59::i;:::-;42701:150;;;;-1:-1:-1;;;42701:150:0;;14521:2:1;42701:150:0;;;14503:21:1;14560:2;14540:18;;;14533:30;14599:34;14579:18;;;14572:62;14670:21;14650:18;;;14643:49;14709:19;;42701:150:0;14319:415:1;42701:150:0;42860:14;;;;:::i;:::-;;;;42635:3;;;;;:::i;:::-;;;;42601:281;;;-1:-1:-1;42890:12:0;:27;-1:-1:-1;;;;41879:1111:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1141:2;1120:15;-1:-1:-1;;1116:29:1;1107:39;;;;1148:4;1103:50;;901:258;-1:-1:-1;;901:258:1:o;1164:220::-;1313:2;1302:9;1295:21;1276:4;1333:45;1374:2;1363:9;1359:18;1351:6;1333:45;:::i;1389:180::-;1448:6;1501:2;1489:9;1480:7;1476:23;1472:32;1469:52;;;1517:1;1514;1507:12;1469:52;-1:-1:-1;1540:23:1;;1389:180;-1:-1:-1;1389:180:1:o;1805:196::-;1873:20;;-1:-1:-1;;;;;1922:54:1;;1912:65;;1902:93;;1991:1;1988;1981:12;1902:93;1805:196;;;:::o;2006:254::-;2074:6;2082;2135:2;2123:9;2114:7;2110:23;2106:32;2103:52;;;2151:1;2148;2141:12;2103:52;2174:29;2193:9;2174:29;:::i;:::-;2164:39;2250:2;2235:18;;;;2222:32;;-1:-1:-1;;;2006:254:1:o;2694:328::-;2771:6;2779;2787;2840:2;2828:9;2819:7;2815:23;2811:32;2808:52;;;2856:1;2853;2846:12;2808:52;2879:29;2898:9;2879:29;:::i;:::-;2869:39;;2927:38;2961:2;2950:9;2946:18;2927:38;:::i;:::-;2917:48;;3012:2;3001:9;2997:18;2984:32;2974:42;;2694:328;;;;;:::o;3027:615::-;3113:6;3121;3174:2;3162:9;3153:7;3149:23;3145:32;3142:52;;;3190:1;3187;3180:12;3142:52;3230:9;3217:23;3259:18;3300:2;3292:6;3289:14;3286:34;;;3316:1;3313;3306:12;3286:34;3354:6;3343:9;3339:22;3329:32;;3399:7;3392:4;3388:2;3384:13;3380:27;3370:55;;3421:1;3418;3411:12;3370:55;3461:2;3448:16;3487:2;3479:6;3476:14;3473:34;;;3503:1;3500;3493:12;3473:34;3556:7;3551:2;3541:6;3538:1;3534:14;3530:2;3526:23;3522:32;3519:45;3516:65;;;3577:1;3574;3567:12;3516:65;3608:2;3600:11;;;;;3630:6;;-1:-1:-1;3027:615:1;;-1:-1:-1;;;;3027:615:1:o;3647:184::-;-1:-1:-1;;;3696:1:1;3689:88;3796:4;3793:1;3786:15;3820:4;3817:1;3810:15;3836:632;3901:5;3931:18;3972:2;3964:6;3961:14;3958:40;;;3978:18;;:::i;:::-;4053:2;4047:9;4021:2;4107:15;;-1:-1:-1;;4103:24:1;;;4129:2;4099:33;4095:42;4083:55;;;4153:18;;;4173:22;;;4150:46;4147:72;;;4199:18;;:::i;:::-;4239:10;4235:2;4228:22;4268:6;4259:15;;4298:6;4290;4283:22;4338:3;4329:6;4324:3;4320:16;4317:25;4314:45;;;4355:1;4352;4345:12;4314:45;4405:6;4400:3;4393:4;4385:6;4381:17;4368:44;4460:1;4453:4;4444:6;4436;4432:19;4428:30;4421:41;;;;3836:632;;;;;:::o;4473:451::-;4542:6;4595:2;4583:9;4574:7;4570:23;4566:32;4563:52;;;4611:1;4608;4601:12;4563:52;4651:9;4638:23;4684:18;4676:6;4673:30;4670:50;;;4716:1;4713;4706:12;4670:50;4739:22;;4792:4;4784:13;;4780:27;-1:-1:-1;4770:55:1;;4821:1;4818;4811:12;4770:55;4844:74;4910:7;4905:2;4892:16;4887:2;4883;4879:11;4844:74;:::i;4929:186::-;4988:6;5041:2;5029:9;5020:7;5016:23;5012:32;5009:52;;;5057:1;5054;5047:12;5009:52;5080:29;5099:9;5080:29;:::i;5120:347::-;5185:6;5193;5246:2;5234:9;5225:7;5221:23;5217:32;5214:52;;;5262:1;5259;5252:12;5214:52;5285:29;5304:9;5285:29;:::i;:::-;5275:39;;5364:2;5353:9;5349:18;5336:32;5411:5;5404:13;5397:21;5390:5;5387:32;5377:60;;5433:1;5430;5423:12;5377:60;5456:5;5446:15;;;5120:347;;;;;:::o;5472:667::-;5567:6;5575;5583;5591;5644:3;5632:9;5623:7;5619:23;5615:33;5612:53;;;5661:1;5658;5651:12;5612:53;5684:29;5703:9;5684:29;:::i;:::-;5674:39;;5732:38;5766:2;5755:9;5751:18;5732:38;:::i;:::-;5722:48;;5817:2;5806:9;5802:18;5789:32;5779:42;;5872:2;5861:9;5857:18;5844:32;5899:18;5891:6;5888:30;5885:50;;;5931:1;5928;5921:12;5885:50;5954:22;;6007:4;5999:13;;5995:27;-1:-1:-1;5985:55:1;;6036:1;6033;6026:12;5985:55;6059:74;6125:7;6120:2;6107:16;6102:2;6098;6094:11;6059:74;:::i;:::-;6049:84;;;5472:667;;;;;;;:::o;6144:260::-;6212:6;6220;6273:2;6261:9;6252:7;6248:23;6244:32;6241:52;;;6289:1;6286;6279:12;6241:52;6312:29;6331:9;6312:29;:::i;:::-;6302:39;;6360:38;6394:2;6383:9;6379:18;6360:38;:::i;:::-;6350:48;;6144:260;;;;;:::o;6409:437::-;6488:1;6484:12;;;;6531;;;6552:61;;6606:4;6598:6;6594:17;6584:27;;6552:61;6659:2;6651:6;6648:14;6628:18;6625:38;6622:218;;-1:-1:-1;;;6693:1:1;6686:88;6797:4;6794:1;6787:15;6825:4;6822:1;6815:15;6622:218;;6409:437;;;:::o;8094:184::-;-1:-1:-1;;;8143:1:1;8136:88;8243:4;8240:1;8233:15;8267:4;8264:1;8257:15;8283:125;8323:4;8351:1;8348;8345:8;8342:34;;;8356:18;;:::i;:::-;-1:-1:-1;8393:9:1;;8283:125::o;8816:135::-;8855:3;8876:17;;;8873:43;;8896:18;;:::i;:::-;-1:-1:-1;8943:1:1;8932:13;;8816:135::o;10136:184::-;-1:-1:-1;;;10185:1:1;10178:88;10285:4;10282:1;10275:15;10309:4;10306:1;10299:15;10737:128;10777:3;10808:1;10804:6;10801:1;10798:13;10795:39;;;10814:18;;:::i;:::-;-1:-1:-1;10850:9:1;;10737:128::o;12447:184::-;12517:6;12570:2;12558:9;12549:7;12545:23;12541:32;12538:52;;;12586:1;12583;12576:12;12538:52;-1:-1:-1;12609:16:1;;12447:184;-1:-1:-1;12447:184:1:o;13043:168::-;13083:7;13149:1;13145;13141:6;13137:14;13134:1;13131:21;13126:1;13119:9;13112:17;13108:45;13105:71;;;13156:18;;:::i;:::-;-1:-1:-1;13196:9:1;;13043:168::o;15155:637::-;15435:3;15473:6;15467:13;15489:53;15535:6;15530:3;15523:4;15515:6;15511:17;15489:53;:::i;:::-;15605:13;;15564:16;;;;15627:57;15605:13;15564:16;15661:4;15649:17;;15627:57;:::i;:::-;15749:7;15706:20;;15735:22;;;15784:1;15773:13;;15155:637;-1:-1:-1;;;;15155:637:1:o;17436:246::-;17476:4;-1:-1:-1;;;;;17589:10:1;;;;17559;;17611:12;;;17608:38;;;17626:18;;:::i;:::-;17663:13;;17436:246;-1:-1:-1;;;17436:246:1:o;17687:253::-;17727:3;-1:-1:-1;;;;;17816:2:1;17813:1;17809:10;17846:2;17843:1;17839:10;17877:3;17873:2;17869:12;17864:3;17861:21;17858:47;;;17885:18;;:::i;:::-;17921:13;;17687:253;-1:-1:-1;;;;17687:253:1:o;18356:136::-;18395:3;18423:5;18413:39;;18432:18;;:::i;:::-;-1:-1:-1;;;18468:18:1;;18356:136::o;18913:512::-;19107:4;-1:-1:-1;;;;;19217:2:1;19209:6;19205:15;19194:9;19187:34;19269:2;19261:6;19257:15;19252:2;19241:9;19237:18;19230:43;;19309:6;19304:2;19293:9;19289:18;19282:34;19352:3;19347:2;19336:9;19332:18;19325:31;19373:46;19414:3;19403:9;19399:19;19391:6;19373:46;:::i;:::-;19365:54;18913:512;-1:-1:-1;;;;;;18913:512:1:o;19430:249::-;19499:6;19552:2;19540:9;19531:7;19527:23;19523:32;19520:52;;;19568:1;19565;19558:12;19520:52;19600:9;19594:16;19619:30;19643:5;19619:30;:::i;19684:184::-;-1:-1:-1;;;19733:1:1;19726:88;19833:4;19830:1;19823:15;19857:4;19854:1;19847:15;19873:120;19913:1;19939;19929:35;;19944:18;;:::i;:::-;-1:-1:-1;19978:9:1;;19873:120::o;19998:112::-;20030:1;20056;20046:35;;20061:18;;:::i;:::-;-1:-1:-1;20095:9:1;;19998:112::o
Swarm Source
ipfs://344ed7e128e88e68182068bfa99fa3e722cbd81eef6f60091679b1f083108b32
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.