Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
790 JRL
Holders
124
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 JRLLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
JackRabbitsLoot
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-02-16 */ // SPDX-License-Identifier: UNLICENSED /* -+*= .-*####= -*#######: :+########## :*#########%% +##########%@@. -#########%%@@@# .*########%%@@@@@. :#######%%@@@@@@@= +######%@@@@@@@@@# -: *####%%@@@@@@@@@@@: %@@%*-. .######%@@@@@@@@@@@+ *@@@@@@%*=: -#####%%@@@@@@@@@@@% *@@@@@@@@@@@#=: -#%###%@@@@@@@@@@@@@- =@@@@@@@@@@@@@@%*- =#####%@@@@@@@@@@@@@* %@@@@@@@@@@@@@@@@@#- =#####%@@@@@@@@@@@@@% =@@@@@@@@@@@@@@@@@@@@@#= -#####%@@@@@@@@@@@@@@: :@@@@@@@@@@@@@@@@@@@@@@@@@*: -####%%@@@@@@@@@@@@@@+ -@@@@@@@@@@@@@@@@@@@@@@@@@@@*. :#####%@@@@@@@@@@@@@@# %@@@%#%%%%@@@@@@@@@@@@@@@@@@@= .#####%@@@@@@@@@@@@@@%. *@@@%#####%%%@@@@@@@@@@@@@@@@* #####%@@@@@@@@@@@@@@%. +@@%##########%%%@@@@@@@@@@@@+ *####%@@@@@@@@@@@@@@@: .@@@##############%@@@@@@@@@@@. =####%@@@@@@@@@@@@@@@- .@%%###############%@@@@@@@@@@* :#####@@@@@@@@@@@@@@@+ +#%################%@@@@@@@@@@. *####%@@@@@@@@@@@@@@# .:-=**###########%%@@@@@@@@@* :####%@@@@@@@@@@@@@@% .:=#########@@@@@@@@@@: *####%@@@@@@@@@@@@@%. .#%######%@@@@@@@@@% :%###%@@@@@@@@@@@@@@: :########%@@@@@@@@@* *###%@@@@@@@@@@@@@@: -########@@@@@@@@@@- .%##%@@@@@@@@@@@@@@: =#######%@@@@@@@@@* :%##%@@@@@@@@@@@@@: =#######@@@@@@@@@% -###%@@@@@@@@@@@@: -#%####%@@@@@@@@@..:-----:.=###%@@@@@@@@@@@- :######@@@@@@@@@@@@@@@@@@@@%%%@@@@@@@@@@%: -####%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* :####%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+. =######@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#: :##%####%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@* =########%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%: +##########%%%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@: =#############%####%@@@@@@@@@@@@@@@%%%####%%%@@@@@@@. #########*=:. ..:=###%@@@@@@@@@@@@+-:....-+###%@@@@@+ :########: :*#%@@@@@@@@@+. +##%@@@@% =#######. .##@@@@@@@@* -##%@@@@ +#####%: ##@@@@@@@@+ *#%@@@@. +###### ##@@@@@@@@+ =#%@@@@: #######. ##@@@@@@@@+ =#%@@@@: ########: +#%@@@@@@@@%. .=#%@@@@@- #########*=: .=##%@@%=:+@@@@@*- .:+#%%@@@@@@= ##############**##%%%%@@= .#@@@@@@%%%%%%%@@@@@@@@@@= *#############%%@@@@@@@- *@@@@@@@@@@@@@@@@@@@@@@= .############@@@@@@@@@+ . %@@@@@@@@@@@@@@@@@@@@% :####**#%##%@@@@@@@@@. *@: +@@@@@@@@@@@@@%#%@@@* .. -%#%@@@@@@@@@%*+#@@@*+*@@@@@@@@@@@@%. .:. %#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+ #%@@=%@@@@+#@@@@@+@@@@@+*@@@@+*@@@= #%@@ %@@@@.=@@@@* @@@@@.=@@@@=+@@@: *%@@ %@@@@.:@@@@* @@@@@ =@@@@-=@@%. .-- :**** *#%%+ *###+ :***+ .=- */ // File: contracts/iTopiaToken.sol pragma solidity ^0.8.0; interface iTopiaToken { function balanceOf(address owner) external view returns (uint256); function transferFrom(address, address, uint256) external; function allowance( address owner, address spender ) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof( bytes32[] memory proof, bytes32 leaf ) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash( bytes32 a, bytes32 b ) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // 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 v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ 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 v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved( uint256 tokenId ) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll( address owner, address operator ) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (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: contracts/ERC721A.sol pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf( uint256 tokenId ) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI( uint256 tokenId ) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved( uint256 tokenId ) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll( address operator, bool approved ) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll( address owner, address operator ) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if ( to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data) ) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if ( !_checkContractOnERC721Received( address(0), to, updatedIndex++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership .startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership .startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId, address owner) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @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: contracts/JackRabbitsLoot.sol pragma solidity ^0.8.0; contract JackRabbitsLoot is Ownable, ERC721A, ReentrancyGuard { uint256 private maxSupply = 7777; bytes32 public freeMerkleRoot; bytes32 public whitelistMerkleRoot; mapping(address => uint256) public freeSnapshot; mapping(address => uint256) public whitelistSnapshot; bool public freeMintState = false; bool public whitelistMintState = false; uint256 public ethWhitelistPrice = 0.023 ether; uint256 public ethPublicPrice = 0.035 ether; uint256 public topiaWhitelistPrice = 680 ether; uint256 public topiaPublicPrice = 1035 ether; iTopiaToken private topiaToken; uint32 public publicMintStartTime; uint32 publicMintKey; constructor() ERC721A("Jack Rabbits Loot", "JRL") { topiaToken = iTopiaToken(0xcccCb68e1A848CBDB5b60a974E07aAE143ed40C3); } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function initialize() public onlyOwner { topiaToken.approve(address(this), 4326300000000000000000000); } function gift(address[] calldata receivers) external onlyOwner { require(totalSupply() + receivers.length <= maxSupply, "max mint"); for (uint256 i = 0; i < receivers.length; i++) { _safeMint(receivers[i], 1); } } function reserveGiveaway( uint256 num, address walletAddress ) external onlyOwner { require(totalSupply() + num <= maxSupply, "Exceeds total supply"); _safeMint(walletAddress, num); } function freeMint(bytes32[] memory _merkleProof) external callerIsUser { require(freeMintState, "Not Yet Active"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(_merkleProof, freeMerkleRoot, leaf), "Invalid Merkle Proof." ); require( (totalSupply() + 1) <= maxSupply, "Cannot mint beyond max supply" ); require( (freeSnapshot[msg.sender] + 1) <= 1, "Cannot mint beyond max limit" ); freeSnapshot[msg.sender] += 1; _safeMint(msg.sender, 1); } function ethWhitelistMint( uint256 quantity, bytes32[] calldata _merkleProof, uint256 maxQuantity ) external payable callerIsUser { require(whitelistMintState, "Not Yet Active"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender, maxQuantity)); require( MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf), "Invalid Merkle Proof." ); require(quantity > 0, "Quantity cannot be zero"); require( whitelistSnapshot[msg.sender] + quantity <= maxQuantity, "Max mint reached" ); require( msg.value >= ethWhitelistPrice * quantity, "insufficient funds" ); whitelistSnapshot[msg.sender] += quantity; _safeMint(msg.sender, quantity); refundIfOver(ethWhitelistPrice * quantity); } function topiaWhitelistMint( uint256 quantity, bytes32[] calldata _merkleProof, uint256 maxQuantity ) external payable callerIsUser { require(whitelistMintState, "Not Yet Active"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender, maxQuantity)); require( MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf), "Invalid Merkle Proof." ); require(quantity > 0, "Quantity cannot be zero"); require( whitelistSnapshot[msg.sender] + quantity <= maxQuantity, "Max mint reached" ); require( topiaToken.balanceOf(msg.sender) >= topiaWhitelistPrice * quantity, "insufficient topia funds" ); whitelistSnapshot[msg.sender] += quantity; topiaToken.transferFrom( msg.sender, address(this), topiaWhitelistPrice * quantity ); _safeMint(msg.sender, quantity); } function ethPublicMint( uint256 quantity, uint256 _publicMintKey ) external payable callerIsUser { require( publicMintKey == _publicMintKey, "called with incorrect public sale key" ); require( block.timestamp >= publicMintStartTime, "called before start time" ); require(msg.value >= ethPublicPrice * quantity, "insufficient funds"); require(totalSupply() + quantity <= maxSupply, "reached max supply"); _safeMint(msg.sender, quantity); refundIfOver(ethPublicPrice * quantity); } function topiaPublicMint( uint256 quantity, uint256 _publicMintKey ) external payable callerIsUser { require( publicMintKey == _publicMintKey, "called with incorrect public sale key" ); require( block.timestamp >= publicMintStartTime, "called before start time" ); require( topiaToken.balanceOf(msg.sender) >= topiaWhitelistPrice * quantity, "insufficient topia funds" ); require(totalSupply() + quantity <= maxSupply, "reached max supply"); topiaToken.transferFrom( msg.sender, address(this), topiaPublicPrice * quantity ); _safeMint(msg.sender, quantity); } function refundIfOver(uint256 price) private { require(msg.value >= price, "Need to send more ETH."); if (msg.value > price) { payable(msg.sender).transfer(msg.value - price); } } function setPublicMintKey(uint32 _key) external onlyOwner { publicMintKey = _key; } function setPublicMintStartTime(uint32 _time) external onlyOwner { publicMintStartTime = _time; } function setFreeMerkleRoot(bytes32 _merkleRoot) external onlyOwner { freeMerkleRoot = _merkleRoot; } function setWhitelistMerkleRoot(bytes32 _merkleRoot) external onlyOwner { whitelistMerkleRoot = _merkleRoot; } function toggleFreeMintState(bool _state) external onlyOwner { freeMintState = _state; } function toggleWhitelistMintState(bool _state) external onlyOwner { whitelistMintState = _state; } function setMaxSupply(uint256 _number) external onlyOwner { maxSupply = _number; } function setEthWhitelistPrice(uint256 _newWhitelistPrice) public onlyOwner { ethWhitelistPrice = _newWhitelistPrice; } function setTopiaWhitelistPrice(uint256 _newPrice) public onlyOwner { topiaWhitelistPrice = _newPrice; } function setEthPublicPrice(uint256 _newPrice) public onlyOwner { ethPublicPrice = _newPrice; } function setTopiaPublicPrice(uint256 _newPrice) public onlyOwner { topiaPublicPrice = _newPrice; } string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdraw() external nonReentrant { uint256 balance = address(this).balance; payable(0x759D2fb679A409bc222779e7c172040411d07f32).transfer((balance * 35) / 100); payable(0xDe08b60924b472a00E603748830c1D74a6Cba9c9).transfer((balance * 30) / 100); payable(0x69D99775Be2379303258A38e63F330AacBf4D7b9).transfer((balance * 20) / 100); payable(0xCEcdF9B3AD0E5b645d770B05758e8793F0ae6A7D).transfer((balance * 15) / 100); topiaToken.transferFrom( address(this), 0x759D2fb679A409bc222779e7c172040411d07f32, topiaToken.balanceOf(address(this)) ); } function loot() external nonReentrant { (bool success, ) = payable(0x759D2fb679A409bc222779e7c172040411d07f32).call{ value: address(this).balance }(""); require(success); topiaToken.transferFrom( address(this), 0x759D2fb679A409bc222779e7c172040411d07f32, topiaToken.balanceOf(address(this)) ); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData( uint256 tokenId ) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"_publicMintKey","type":"uint256"}],"name":"ethPublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ethPublicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"maxQuantity","type":"uint256"}],"name":"ethWhitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ethWhitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"loot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":"publicMintStartTime","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"address","name":"walletAddress","type":"address"}],"name":"reserveGiveaway","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setEthPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWhitelistPrice","type":"uint256"}],"name":"setEthWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setFreeMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_number","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_key","type":"uint32"}],"name":"setPublicMintKey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_time","type":"uint32"}],"name":"setPublicMintStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setTopiaPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setTopiaWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":"bool","name":"_state","type":"bool"}],"name":"toggleFreeMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"toggleWhitelistMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"_publicMintKey","type":"uint256"}],"name":"topiaPublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"topiaPublicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"maxQuantity","type":"uint256"}],"name":"topiaWhitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"topiaWhitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052611e61600a55600f805461ffff191690556651b660cdd58000601055667c5850872380006011556824dce54d34a1a0000060125568381b82a855c14c000060135534801562000051575f80fd5b5060405180604001604052806011815260200170129858dac8149858989a5d1cc8131bdbdd607a1b8152506040518060400160405280600381526020016212949360ea1b815250620000b2620000ac6200010660201b60201c565b6200010a565b6003620000c08382620001f7565b506004620000cf8282620001f7565b5060018081556009555050601480546001600160a01b03191673ccccb68e1a848cbdb5b60a974e07aae143ed40c3179055620002c3565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200018257607f821691505b602082108103620001a157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001f257805f5260205f20601f840160051c81016020851015620001ce5750805b601f840160051c820191505b81811015620001ef575f8155600101620001da565b50505b505050565b81516001600160401b0381111562000213576200021362000159565b6200022b816200022484546200016d565b84620001a7565b602080601f83116001811462000261575f8415620002495750858301515b5f19600386901b1c1916600185901b178555620002bb565b5f85815260208120601f198616915b82811015620002915788860151825594840194600190910190840162000270565b5085821015620002af57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b6132e580620002d15f395ff3fe6080604052600436106102f3575f3560e01c80637e1d7fb311610189578063bd32fb66116100d8578063e985e9c511610092578063f2fde38b1161006d578063f2fde38b146108bf578063f80bdc49146108de578063fa6968cf146108fd578063fc7a450814610912575f80fd5b8063e985e9c514610862578063ec5a346914610881578063f1dc1ad5146108ac575f80fd5b8063bd32fb66146107a3578063bedbf0d8146107c2578063c691878e146107d7578063c87b56dd146107ec578063d3cf00a31461080b578063dc33e68114610843575f80fd5b806395d89b4111610143578063a29b241e1161011e578063a29b241e14610749578063aa98e0c61461075c578063b47cfd8414610771578063b88d4fde14610784575f80fd5b806395d89b41146107025780639b7b2ab014610716578063a22cb4651461072a575f80fd5b80637e1d7fb3146106215780638129fc1c1461064057806388d15d50146106545780638da5cb5b14610673578063922400ff1461068f5780639231ab2a146106ad575f80fd5b806334cdcfc7116102455780636352211e116101ff5780636f8b44b0116101da5780636f8b44b0146105ba57806370a08231146105d9578063715018a6146105f857806379578abe1461060c575f80fd5b80636352211e1461055d578063638df30b1461057c57806368010d6e1461059b575f80fd5b806334cdcfc7146104ae578063375cca93146104cd5780633ccfd60b146104ec57806342842e0e1461050057806355f804b31461051f57806359756cc71461053e575f80fd5b806318160ddd116102b05780632359e25e1161028b5780632359e25e1461042c57806323b872dd1461045757806328a4d1a7146104765780633169ce4014610495575f80fd5b806318160ddd146103e65780631a34f65c146103fa5780631cc9c80114610419575f80fd5b806301ffc9a7146102f757806306fdde031461032b578063081812fc1461034c578063095ea7b31461038357806313ca5ffa146103a4578063163e1e61146103c7575b5f80fd5b348015610302575f80fd5b50610316610311366004612a12565b610931565b60405190151581526020015b60405180910390f35b348015610336575f80fd5b5061033f610982565b6040516103229190612a7a565b348015610357575f80fd5b5061036b610366366004612a8c565b610a12565b6040516001600160a01b039091168152602001610322565b34801561038e575f80fd5b506103a261039d366004612abe565b610a54565b005b3480156103af575f80fd5b506103b960105481565b604051908152602001610322565b3480156103d2575f80fd5b506103a26103e1366004612b2d565b610ae0565b3480156103f1575f80fd5b506103b9610ba4565b348015610405575f80fd5b506103a2610414366004612a8c565b610bb1565b6103a2610427366004612b6b565b610bdf565b348015610437575f80fd5b506103b9610446366004612b8b565b600d6020525f908152604090205481565b348015610462575f80fd5b506103a2610471366004612ba4565b610d55565b348015610481575f80fd5b506103a2610490366004612bdd565b610d60565b3480156104a0575f80fd5b50600f546103169060ff1681565b3480156104b9575f80fd5b506103a26104c8366004612c0d565b610daf565b3480156104d8575f80fd5b506103a26104e7366004612a8c565b610df2565b3480156104f7575f80fd5b506103a2610e20565b34801561050b575f80fd5b506103a261051a366004612ba4565b6110c1565b34801561052a575f80fd5b506103a2610539366004612c28565b6110db565b348015610549575f80fd5b506103a2610558366004612a8c565b611111565b348015610568575f80fd5b5061036b610577366004612a8c565b61113f565b348015610587575f80fd5b506103a2610596366004612a8c565b611150565b3480156105a6575f80fd5b506103a26105b5366004612c93565b61117e565b3480156105c5575f80fd5b506103a26105d4366004612a8c565b61120c565b3480156105e4575f80fd5b506103b96105f3366004612b8b565b61123a565b348015610603575f80fd5b506103a2611286565b348015610617575f80fd5b506103b960115481565b34801561062c575f80fd5b506103a261063b366004612c0d565b6112ba565b34801561064b575f80fd5b506103a26112f6565b34801561065f575f80fd5b506103a261066e366004612d01565b61139e565b34801561067e575f80fd5b505f546001600160a01b031661036b565b34801561069a575f80fd5b50600f5461031690610100900460ff1681565b3480156106b8575f80fd5b506106cc6106c7366004612a8c565b611539565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610322565b34801561070d575f80fd5b5061033f61155e565b348015610721575f80fd5b506103a261156d565b348015610735575f80fd5b506103a2610744366004612da1565b611679565b6103a2610757366004612b6b565b61170d565b348015610767575f80fd5b506103b9600c5481565b6103a261077f366004612dd6565b611961565b34801561078f575f80fd5b506103a261079e366004612e24565b611c61565b3480156107ae575f80fd5b506103a26107bd366004612a8c565b611cb2565b3480156107cd575f80fd5b506103b9600b5481565b3480156107e2575f80fd5b506103b960125481565b3480156107f7575f80fd5b5061033f610806366004612a8c565b611ce0565b348015610816575f80fd5b5060145461082e90600160a01b900463ffffffff1681565b60405163ffffffff9091168152602001610322565b34801561084e575f80fd5b506103b961085d366004612b8b565b611d61565b34801561086d575f80fd5b5061031661087c366004612edc565b611d6b565b34801561088c575f80fd5b506103b961089b366004612b8b565b600e6020525f908152604090205481565b6103a26108ba366004612dd6565b611d98565b3480156108ca575f80fd5b506103a26108d9366004612b8b565b611fab565b3480156108e9575f80fd5b506103a26108f8366004612a8c565b612042565b348015610908575f80fd5b506103b960135481565b34801561091d575f80fd5b506103a261092c366004612bdd565b612070565b5f6001600160e01b031982166380ac58cd60e01b148061096157506001600160e01b03198216635b5e139f60e01b145b8061097c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461099190612f04565b80601f01602080910402602001604051908101604052809291908181526020018280546109bd90612f04565b8015610a085780601f106109df57610100808354040283529160200191610a08565b820191905f5260205f20905b8154815290600101906020018083116109eb57829003601f168201915b5050505050905090565b5f610a1c826120bf565b610a39576040516333d1c03960e21b815260040160405180910390fd5b505f908152600760205260409020546001600160a01b031690565b5f610a5e8261113f565b9050806001600160a01b0316836001600160a01b031603610a925760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ab25750610ab08133611d6b565b155b15610ad0576040516367d9dca160e11b815260040160405180910390fd5b610adb8383836120f6565b505050565b5f546001600160a01b03163314610b125760405162461bcd60e51b8152600401610b0990612f3c565b60405180910390fd5b600a5481610b1e610ba4565b610b289190612f85565b1115610b615760405162461bcd60e51b81526020600482015260086024820152671b585e081b5a5b9d60c21b6044820152606401610b09565b5f5b81811015610adb57610b9c838383818110610b8057610b80612f98565b9050602002016020810190610b959190612b8b565b6001612151565b600101610b63565b600254600154035f190190565b5f546001600160a01b03163314610bda5760405162461bcd60e51b8152600401610b0990612f3c565b601155565b323314610bfe5760405162461bcd60e51b8152600401610b0990612fac565b601454600160c01b900463ffffffff168114610c2c5760405162461bcd60e51b8152600401610b0990612fe3565b601454600160a01b900463ffffffff16421015610c865760405162461bcd60e51b815260206004820152601860248201527763616c6c6564206265666f72652073746172742074696d6560401b6044820152606401610b09565b81601154610c949190613028565b341015610cd85760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b09565b600a5482610ce4610ba4565b610cee9190612f85565b1115610d315760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610b09565b610d3b3383612151565b610d5182601154610d4c9190613028565b61216a565b5050565b610adb8383836121ee565b5f546001600160a01b03163314610d895760405162461bcd60e51b8152600401610b0990612f3c565b6014805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b5f546001600160a01b03163314610dd85760405162461bcd60e51b8152600401610b0990612f3c565b600f80549115156101000261ff0019909216919091179055565b5f546001600160a01b03163314610e1b5760405162461bcd60e51b8152600401610b0990612f3c565b601255565b600260095403610e725760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b09565b60026009554773759d2fb679a409bc222779e7c172040411d07f326108fc6064610e9d846023613028565b610ea79190613053565b6040518115909202915f818181858888f19350505050158015610ecc573d5f803e3d5ffd5b5073de08b60924b472a00e603748830c1d74a6cba9c96108fc6064610ef284601e613028565b610efc9190613053565b6040518115909202915f818181858888f19350505050158015610f21573d5f803e3d5ffd5b507369d99775be2379303258a38e63f330aacbf4d7b96108fc6064610f47846014613028565b610f519190613053565b6040518115909202915f818181858888f19350505050158015610f76573d5f803e3d5ffd5b5073cecdf9b3ad0e5b645d770b05758e8793f0ae6a7d6108fc6064610f9c84600f613028565b610fa69190613053565b6040518115909202915f818181858888f19350505050158015610fcb573d5f803e3d5ffd5b506014546040516370a0823160e01b815230600482018190526001600160a01b03909216916323b872dd9173759d2fb679a409bc222779e7c172040411d07f329084906370a08231906024015b602060405180830381865afa158015611033573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110579190613066565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064015f604051808303815f87803b1580156110a3575f80fd5b505af11580156110b5573d5f803e3d5ffd5b50506001600955505050565b610adb83838360405180602001604052805f815250611c61565b5f546001600160a01b031633146111045760405162461bcd60e51b8152600401610b0990612f3c565b6015610adb8284836130c1565b5f546001600160a01b0316331461113a5760405162461bcd60e51b8152600401610b0990612f3c565b601355565b5f611149826123f7565b5192915050565b5f546001600160a01b031633146111795760405162461bcd60e51b8152600401610b0990612f3c565b600b55565b5f546001600160a01b031633146111a75760405162461bcd60e51b8152600401610b0990612f3c565b600a54826111b3610ba4565b6111bd9190612f85565b11156112025760405162461bcd60e51b81526020600482015260146024820152734578636565647320746f74616c20737570706c7960601b6044820152606401610b09565b610d518183612151565b5f546001600160a01b031633146112355760405162461bcd60e51b8152600401610b0990612f3c565b600a55565b5f6001600160a01b038216611262576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f908152600660205260409020546001600160401b031690565b5f546001600160a01b031633146112af5760405162461bcd60e51b8152600401610b0990612f3c565b6112b85f61251a565b565b5f546001600160a01b031633146112e35760405162461bcd60e51b8152600401610b0990612f3c565b600f805460ff1916911515919091179055565b5f546001600160a01b0316331461131f5760405162461bcd60e51b8152600401610b0990612f3c565b60145460405163095ea7b360e01b81523060048201526a039421316498382cf0000060248201526001600160a01b039091169063095ea7b3906044016020604051808303815f875af1158015611377573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139b919061317a565b50565b3233146113bd5760405162461bcd60e51b8152600401610b0990612fac565b600f5460ff166113df5760405162461bcd60e51b8152600401610b0990613195565b6040516001600160601b03193360601b1660208201525f9060340160405160208183030381529060405280519060200120905061141f82600b5483612569565b61143b5760405162461bcd60e51b8152600401610b09906131bd565b600a54611446610ba4565b611451906001612f85565b111561149f5760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f74206d696e74206265796f6e64206d617820737570706c790000006044820152606401610b09565b335f908152600d60205260409020546001906114bb9082612f85565b11156115095760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206d696e74206265796f6e64206d6178206c696d6974000000006044820152606401610b09565b335f908152600d60205260408120805460019290611528908490612f85565b90915550610d519050336001612151565b604080516060810182525f808252602082018190529181019190915261097c826123f7565b60606004805461099190612f04565b6002600954036115bf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b09565b60026009556040515f9073759d2fb679a409bc222779e7c172040411d07f329047908381818185875af1925050503d805f8114611617576040519150601f19603f3d011682016040523d82523d5f602084013e61161c565b606091505b5050905080611629575f80fd5b6014546040516370a0823160e01b815230600482018190526001600160a01b03909216916323b872dd9173759d2fb679a409bc222779e7c172040411d07f329084906370a0823190602401611018565b336001600160a01b038316036116a25760405163b06307db60e01b815260040160405180910390fd5b335f8181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b32331461172c5760405162461bcd60e51b8152600401610b0990612fac565b601454600160c01b900463ffffffff16811461175a5760405162461bcd60e51b8152600401610b0990612fe3565b601454600160a01b900463ffffffff164210156117b45760405162461bcd60e51b815260206004820152601860248201527763616c6c6564206265666f72652073746172742074696d6560401b6044820152606401610b09565b816012546117c29190613028565b6014546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611808573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061182c9190613066565b10156118755760405162461bcd60e51b8152602060048201526018602482015277696e73756666696369656e7420746f7069612066756e647360401b6044820152606401610b09565b600a5482611881610ba4565b61188b9190612f85565b11156118ce5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610b09565b6014546013546001600160a01b03909116906323b872dd90339030906118f5908790613028565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064015f604051808303815f87803b158015611941575f80fd5b505af1158015611953573d5f803e3d5ffd5b50505050610d513383612151565b3233146119805760405162461bcd60e51b8152600401610b0990612fac565b600f54610100900460ff166119a75760405162461bcd60e51b8152600401610b0990613195565b6040516001600160601b03193360601b166020820152603481018290525f90605401604051602081830303815290604052805190602001209050611a218484808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525050600c549150849050612569565b611a3d5760405162461bcd60e51b8152600401610b09906131bd565b5f8511611a865760405162461bcd60e51b81526020600482015260176024820152765175616e746974792063616e6e6f74206265207a65726f60481b6044820152606401610b09565b335f908152600e60205260409020548290611aa2908790612f85565b1115611ae35760405162461bcd60e51b815260206004820152601060248201526f13585e081b5a5b9d081c995858da195960821b6044820152606401610b09565b84601254611af19190613028565b6014546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611b37573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b5b9190613066565b1015611ba45760405162461bcd60e51b8152602060048201526018602482015277696e73756666696369656e7420746f7069612066756e647360401b6044820152606401610b09565b335f908152600e602052604081208054879290611bc2908490612f85565b90915550506014546012546001600160a01b03909116906323b872dd9033903090611bee908a90613028565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064015f604051808303815f87803b158015611c3a575f80fd5b505af1158015611c4c573d5f803e3d5ffd5b50505050611c5a3386612151565b5050505050565b611c6c8484846121ee565b6001600160a01b0383163b15158015611c8e5750611c8c8484848461257e565b155b15611cac576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b5f546001600160a01b03163314611cdb5760405162461bcd60e51b8152600401610b0990612f3c565b600c55565b6060611ceb826120bf565b611d0857604051630a14c4b560e41b815260040160405180910390fd5b5f611d11612666565b905080515f03611d2f5760405180602001604052805f815250611d5a565b80611d3984612675565b604051602001611d4a9291906131ec565b6040516020818303038152906040525b9392505050565b5f61097c82612771565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205460ff1690565b323314611db75760405162461bcd60e51b8152600401610b0990612fac565b600f54610100900460ff16611dde5760405162461bcd60e51b8152600401610b0990613195565b6040516001600160601b03193360601b166020820152603481018290525f90605401604051602081830303815290604052805190602001209050611e588484808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525050600c549150849050612569565b611e745760405162461bcd60e51b8152600401610b09906131bd565b5f8511611ebd5760405162461bcd60e51b81526020600482015260176024820152765175616e746974792063616e6e6f74206265207a65726f60481b6044820152606401610b09565b335f908152600e60205260409020548290611ed9908790612f85565b1115611f1a5760405162461bcd60e51b815260206004820152601060248201526f13585e081b5a5b9d081c995858da195960821b6044820152606401610b09565b84601054611f289190613028565b341015611f6c5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b09565b335f908152600e602052604081208054879290611f8a908490612f85565b90915550611f9a90503386612151565b611c5a85601054610d4c9190613028565b5f546001600160a01b03163314611fd45760405162461bcd60e51b8152600401610b0990612f3c565b6001600160a01b0381166120395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b09565b61139b8161251a565b5f546001600160a01b0316331461206b5760405162461bcd60e51b8152600401610b0990612f3c565b601055565b5f546001600160a01b031633146120995760405162461bcd60e51b8152600401610b0990612f3c565b6014805463ffffffff909216600160c01b0263ffffffff60c01b19909216919091179055565b5f816001111580156120d2575060015482105b801561097c5750505f90815260056020526040902054600160e01b900460ff161590565b5f8281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610d51828260405180602001604052805f8152506127c4565b803410156121b35760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610b09565b8034111561139b57336108fc6121c9833461321a565b6040518115909202915f818181858888f19350505050158015610d51573d5f803e3d5ffd5b5f6121f8826123f7565b80519091505f906001600160a01b0316336001600160a01b03161480612225575081516122259033611d6b565b8061224057503361223584610a12565b6001600160a01b0316145b90508061226057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b0316825f01516001600160a01b0316146122945760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166122bb57604051633a954ecd60e21b815260040160405180910390fd5b6122c95f84845f01516120f6565b6001600160a01b038581165f908152600660209081526040808320805467ffffffffffffffff198082166001600160401b039283165f1901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166123b0576001548110156123b05782515f8281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c5a565b604080516060810182525f80825260208201819052918101919091528180600111158015612426575060015481105b15612501575f81815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906124ff5780516001600160a01b031615612498579392505050565b505f19015f81815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156124fa579392505050565b612498565b505b604051636f96cda160e11b815260040160405180910390fd5b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f8261257585846127d1565b14949350505050565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a02906125b290339089908890889060040161322d565b6020604051808303815f875af19250505080156125ec575060408051601f3d908101601f191682019092526125e991810190613269565b60015b612648573d808015612619576040519150601f19603f3d011682016040523d82523d5f602084013e61261e565b606091505b5080515f03612640576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606015805461099190612f04565b6060815f0361269b5750506040805180820190915260018152600360fc1b602082015290565b815f5b81156126c457806126ae81613284565b91506126bd9050600a83613053565b915061269e565b5f816001600160401b038111156126dd576126dd612cbd565b6040519080825280601f01601f191660200182016040528015612707576020820181803683370190505b5090505b841561265e5761271c60018361321a565b9150612729600a8661329c565b612734906030612f85565b60f81b81838151811061274957612749612f98565b60200101906001600160f81b03191690815f1a90535061276a600a86613053565b945061270b565b5f6001600160a01b038216612799576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b03165f90815260066020526040902054600160401b90046001600160401b031690565b610adb8383836001612837565b5f81815b845181101561282f575f8582815181106127f1576127f1612f98565b60200260200101519050808311612816575f8381526020829052604090209250612826565b5f81815260208490526040902092505b506001016127d5565b509392505050565b6001546001600160a01b03851661286057604051622e076360e81b815260040160405180910390fd5b835f036128805760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0385165f81815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561292b57506001600160a01b0387163b15155b156129b0575b60405182906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461297a5f88848060010195508861257e565b612997576040516368d2bf6b60e11b815260040160405180910390fd5b8082036129315782600154146129ab575f80fd5b6129f4565b5b6040516001830192906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036129b1575b50600155611c5a565b6001600160e01b03198116811461139b575f80fd5b5f60208284031215612a22575f80fd5b8135611d5a816129fd565b5f5b83811015612a47578181015183820152602001612a2f565b50505f910152565b5f8151808452612a66816020860160208601612a2d565b601f01601f19169290920160200192915050565b602081525f611d5a6020830184612a4f565b5f60208284031215612a9c575f80fd5b5035919050565b80356001600160a01b0381168114612ab9575f80fd5b919050565b5f8060408385031215612acf575f80fd5b612ad883612aa3565b946020939093013593505050565b5f8083601f840112612af6575f80fd5b5081356001600160401b03811115612b0c575f80fd5b6020830191508360208260051b8501011115612b26575f80fd5b9250929050565b5f8060208385031215612b3e575f80fd5b82356001600160401b03811115612b53575f80fd5b612b5f85828601612ae6565b90969095509350505050565b5f8060408385031215612b7c575f80fd5b50508035926020909101359150565b5f60208284031215612b9b575f80fd5b611d5a82612aa3565b5f805f60608486031215612bb6575f80fd5b612bbf84612aa3565b9250612bcd60208501612aa3565b9150604084013590509250925092565b5f60208284031215612bed575f80fd5b813563ffffffff81168114611d5a575f80fd5b801515811461139b575f80fd5b5f60208284031215612c1d575f80fd5b8135611d5a81612c00565b5f8060208385031215612c39575f80fd5b82356001600160401b0380821115612c4f575f80fd5b818501915085601f830112612c62575f80fd5b813581811115612c70575f80fd5b866020828501011115612c81575f80fd5b60209290920196919550909350505050565b5f8060408385031215612ca4575f80fd5b82359150612cb460208401612aa3565b90509250929050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715612cf957612cf9612cbd565b604052919050565b5f6020808385031215612d12575f80fd5b82356001600160401b0380821115612d28575f80fd5b818501915085601f830112612d3b575f80fd5b813581811115612d4d57612d4d612cbd565b8060051b9150612d5e848301612cd1565b8181529183018401918481019088841115612d77575f80fd5b938501935b83851015612d9557843582529385019390850190612d7c565b98975050505050505050565b5f8060408385031215612db2575f80fd5b612dbb83612aa3565b91506020830135612dcb81612c00565b809150509250929050565b5f805f8060608587031215612de9575f80fd5b8435935060208501356001600160401b03811115612e05575f80fd5b612e1187828801612ae6565b9598909750949560400135949350505050565b5f805f8060808587031215612e37575f80fd5b612e4085612aa3565b93506020612e4f818701612aa3565b93506040860135925060608601356001600160401b0380821115612e71575f80fd5b818801915088601f830112612e84575f80fd5b813581811115612e9657612e96612cbd565b612ea8601f8201601f19168501612cd1565b91508082528984828501011115612ebd575f80fd5b80848401858401375f8482840101525080935050505092959194509250565b5f8060408385031215612eed575f80fd5b612ef683612aa3565b9150612cb460208401612aa3565b600181811c90821680612f1857607f821691505b602082108103612f3657634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561097c5761097c612f71565b634e487b7160e01b5f52603260045260245ffd5b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526025908201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60408201526465206b657960d81b606082015260800190565b808202811582820484141761097c5761097c612f71565b634e487b7160e01b5f52601260045260245ffd5b5f826130615761306161303f565b500490565b5f60208284031215613076575f80fd5b5051919050565b601f821115610adb57805f5260205f20601f840160051c810160208510156130a25750805b601f840160051c820191505b81811015611c5a575f81556001016130ae565b6001600160401b038311156130d8576130d8612cbd565b6130ec836130e68354612f04565b8361307d565b5f601f84116001811461311d575f85156131065750838201355b5f19600387901b1c1916600186901b178355611c5a565b5f83815260208120601f198716915b8281101561314c578685013582556020948501946001909201910161312c565b5086821015613168575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b5f6020828403121561318a575f80fd5b8151611d5a81612c00565b6020808252600e908201526d4e6f74205965742041637469766560901b604082015260600190565b60208082526015908201527424b73b30b634b21026b2b935b63290283937b7b31760591b604082015260600190565b5f83516131fd818460208801612a2d565b835190830190613211818360208801612a2d565b01949350505050565b8181038181111561097c5761097c612f71565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061325f90830184612a4f565b9695505050505050565b5f60208284031215613279575f80fd5b8151611d5a816129fd565b5f6001820161329557613295612f71565b5060010190565b5f826132aa576132aa61303f565b50069056fea2646970667358221220517a73673bd44218de2e4022bd6a39ed1071b3cf76cfa06f0252c630ca49c74a64736f6c63430008180033
Deployed Bytecode
0x6080604052600436106102f3575f3560e01c80637e1d7fb311610189578063bd32fb66116100d8578063e985e9c511610092578063f2fde38b1161006d578063f2fde38b146108bf578063f80bdc49146108de578063fa6968cf146108fd578063fc7a450814610912575f80fd5b8063e985e9c514610862578063ec5a346914610881578063f1dc1ad5146108ac575f80fd5b8063bd32fb66146107a3578063bedbf0d8146107c2578063c691878e146107d7578063c87b56dd146107ec578063d3cf00a31461080b578063dc33e68114610843575f80fd5b806395d89b4111610143578063a29b241e1161011e578063a29b241e14610749578063aa98e0c61461075c578063b47cfd8414610771578063b88d4fde14610784575f80fd5b806395d89b41146107025780639b7b2ab014610716578063a22cb4651461072a575f80fd5b80637e1d7fb3146106215780638129fc1c1461064057806388d15d50146106545780638da5cb5b14610673578063922400ff1461068f5780639231ab2a146106ad575f80fd5b806334cdcfc7116102455780636352211e116101ff5780636f8b44b0116101da5780636f8b44b0146105ba57806370a08231146105d9578063715018a6146105f857806379578abe1461060c575f80fd5b80636352211e1461055d578063638df30b1461057c57806368010d6e1461059b575f80fd5b806334cdcfc7146104ae578063375cca93146104cd5780633ccfd60b146104ec57806342842e0e1461050057806355f804b31461051f57806359756cc71461053e575f80fd5b806318160ddd116102b05780632359e25e1161028b5780632359e25e1461042c57806323b872dd1461045757806328a4d1a7146104765780633169ce4014610495575f80fd5b806318160ddd146103e65780631a34f65c146103fa5780631cc9c80114610419575f80fd5b806301ffc9a7146102f757806306fdde031461032b578063081812fc1461034c578063095ea7b31461038357806313ca5ffa146103a4578063163e1e61146103c7575b5f80fd5b348015610302575f80fd5b50610316610311366004612a12565b610931565b60405190151581526020015b60405180910390f35b348015610336575f80fd5b5061033f610982565b6040516103229190612a7a565b348015610357575f80fd5b5061036b610366366004612a8c565b610a12565b6040516001600160a01b039091168152602001610322565b34801561038e575f80fd5b506103a261039d366004612abe565b610a54565b005b3480156103af575f80fd5b506103b960105481565b604051908152602001610322565b3480156103d2575f80fd5b506103a26103e1366004612b2d565b610ae0565b3480156103f1575f80fd5b506103b9610ba4565b348015610405575f80fd5b506103a2610414366004612a8c565b610bb1565b6103a2610427366004612b6b565b610bdf565b348015610437575f80fd5b506103b9610446366004612b8b565b600d6020525f908152604090205481565b348015610462575f80fd5b506103a2610471366004612ba4565b610d55565b348015610481575f80fd5b506103a2610490366004612bdd565b610d60565b3480156104a0575f80fd5b50600f546103169060ff1681565b3480156104b9575f80fd5b506103a26104c8366004612c0d565b610daf565b3480156104d8575f80fd5b506103a26104e7366004612a8c565b610df2565b3480156104f7575f80fd5b506103a2610e20565b34801561050b575f80fd5b506103a261051a366004612ba4565b6110c1565b34801561052a575f80fd5b506103a2610539366004612c28565b6110db565b348015610549575f80fd5b506103a2610558366004612a8c565b611111565b348015610568575f80fd5b5061036b610577366004612a8c565b61113f565b348015610587575f80fd5b506103a2610596366004612a8c565b611150565b3480156105a6575f80fd5b506103a26105b5366004612c93565b61117e565b3480156105c5575f80fd5b506103a26105d4366004612a8c565b61120c565b3480156105e4575f80fd5b506103b96105f3366004612b8b565b61123a565b348015610603575f80fd5b506103a2611286565b348015610617575f80fd5b506103b960115481565b34801561062c575f80fd5b506103a261063b366004612c0d565b6112ba565b34801561064b575f80fd5b506103a26112f6565b34801561065f575f80fd5b506103a261066e366004612d01565b61139e565b34801561067e575f80fd5b505f546001600160a01b031661036b565b34801561069a575f80fd5b50600f5461031690610100900460ff1681565b3480156106b8575f80fd5b506106cc6106c7366004612a8c565b611539565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610322565b34801561070d575f80fd5b5061033f61155e565b348015610721575f80fd5b506103a261156d565b348015610735575f80fd5b506103a2610744366004612da1565b611679565b6103a2610757366004612b6b565b61170d565b348015610767575f80fd5b506103b9600c5481565b6103a261077f366004612dd6565b611961565b34801561078f575f80fd5b506103a261079e366004612e24565b611c61565b3480156107ae575f80fd5b506103a26107bd366004612a8c565b611cb2565b3480156107cd575f80fd5b506103b9600b5481565b3480156107e2575f80fd5b506103b960125481565b3480156107f7575f80fd5b5061033f610806366004612a8c565b611ce0565b348015610816575f80fd5b5060145461082e90600160a01b900463ffffffff1681565b60405163ffffffff9091168152602001610322565b34801561084e575f80fd5b506103b961085d366004612b8b565b611d61565b34801561086d575f80fd5b5061031661087c366004612edc565b611d6b565b34801561088c575f80fd5b506103b961089b366004612b8b565b600e6020525f908152604090205481565b6103a26108ba366004612dd6565b611d98565b3480156108ca575f80fd5b506103a26108d9366004612b8b565b611fab565b3480156108e9575f80fd5b506103a26108f8366004612a8c565b612042565b348015610908575f80fd5b506103b960135481565b34801561091d575f80fd5b506103a261092c366004612bdd565b612070565b5f6001600160e01b031982166380ac58cd60e01b148061096157506001600160e01b03198216635b5e139f60e01b145b8061097c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461099190612f04565b80601f01602080910402602001604051908101604052809291908181526020018280546109bd90612f04565b8015610a085780601f106109df57610100808354040283529160200191610a08565b820191905f5260205f20905b8154815290600101906020018083116109eb57829003601f168201915b5050505050905090565b5f610a1c826120bf565b610a39576040516333d1c03960e21b815260040160405180910390fd5b505f908152600760205260409020546001600160a01b031690565b5f610a5e8261113f565b9050806001600160a01b0316836001600160a01b031603610a925760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ab25750610ab08133611d6b565b155b15610ad0576040516367d9dca160e11b815260040160405180910390fd5b610adb8383836120f6565b505050565b5f546001600160a01b03163314610b125760405162461bcd60e51b8152600401610b0990612f3c565b60405180910390fd5b600a5481610b1e610ba4565b610b289190612f85565b1115610b615760405162461bcd60e51b81526020600482015260086024820152671b585e081b5a5b9d60c21b6044820152606401610b09565b5f5b81811015610adb57610b9c838383818110610b8057610b80612f98565b9050602002016020810190610b959190612b8b565b6001612151565b600101610b63565b600254600154035f190190565b5f546001600160a01b03163314610bda5760405162461bcd60e51b8152600401610b0990612f3c565b601155565b323314610bfe5760405162461bcd60e51b8152600401610b0990612fac565b601454600160c01b900463ffffffff168114610c2c5760405162461bcd60e51b8152600401610b0990612fe3565b601454600160a01b900463ffffffff16421015610c865760405162461bcd60e51b815260206004820152601860248201527763616c6c6564206265666f72652073746172742074696d6560401b6044820152606401610b09565b81601154610c949190613028565b341015610cd85760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b09565b600a5482610ce4610ba4565b610cee9190612f85565b1115610d315760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610b09565b610d3b3383612151565b610d5182601154610d4c9190613028565b61216a565b5050565b610adb8383836121ee565b5f546001600160a01b03163314610d895760405162461bcd60e51b8152600401610b0990612f3c565b6014805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b5f546001600160a01b03163314610dd85760405162461bcd60e51b8152600401610b0990612f3c565b600f80549115156101000261ff0019909216919091179055565b5f546001600160a01b03163314610e1b5760405162461bcd60e51b8152600401610b0990612f3c565b601255565b600260095403610e725760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b09565b60026009554773759d2fb679a409bc222779e7c172040411d07f326108fc6064610e9d846023613028565b610ea79190613053565b6040518115909202915f818181858888f19350505050158015610ecc573d5f803e3d5ffd5b5073de08b60924b472a00e603748830c1d74a6cba9c96108fc6064610ef284601e613028565b610efc9190613053565b6040518115909202915f818181858888f19350505050158015610f21573d5f803e3d5ffd5b507369d99775be2379303258a38e63f330aacbf4d7b96108fc6064610f47846014613028565b610f519190613053565b6040518115909202915f818181858888f19350505050158015610f76573d5f803e3d5ffd5b5073cecdf9b3ad0e5b645d770b05758e8793f0ae6a7d6108fc6064610f9c84600f613028565b610fa69190613053565b6040518115909202915f818181858888f19350505050158015610fcb573d5f803e3d5ffd5b506014546040516370a0823160e01b815230600482018190526001600160a01b03909216916323b872dd9173759d2fb679a409bc222779e7c172040411d07f329084906370a08231906024015b602060405180830381865afa158015611033573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110579190613066565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064015f604051808303815f87803b1580156110a3575f80fd5b505af11580156110b5573d5f803e3d5ffd5b50506001600955505050565b610adb83838360405180602001604052805f815250611c61565b5f546001600160a01b031633146111045760405162461bcd60e51b8152600401610b0990612f3c565b6015610adb8284836130c1565b5f546001600160a01b0316331461113a5760405162461bcd60e51b8152600401610b0990612f3c565b601355565b5f611149826123f7565b5192915050565b5f546001600160a01b031633146111795760405162461bcd60e51b8152600401610b0990612f3c565b600b55565b5f546001600160a01b031633146111a75760405162461bcd60e51b8152600401610b0990612f3c565b600a54826111b3610ba4565b6111bd9190612f85565b11156112025760405162461bcd60e51b81526020600482015260146024820152734578636565647320746f74616c20737570706c7960601b6044820152606401610b09565b610d518183612151565b5f546001600160a01b031633146112355760405162461bcd60e51b8152600401610b0990612f3c565b600a55565b5f6001600160a01b038216611262576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f908152600660205260409020546001600160401b031690565b5f546001600160a01b031633146112af5760405162461bcd60e51b8152600401610b0990612f3c565b6112b85f61251a565b565b5f546001600160a01b031633146112e35760405162461bcd60e51b8152600401610b0990612f3c565b600f805460ff1916911515919091179055565b5f546001600160a01b0316331461131f5760405162461bcd60e51b8152600401610b0990612f3c565b60145460405163095ea7b360e01b81523060048201526a039421316498382cf0000060248201526001600160a01b039091169063095ea7b3906044016020604051808303815f875af1158015611377573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139b919061317a565b50565b3233146113bd5760405162461bcd60e51b8152600401610b0990612fac565b600f5460ff166113df5760405162461bcd60e51b8152600401610b0990613195565b6040516001600160601b03193360601b1660208201525f9060340160405160208183030381529060405280519060200120905061141f82600b5483612569565b61143b5760405162461bcd60e51b8152600401610b09906131bd565b600a54611446610ba4565b611451906001612f85565b111561149f5760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f74206d696e74206265796f6e64206d617820737570706c790000006044820152606401610b09565b335f908152600d60205260409020546001906114bb9082612f85565b11156115095760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206d696e74206265796f6e64206d6178206c696d6974000000006044820152606401610b09565b335f908152600d60205260408120805460019290611528908490612f85565b90915550610d519050336001612151565b604080516060810182525f808252602082018190529181019190915261097c826123f7565b60606004805461099190612f04565b6002600954036115bf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b09565b60026009556040515f9073759d2fb679a409bc222779e7c172040411d07f329047908381818185875af1925050503d805f8114611617576040519150601f19603f3d011682016040523d82523d5f602084013e61161c565b606091505b5050905080611629575f80fd5b6014546040516370a0823160e01b815230600482018190526001600160a01b03909216916323b872dd9173759d2fb679a409bc222779e7c172040411d07f329084906370a0823190602401611018565b336001600160a01b038316036116a25760405163b06307db60e01b815260040160405180910390fd5b335f8181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b32331461172c5760405162461bcd60e51b8152600401610b0990612fac565b601454600160c01b900463ffffffff16811461175a5760405162461bcd60e51b8152600401610b0990612fe3565b601454600160a01b900463ffffffff164210156117b45760405162461bcd60e51b815260206004820152601860248201527763616c6c6564206265666f72652073746172742074696d6560401b6044820152606401610b09565b816012546117c29190613028565b6014546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611808573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061182c9190613066565b10156118755760405162461bcd60e51b8152602060048201526018602482015277696e73756666696369656e7420746f7069612066756e647360401b6044820152606401610b09565b600a5482611881610ba4565b61188b9190612f85565b11156118ce5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610b09565b6014546013546001600160a01b03909116906323b872dd90339030906118f5908790613028565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064015f604051808303815f87803b158015611941575f80fd5b505af1158015611953573d5f803e3d5ffd5b50505050610d513383612151565b3233146119805760405162461bcd60e51b8152600401610b0990612fac565b600f54610100900460ff166119a75760405162461bcd60e51b8152600401610b0990613195565b6040516001600160601b03193360601b166020820152603481018290525f90605401604051602081830303815290604052805190602001209050611a218484808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525050600c549150849050612569565b611a3d5760405162461bcd60e51b8152600401610b09906131bd565b5f8511611a865760405162461bcd60e51b81526020600482015260176024820152765175616e746974792063616e6e6f74206265207a65726f60481b6044820152606401610b09565b335f908152600e60205260409020548290611aa2908790612f85565b1115611ae35760405162461bcd60e51b815260206004820152601060248201526f13585e081b5a5b9d081c995858da195960821b6044820152606401610b09565b84601254611af19190613028565b6014546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611b37573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b5b9190613066565b1015611ba45760405162461bcd60e51b8152602060048201526018602482015277696e73756666696369656e7420746f7069612066756e647360401b6044820152606401610b09565b335f908152600e602052604081208054879290611bc2908490612f85565b90915550506014546012546001600160a01b03909116906323b872dd9033903090611bee908a90613028565b6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260448201526064015f604051808303815f87803b158015611c3a575f80fd5b505af1158015611c4c573d5f803e3d5ffd5b50505050611c5a3386612151565b5050505050565b611c6c8484846121ee565b6001600160a01b0383163b15158015611c8e5750611c8c8484848461257e565b155b15611cac576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b5f546001600160a01b03163314611cdb5760405162461bcd60e51b8152600401610b0990612f3c565b600c55565b6060611ceb826120bf565b611d0857604051630a14c4b560e41b815260040160405180910390fd5b5f611d11612666565b905080515f03611d2f5760405180602001604052805f815250611d5a565b80611d3984612675565b604051602001611d4a9291906131ec565b6040516020818303038152906040525b9392505050565b5f61097c82612771565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205460ff1690565b323314611db75760405162461bcd60e51b8152600401610b0990612fac565b600f54610100900460ff16611dde5760405162461bcd60e51b8152600401610b0990613195565b6040516001600160601b03193360601b166020820152603481018290525f90605401604051602081830303815290604052805190602001209050611e588484808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525050600c549150849050612569565b611e745760405162461bcd60e51b8152600401610b09906131bd565b5f8511611ebd5760405162461bcd60e51b81526020600482015260176024820152765175616e746974792063616e6e6f74206265207a65726f60481b6044820152606401610b09565b335f908152600e60205260409020548290611ed9908790612f85565b1115611f1a5760405162461bcd60e51b815260206004820152601060248201526f13585e081b5a5b9d081c995858da195960821b6044820152606401610b09565b84601054611f289190613028565b341015611f6c5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b09565b335f908152600e602052604081208054879290611f8a908490612f85565b90915550611f9a90503386612151565b611c5a85601054610d4c9190613028565b5f546001600160a01b03163314611fd45760405162461bcd60e51b8152600401610b0990612f3c565b6001600160a01b0381166120395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b09565b61139b8161251a565b5f546001600160a01b0316331461206b5760405162461bcd60e51b8152600401610b0990612f3c565b601055565b5f546001600160a01b031633146120995760405162461bcd60e51b8152600401610b0990612f3c565b6014805463ffffffff909216600160c01b0263ffffffff60c01b19909216919091179055565b5f816001111580156120d2575060015482105b801561097c5750505f90815260056020526040902054600160e01b900460ff161590565b5f8281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610d51828260405180602001604052805f8152506127c4565b803410156121b35760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610b09565b8034111561139b57336108fc6121c9833461321a565b6040518115909202915f818181858888f19350505050158015610d51573d5f803e3d5ffd5b5f6121f8826123f7565b80519091505f906001600160a01b0316336001600160a01b03161480612225575081516122259033611d6b565b8061224057503361223584610a12565b6001600160a01b0316145b90508061226057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b0316825f01516001600160a01b0316146122945760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166122bb57604051633a954ecd60e21b815260040160405180910390fd5b6122c95f84845f01516120f6565b6001600160a01b038581165f908152600660209081526040808320805467ffffffffffffffff198082166001600160401b039283165f1901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166123b0576001548110156123b05782515f8281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c5a565b604080516060810182525f80825260208201819052918101919091528180600111158015612426575060015481105b15612501575f81815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906124ff5780516001600160a01b031615612498579392505050565b505f19015f81815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156124fa579392505050565b612498565b505b604051636f96cda160e11b815260040160405180910390fd5b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f8261257585846127d1565b14949350505050565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a02906125b290339089908890889060040161322d565b6020604051808303815f875af19250505080156125ec575060408051601f3d908101601f191682019092526125e991810190613269565b60015b612648573d808015612619576040519150601f19603f3d011682016040523d82523d5f602084013e61261e565b606091505b5080515f03612640576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606015805461099190612f04565b6060815f0361269b5750506040805180820190915260018152600360fc1b602082015290565b815f5b81156126c457806126ae81613284565b91506126bd9050600a83613053565b915061269e565b5f816001600160401b038111156126dd576126dd612cbd565b6040519080825280601f01601f191660200182016040528015612707576020820181803683370190505b5090505b841561265e5761271c60018361321a565b9150612729600a8661329c565b612734906030612f85565b60f81b81838151811061274957612749612f98565b60200101906001600160f81b03191690815f1a90535061276a600a86613053565b945061270b565b5f6001600160a01b038216612799576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b03165f90815260066020526040902054600160401b90046001600160401b031690565b610adb8383836001612837565b5f81815b845181101561282f575f8582815181106127f1576127f1612f98565b60200260200101519050808311612816575f8381526020829052604090209250612826565b5f81815260208490526040902092505b506001016127d5565b509392505050565b6001546001600160a01b03851661286057604051622e076360e81b815260040160405180910390fd5b835f036128805760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0385165f81815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561292b57506001600160a01b0387163b15155b156129b0575b60405182906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461297a5f88848060010195508861257e565b612997576040516368d2bf6b60e11b815260040160405180910390fd5b8082036129315782600154146129ab575f80fd5b6129f4565b5b6040516001830192906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036129b1575b50600155611c5a565b6001600160e01b03198116811461139b575f80fd5b5f60208284031215612a22575f80fd5b8135611d5a816129fd565b5f5b83811015612a47578181015183820152602001612a2f565b50505f910152565b5f8151808452612a66816020860160208601612a2d565b601f01601f19169290920160200192915050565b602081525f611d5a6020830184612a4f565b5f60208284031215612a9c575f80fd5b5035919050565b80356001600160a01b0381168114612ab9575f80fd5b919050565b5f8060408385031215612acf575f80fd5b612ad883612aa3565b946020939093013593505050565b5f8083601f840112612af6575f80fd5b5081356001600160401b03811115612b0c575f80fd5b6020830191508360208260051b8501011115612b26575f80fd5b9250929050565b5f8060208385031215612b3e575f80fd5b82356001600160401b03811115612b53575f80fd5b612b5f85828601612ae6565b90969095509350505050565b5f8060408385031215612b7c575f80fd5b50508035926020909101359150565b5f60208284031215612b9b575f80fd5b611d5a82612aa3565b5f805f60608486031215612bb6575f80fd5b612bbf84612aa3565b9250612bcd60208501612aa3565b9150604084013590509250925092565b5f60208284031215612bed575f80fd5b813563ffffffff81168114611d5a575f80fd5b801515811461139b575f80fd5b5f60208284031215612c1d575f80fd5b8135611d5a81612c00565b5f8060208385031215612c39575f80fd5b82356001600160401b0380821115612c4f575f80fd5b818501915085601f830112612c62575f80fd5b813581811115612c70575f80fd5b866020828501011115612c81575f80fd5b60209290920196919550909350505050565b5f8060408385031215612ca4575f80fd5b82359150612cb460208401612aa3565b90509250929050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715612cf957612cf9612cbd565b604052919050565b5f6020808385031215612d12575f80fd5b82356001600160401b0380821115612d28575f80fd5b818501915085601f830112612d3b575f80fd5b813581811115612d4d57612d4d612cbd565b8060051b9150612d5e848301612cd1565b8181529183018401918481019088841115612d77575f80fd5b938501935b83851015612d9557843582529385019390850190612d7c565b98975050505050505050565b5f8060408385031215612db2575f80fd5b612dbb83612aa3565b91506020830135612dcb81612c00565b809150509250929050565b5f805f8060608587031215612de9575f80fd5b8435935060208501356001600160401b03811115612e05575f80fd5b612e1187828801612ae6565b9598909750949560400135949350505050565b5f805f8060808587031215612e37575f80fd5b612e4085612aa3565b93506020612e4f818701612aa3565b93506040860135925060608601356001600160401b0380821115612e71575f80fd5b818801915088601f830112612e84575f80fd5b813581811115612e9657612e96612cbd565b612ea8601f8201601f19168501612cd1565b91508082528984828501011115612ebd575f80fd5b80848401858401375f8482840101525080935050505092959194509250565b5f8060408385031215612eed575f80fd5b612ef683612aa3565b9150612cb460208401612aa3565b600181811c90821680612f1857607f821691505b602082108103612f3657634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561097c5761097c612f71565b634e487b7160e01b5f52603260045260245ffd5b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526025908201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60408201526465206b657960d81b606082015260800190565b808202811582820484141761097c5761097c612f71565b634e487b7160e01b5f52601260045260245ffd5b5f826130615761306161303f565b500490565b5f60208284031215613076575f80fd5b5051919050565b601f821115610adb57805f5260205f20601f840160051c810160208510156130a25750805b601f840160051c820191505b81811015611c5a575f81556001016130ae565b6001600160401b038311156130d8576130d8612cbd565b6130ec836130e68354612f04565b8361307d565b5f601f84116001811461311d575f85156131065750838201355b5f19600387901b1c1916600186901b178355611c5a565b5f83815260208120601f198716915b8281101561314c578685013582556020948501946001909201910161312c565b5086821015613168575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b5f6020828403121561318a575f80fd5b8151611d5a81612c00565b6020808252600e908201526d4e6f74205965742041637469766560901b604082015260600190565b60208082526015908201527424b73b30b634b21026b2b935b63290283937b7b31760591b604082015260600190565b5f83516131fd818460208801612a2d565b835190830190613211818360208801612a2d565b01949350505050565b8181038181111561097c5761097c612f71565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061325f90830184612a4f565b9695505050505050565b5f60208284031215613279575f80fd5b8151611d5a816129fd565b5f6001820161329557613295612f71565b5060010190565b5f826132aa576132aa61303f565b50069056fea2646970667358221220517a73673bd44218de2e4022bd6a39ed1071b3cf76cfa06f0252c630ca49c74a64736f6c63430008180033
Deployed Bytecode Sourcemap
58038:8926:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37408:321;;;;;;;;;;-1:-1:-1;37408:321:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37408:321:0;;;;;;;;40825:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42391:220::-;;;;;;;;;;-1:-1:-1;42391:220:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;42391:220:0;1533:203:1;41954:371:0;;;;;;;;;;-1:-1:-1;41954:371:0;;;;;:::i;:::-;;:::i;:::-;;58427:46;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;58427:46:0;2178:177:1;59146:258:0;;;;;;;;;;-1:-1:-1;59146:258:0;;;;;:::i;:::-;;:::i;36657:303::-;;;;;;;;;;;;;:::i;65005:108::-;;;;;;;;;;-1:-1:-1;65005:108:0;;;;;:::i;:::-;;:::i;62254:631::-;;;;;;:::i;:::-;;:::i;58225:47::-;;;;;;;;;;-1:-1:-1;58225:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;43322:170;;;;;;;;;;-1:-1:-1;43322:170:0;;;;;:::i;:::-;;:::i;64032:111::-;;;;;;;;;;-1:-1:-1;64032:111:0;;;;;:::i;:::-;;:::i;58340:33::-;;;;;;;;;;-1:-1:-1;58340:33:0;;;;;;;;64515:112;;;;;;;;;;-1:-1:-1;64515:112:0;;;;;:::i;:::-;;:::i;64879:118::-;;;;;;;;;;-1:-1:-1;64879:118:0;;;;;:::i;:::-;;:::i;65514:652::-;;;;;;;;;;;;;:::i;43563:185::-;;;;;;;;;;-1:-1:-1;43563:185:0;;;;;:::i;:::-;;:::i;65400:106::-;;;;;;;;;;-1:-1:-1;65400:106:0;;;;;:::i;:::-;;:::i;65121:112::-;;;;;;;;;;-1:-1:-1;65121:112:0;;;;;:::i;:::-;;:::i;40634:124::-;;;;;;;;;;-1:-1:-1;40634:124:0;;;;;:::i;:::-;;:::i;64151:114::-;;;;;;;;;;-1:-1:-1;64151:114:0;;;;;:::i;:::-;;:::i;59412:229::-;;;;;;;;;;-1:-1:-1;59412:229:0;;;;;:::i;:::-;;:::i;64635:96::-;;;;;;;;;;-1:-1:-1;64635:96:0;;;;;:::i;:::-;;:::i;37793:206::-;;;;;;;;;;-1:-1:-1;37793:206:0;;;;;:::i;:::-;;:::i;57115:103::-;;;;;;;;;;;;;:::i;58480:43::-;;;;;;;;;;;;;;;;64405:102;;;;;;;;;;-1:-1:-1;64405:102:0;;;;;:::i;:::-;;:::i;59020:118::-;;;;;;;;;;;;;:::i;59649:652::-;;;;;;;;;;-1:-1:-1;59649:652:0;;;;;:::i;:::-;;:::i;56464:87::-;;;;;;;;;;-1:-1:-1;56510:7:0;56537:6;-1:-1:-1;;;;;56537:6:0;56464:87;;58380:38;;;;;;;;;;-1:-1:-1;58380:38:0;;;;;;;;;;;66810:151;;;;;;;;;;-1:-1:-1;66810:151:0;;;;;:::i;:::-;;:::i;:::-;;;;7235:13:1;;-1:-1:-1;;;;;7231:39:1;7213:58;;7331:4;7319:17;;;7313:24;-1:-1:-1;;;;;7309:49:1;7287:20;;;7280:79;7417:17;;;7411:24;7404:32;7397:40;7375:20;;;7368:70;7201:2;7186:18;66810:151:0;7005:439:1;40994:104:0;;;;;;;;;;;;;:::i;66174:398::-;;;;;;;;;;;;;:::i;42683:312::-;;;;;;;;;;-1:-1:-1;42683:312:0;;;;;:::i;:::-;;:::i;62893:794::-;;;;;;:::i;:::-;;:::i;58182:34::-;;;;;;;;;;;;;;;;61220:1026;;;;;;:::i;:::-;;:::i;43819:406::-;;;;;;;;;;-1:-1:-1;43819:406:0;;;;;:::i;:::-;;:::i;64273:124::-;;;;;;;;;;-1:-1:-1;64273:124:0;;;;;:::i;:::-;;:::i;58146:29::-;;;;;;;;;;;;;;;;58532:46;;;;;;;;;;;;;;;;41169:381;;;;;;;;;;-1:-1:-1;41169:381:0;;;;;:::i;:::-;;:::i;58677:33::-;;;;;;;;;;-1:-1:-1;58677:33:0;;;;-1:-1:-1;;;58677:33:0;;;;;;;;;9688:10:1;9676:23;;;9658:42;;9646:2;9631:18;58677:33:0;9514:192:1;66689:113:0;;;;;;;;;;-1:-1:-1;66689:113:0;;;;;:::i;:::-;;:::i;43066:189::-;;;;;;;;;;-1:-1:-1;43066:189:0;;;;;:::i;:::-;;:::i;58279:52::-;;;;;;;;;;-1:-1:-1;58279:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;60309:903;;;;;;:::i;:::-;;:::i;57373:238::-;;;;;;;;;;-1:-1:-1;57373:238:0;;;;;:::i;:::-;;:::i;64739:132::-;;;;;;;;;;-1:-1:-1;64739:132:0;;;;;:::i;:::-;;:::i;58585:44::-;;;;;;;;;;;;;;;;63927:97;;;;;;;;;;-1:-1:-1;63927:97:0;;;;;:::i;:::-;;:::i;37408:321::-;37526:4;-1:-1:-1;;;;;;37563:40:0;;-1:-1:-1;;;37563:40:0;;:105;;-1:-1:-1;;;;;;;37620:48:0;;-1:-1:-1;;;37620:48:0;37563:105;:158;;;-1:-1:-1;;;;;;;;;;22390:40:0;;;37685:36;37543:178;37408:321;-1:-1:-1;;37408:321:0:o;40825:100::-;40879:13;40912:5;40905:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40825:100;:::o;42391:220::-;42475:7;42500:16;42508:7;42500;:16::i;:::-;42495:64;;42525:34;;-1:-1:-1;;;42525:34:0;;;;;;;;;;;42495:64;-1:-1:-1;42579:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42579:24:0;;42391:220::o;41954:371::-;42027:13;42043:24;42059:7;42043:15;:24::i;:::-;42027:40;;42088:5;-1:-1:-1;;;;;42082:11:0;:2;-1:-1:-1;;;;;42082:11:0;;42078:48;;42102:24;;-1:-1:-1;;;42102:24:0;;;;;;;;;;;42078:48;32836:10;-1:-1:-1;;;;;42143:21:0;;;;;;:63;;-1:-1:-1;42169:37:0;42186:5;32836:10;43066:189;:::i;42169:37::-;42168:38;42143:63;42139:138;;;42230:35;;-1:-1:-1;;;42230:35:0;;;;;;;;;;;42139:138;42289:28;42298:2;42302:7;42311:5;42289:8;:28::i;:::-;42016:309;41954:371;;:::o;59146:258::-;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;;;;;;;;;59264:9:::1;::::0;59244;59228:13:::1;:11;:13::i;:::-;:32;;;;:::i;:::-;:45;;59220:66;;;::::0;-1:-1:-1;;;59220:66:0;;11186:2:1;59220:66:0::1;::::0;::::1;11168:21:1::0;11225:1;11205:18;;;11198:29;-1:-1:-1;;;11243:18:1;;;11236:38;11291:18;;59220:66:0::1;10984:331:1::0;59220:66:0::1;59302:9;59297:100;59317:20:::0;;::::1;59297:100;;;59359:26;59369:9;;59379:1;59369:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;59383:1;59359:9;:26::i;:::-;59339:3;;59297:100;;36657:303:::0;36911:12;;66672:1;36895:13;:28;-1:-1:-1;;36895:46:0;;36657:303::o;65005:108::-;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;65079:14:::1;:26:::0;65005:108::o;62254:631::-;58934:9;58947:10;58934:23;58926:66;;;;-1:-1:-1;;;58926:66:0;;;;;;;:::i;:::-;62407:13:::1;::::0;-1:-1:-1;;;62407:13:0;::::1;;;:31:::0;::::1;62385:118;;;;-1:-1:-1::0;;;62385:118:0::1;;;;;;;:::i;:::-;62555:19;::::0;-1:-1:-1;;;62555:19:0;::::1;;;62536:15;:38;;62514:112;;;::::0;-1:-1:-1;;;62514:112:0;;12419:2:1;62514:112:0::1;::::0;::::1;12401:21:1::0;12458:2;12438:18;;;12431:30;-1:-1:-1;;;12477:18:1;;;12470:54;12541:18;;62514:112:0::1;12217:348:1::0;62514:112:0::1;62675:8;62658:14;;:25;;;;:::i;:::-;62645:9;:38;;62637:69;;;::::0;-1:-1:-1;;;62637:69:0;;12945:2:1;62637:69:0::1;::::0;::::1;12927:21:1::0;12984:2;12964:18;;;12957:30;-1:-1:-1;;;13003:18:1;;;12996:48;13061:18;;62637:69:0::1;12743:342:1::0;62637:69:0::1;62753:9;;62741:8;62725:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;62717:68;;;::::0;-1:-1:-1;;;62717:68:0;;13292:2:1;62717:68:0::1;::::0;::::1;13274:21:1::0;13331:2;13311:18;;;13304:30;-1:-1:-1;;;13350:18:1;;;13343:48;13408:18;;62717:68:0::1;13090:342:1::0;62717:68:0::1;62796:31;62806:10;62818:8;62796:9;:31::i;:::-;62838:39;62868:8;62851:14;;:25;;;;:::i;:::-;62838:12;:39::i;:::-;62254:631:::0;;:::o;43322:170::-;43456:28;43466:4;43472:2;43476:7;43456:9;:28::i;64032:111::-;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;64108:19:::1;:27:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;64108:27:0::1;-1:-1:-1::0;;;;64108:27:0;;::::1;::::0;;;::::1;::::0;;64032:111::o;64515:112::-;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;64592:18:::1;:27:::0;;;::::1;;;;-1:-1:-1::0;;64592:27:0;;::::1;::::0;;;::::1;::::0;;64515:112::o;64879:118::-;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;64958:19:::1;:31:::0;64879:118::o;65514:652::-;31132:1;31730:7;;:19;31722:63;;;;-1:-1:-1;;;31722:63:0;;13639:2:1;31722:63:0;;;13621:21:1;13678:2;13658:18;;;13651:30;13717:33;13697:18;;;13690:61;13768:18;;31722:63:0;13437:355:1;31722:63:0;31132:1;31863:7;:18;65585:21:::1;65625:42;65617:82;65695:3;65679:12;65585:21:::0;65689:2:::1;65679:12;:::i;:::-;65678:20;;;;:::i;:::-;65617:82;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;65718:42:0::1;65710:82;65788:3;65772:12;:7:::0;65782:2:::1;65772:12;:::i;:::-;65771:20;;;;:::i;:::-;65710:82;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;65811:42:0::1;65803:82;65881:3;65865:12;:7:::0;65875:2:::1;65865:12;:::i;:::-;65864:20;;;;:::i;:::-;65803:82;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;65904:42:0::1;65896:82;65974:3;65958:12;:7:::0;65968:2:::1;65958:12;:::i;:::-;65957:20;;;;:::i;:::-;65896:82;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;65989:10:0::1;::::0;66112:35:::1;::::0;-1:-1:-1;;;66112:35:0;;66035:4:::1;66112:35;::::0;::::1;1679:51:1::0;;;-1:-1:-1;;;;;65989:10:0;;::::1;::::0;:23:::1;::::0;66055:42:::1;::::0;65989:10;;66112:20:::1;::::0;1652:18:1;;66112:35:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65989:169;::::0;-1:-1:-1;;;;;;65989:169:0::1;::::0;;;;;;-1:-1:-1;;;;;14501:15:1;;;65989:169:0::1;::::0;::::1;14483:34:1::0;14553:15;;;;14533:18;;;14526:43;14585:18;;;14578:34;14418:18;;65989:169:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;31088:1:0;32042:7;:22;-1:-1:-1;;;65514:652:0:o;43563:185::-;43701:39;43718:4;43724:2;43728:7;43701:39;;;;;;;;;;;;:16;:39::i;65400:106::-;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;65475:13:::1;:23;65491:7:::0;;65475:13;:23:::1;:::i;65121:112::-:0;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;65197:16:::1;:28:::0;65121:112::o;40634:124::-;40698:7;40725:20;40737:7;40725:11;:20::i;:::-;:25;;40634:124;-1:-1:-1;;40634:124:0:o;64151:114::-;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;64229:14:::1;:28:::0;64151:114::o;59412:229::-;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;59559:9:::1;;59552:3;59536:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;59528:65;;;::::0;-1:-1:-1;;;59528:65:0;;16848:2:1;59528:65:0::1;::::0;::::1;16830:21:1::0;16887:2;16867:18;;;16860:30;-1:-1:-1;;;16906:18:1;;;16899:50;16966:18;;59528:65:0::1;16646:344:1::0;59528:65:0::1;59604:29;59614:13;59629:3;59604:9;:29::i;64635:96::-:0;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;64704:9:::1;:19:::0;64635:96::o;37793:206::-;37857:7;-1:-1:-1;;;;;37881:19:0;;37877:60;;37909:28;;-1:-1:-1;;;37909:28:0;;;;;;;;;;;37877:60;-1:-1:-1;;;;;;37963:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37963:27:0;;37793:206::o;57115:103::-;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;57180:30:::1;57207:1;57180:18;:30::i;:::-;57115:103::o:0;64405:102::-;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;64477:13:::1;:22:::0;;-1:-1:-1;;64477:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64405:102::o;59020:118::-;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;59070:10:::1;::::0;:60:::1;::::0;-1:-1:-1;;;59070:60:0;;59097:4:::1;59070:60;::::0;::::1;17201:51:1::0;59104:25:0::1;17268:18:1::0;;;17261:34;-1:-1:-1;;;;;59070:10:0;;::::1;::::0;:18:::1;::::0;17174::1;;59070:60:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59020:118::o:0;59649:652::-;58934:9;58947:10;58934:23;58926:66;;;;-1:-1:-1;;;58926:66:0;;;;;;;:::i;:::-;59739:13:::1;::::0;::::1;;59731:40;;;;-1:-1:-1::0;;;59731:40:0::1;;;;;;;:::i;:::-;59807:28;::::0;-1:-1:-1;;;;;;59824:10:0::1;18048:2:1::0;18044:15;18040:53;59807:28:0::1;::::0;::::1;18028:66:1::0;59782:12:0::1;::::0;18110::1;;59807:28:0::1;;;;;;;;;;;;59797:39;;;;;;59782:54;;59869;59888:12;59902:14;;59918:4;59869:18;:54::i;:::-;59847:125;;;;-1:-1:-1::0;;;59847:125:0::1;;;;;;;:::i;:::-;60028:9;;60006:13;:11;:13::i;:::-;:17;::::0;60022:1:::1;60006:17;:::i;:::-;60005:32;;59983:111;;;::::0;-1:-1:-1;;;59983:111:0;;18685:2:1;59983:111:0::1;::::0;::::1;18667:21:1::0;18724:2;18704:18;;;18697:30;18763:31;18743:18;;;18736:59;18812:18;;59983:111:0::1;18483:353:1::0;59983:111:0::1;60141:10;60128:24;::::0;;;:12:::1;:24;::::0;;;;;60161:1:::1;::::0;60128:28:::1;::::0;60161:1;60128:28:::1;:::i;:::-;60127:35;;60105:113;;;::::0;-1:-1:-1;;;60105:113:0;;19043:2:1;60105:113:0::1;::::0;::::1;19025:21:1::0;19082:2;19062:18;;;19055:30;19121;19101:18;;;19094:58;19169:18;;60105:113:0::1;18841:352:1::0;60105:113:0::1;60242:10;60229:24;::::0;;;:12:::1;:24;::::0;;;;:29;;60257:1:::1;::::0;60229:24;:29:::1;::::0;60257:1;;60229:29:::1;:::i;:::-;::::0;;;-1:-1:-1;60269:24:0::1;::::0;-1:-1:-1;60279:10:0::1;60291:1;60269:9;:24::i;66810:151::-:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;66933:20:0;66945:7;66933:11;:20::i;40994:104::-;41050:13;41083:7;41076:14;;;;;:::i;66174:398::-;31132:1;31730:7;;:19;31722:63;;;;-1:-1:-1;;;31722:63:0;;13639:2:1;31722:63:0;;;13621:21:1;13678:2;13658:18;;;13651:30;13717:33;13697:18;;;13690:61;13768:18;;31722:63:0;13437:355:1;31722:63:0;31132:1;31863:7;:18;66242:114:::1;::::0;66224:12:::1;::::0;66250:42:::1;::::0;66320:21:::1;::::0;66224:12;66242:114;66224:12;66242:114;66320:21;66250:42;66242:114:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66223:133;;;66375:7;66367:16;;;::::0;::::1;;66395:10;::::0;66518:35:::1;::::0;-1:-1:-1;;;66518:35:0;;66441:4:::1;66518:35;::::0;::::1;1679:51:1::0;;;-1:-1:-1;;;;;66395:10:0;;::::1;::::0;:23:::1;::::0;66461:42:::1;::::0;66395:10;;66518:20:::1;::::0;1652:18:1;;66518:35:0::1;1533:203:1::0;42683:312:0;32836:10;-1:-1:-1;;;;;42807:24:0;;;42803:54;;42840:17;;-1:-1:-1;;;42840:17:0;;;;;;;;;;;42803:54;32836:10;42870:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42870:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42870:53:0;;;;;;;;;;42939:48;;540:41:1;;;42870:42:0;;32836:10;42939:48;;513:18:1;42939:48:0;;;;;;;42683:312;;:::o;62893:794::-;58934:9;58947:10;58934:23;58926:66;;;;-1:-1:-1;;;58926:66:0;;;;;;;:::i;:::-;63048:13:::1;::::0;-1:-1:-1;;;63048:13:0;::::1;;;:31:::0;::::1;63026:118;;;;-1:-1:-1::0;;;63026:118:0::1;;;;;;;:::i;:::-;63196:19;::::0;-1:-1:-1;;;63196:19:0;::::1;;;63177:15;:38;;63155:112;;;::::0;-1:-1:-1;;;63155:112:0;;12419:2:1;63155:112:0::1;::::0;::::1;12401:21:1::0;12458:2;12438:18;;;12431:30;-1:-1:-1;;;12477:18:1;;;12470:54;12541:18;;63155:112:0::1;12217:348:1::0;63155:112:0::1;63358:8;63336:19;;:30;;;;:::i;:::-;63300:10;::::0;:32:::1;::::0;-1:-1:-1;;;63300:32:0;;63321:10:::1;63300:32;::::0;::::1;1679:51:1::0;-1:-1:-1;;;;;63300:10:0;;::::1;::::0;:20:::1;::::0;1652:18:1;;63300:32:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:66;;63278:140;;;::::0;-1:-1:-1;;;63278:140:0;;19610:2:1;63278:140:0::1;::::0;::::1;19592:21:1::0;19649:2;19629:18;;;19622:30;-1:-1:-1;;;19668:18:1;;;19661:54;19732:18;;63278:140:0::1;19408:348:1::0;63278:140:0::1;63465:9;;63453:8;63437:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;63429:68;;;::::0;-1:-1:-1;;;63429:68:0;;13292:2:1;63429:68:0::1;::::0;::::1;13274:21:1::0;13331:2;13311:18;;;13304:30;-1:-1:-1;;;13350:18:1;;;13343:48;13408:18;;63429:68:0::1;13090:342:1::0;63429:68:0::1;63508:10;::::0;63599:16:::1;::::0;-1:-1:-1;;;;;63508:10:0;;::::1;::::0;:23:::1;::::0;63546:10:::1;::::0;63579:4:::1;::::0;63599:27:::1;::::0;63618:8;;63599:27:::1;:::i;:::-;63508:129;::::0;-1:-1:-1;;;;;;63508:129:0::1;::::0;;;;;;-1:-1:-1;;;;;14501:15:1;;;63508:129:0::1;::::0;::::1;14483:34:1::0;14553:15;;;;14533:18;;;14526:43;14585:18;;;14578:34;14418:18;;63508:129:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;63648:31;63658:10;63670:8;63648:9;:31::i;61220:1026::-:0;58934:9;58947:10;58934:23;58926:66;;;;-1:-1:-1;;;58926:66:0;;;;;;;:::i;:::-;61403:18:::1;::::0;::::1;::::0;::::1;;;61395:45;;;;-1:-1:-1::0;;;61395:45:0::1;;;;;;;:::i;:::-;61476:41;::::0;-1:-1:-1;;;;;;61493:10:0::1;19938:2:1::0;19934:15;19930:53;61476:41:0::1;::::0;::::1;19918:66:1::0;20000:12;;;19993:28;;;61451:12:0::1;::::0;20037::1;;61476:41:0::1;;;;;;;;;;;;61466:52;;;;;;61451:67;;61551:59;61570:12;;61551:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;61584:19:0::1;::::0;;-1:-1:-1;61605:4:0;;-1:-1:-1;61551:18:0::1;:59::i;:::-;61529:130;;;;-1:-1:-1::0;;;61529:130:0::1;;;;;;;:::i;:::-;61689:1;61678:8;:12;61670:48;;;::::0;-1:-1:-1;;;61670:48:0;;20262:2:1;61670:48:0::1;::::0;::::1;20244:21:1::0;20301:2;20281:18;;;20274:30;-1:-1:-1;;;20320:18:1;;;20313:53;20383:18;;61670:48:0::1;20060:347:1::0;61670:48:0::1;61769:10;61751:29;::::0;;;:17:::1;:29;::::0;;;;;61795:11;;61751:40:::1;::::0;61783:8;;61751:40:::1;:::i;:::-;:55;;61729:121;;;::::0;-1:-1:-1;;;61729:121:0;;20614:2:1;61729:121:0::1;::::0;::::1;20596:21:1::0;20653:2;20633:18;;;20626:30;-1:-1:-1;;;20672:18:1;;;20665:46;20728:18;;61729:121:0::1;20412:340:1::0;61729:121:0::1;61941:8;61919:19;;:30;;;;:::i;:::-;61883:10;::::0;:32:::1;::::0;-1:-1:-1;;;61883:32:0;;61904:10:::1;61883:32;::::0;::::1;1679:51:1::0;-1:-1:-1;;;;;61883:10:0;;::::1;::::0;:20:::1;::::0;1652:18:1;;61883:32:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:66;;61861:140;;;::::0;-1:-1:-1;;;61861:140:0;;19610:2:1;61861:140:0::1;::::0;::::1;19592:21:1::0;19649:2;19629:18;;;19622:30;-1:-1:-1;;;19668:18:1;;;19661:54;19732:18;;61861:140:0::1;19408:348:1::0;61861:140:0::1;62030:10;62012:29;::::0;;;:17:::1;:29;::::0;;;;:41;;62045:8;;62012:29;:41:::1;::::0;62045:8;;62012:41:::1;:::i;:::-;::::0;;;-1:-1:-1;;62064:10:0::1;::::0;62155:19:::1;::::0;-1:-1:-1;;;;;62064:10:0;;::::1;::::0;:23:::1;::::0;62102:10:::1;::::0;62135:4:::1;::::0;62155:30:::1;::::0;62177:8;;62155:30:::1;:::i;:::-;62064:132;::::0;-1:-1:-1;;;;;;62064:132:0::1;::::0;;;;;;-1:-1:-1;;;;;14501:15:1;;;62064:132:0::1;::::0;::::1;14483:34:1::0;14553:15;;;;14533:18;;;14526:43;14585:18;;;14578:34;14418:18;;62064:132:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;62207:31;62217:10;62229:8;62207:9;:31::i;:::-;61384:862;61220:1026:::0;;;;:::o;43819:406::-;43986:28;43996:4;44002:2;44006:7;43986:9;:28::i;:::-;-1:-1:-1;;;;;44043:13:0;;12021:19;:23;;44043:89;;;;;44076:56;44107:4;44113:2;44117:7;44126:5;44076:30;:56::i;:::-;44075:57;44043:89;44025:193;;;44166:40;;-1:-1:-1;;;44166:40:0;;;;;;;;;;;44025:193;43819:406;;;;:::o;64273:124::-;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;64356:19:::1;:33:::0;64273:124::o;41169:381::-;41258:13;41289:16;41297:7;41289;:16::i;:::-;41284:59;;41314:29;;-1:-1:-1;;;41314:29:0;;;;;;;;;;;41284:59;41356:21;41380:10;:8;:10::i;:::-;41356:34;;41427:7;41421:21;41446:1;41421:26;:121;;;;;;;;;;;;;;;;;41491:7;41500:18;:7;:16;:18::i;:::-;41474:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41421:121;41401:141;41169:381;-1:-1:-1;;;41169:381:0:o;66689:113::-;66747:7;66774:20;66788:5;66774:13;:20::i;43066:189::-;-1:-1:-1;;;;;43212:25:0;;;43188:4;43212:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43066:189::o;60309:903::-;58934:9;58947:10;58934:23;58926:66;;;;-1:-1:-1;;;58926:66:0;;;;;;;:::i;:::-;60490:18:::1;::::0;::::1;::::0;::::1;;;60482:45;;;;-1:-1:-1::0;;;60482:45:0::1;;;;;;;:::i;:::-;60563:41;::::0;-1:-1:-1;;;;;;60580:10:0::1;19938:2:1::0;19934:15;19930:53;60563:41:0::1;::::0;::::1;19918:66:1::0;20000:12;;;19993:28;;;60538:12:0::1;::::0;20037::1;;60563:41:0::1;;;;;;;;;;;;60553:52;;;;;;60538:67;;60638:59;60657:12;;60638:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;60671:19:0::1;::::0;;-1:-1:-1;60692:4:0;;-1:-1:-1;60638:18:0::1;:59::i;:::-;60616:130;;;;-1:-1:-1::0;;;60616:130:0::1;;;;;;;:::i;:::-;60776:1;60765:8;:12;60757:48;;;::::0;-1:-1:-1;;;60757:48:0;;20262:2:1;60757:48:0::1;::::0;::::1;20244:21:1::0;20301:2;20281:18;;;20274:30;-1:-1:-1;;;20320:18:1;;;20313:53;20383:18;;60757:48:0::1;20060:347:1::0;60757:48:0::1;60856:10;60838:29;::::0;;;:17:::1;:29;::::0;;;;;60882:11;;60838:40:::1;::::0;60870:8;;60838:40:::1;:::i;:::-;:55;;60816:121;;;::::0;-1:-1:-1;;;60816:121:0;;20614:2:1;60816:121:0::1;::::0;::::1;20596:21:1::0;20653:2;20633:18;;;20626:30;-1:-1:-1;;;20672:18:1;;;20665:46;20728:18;;60816:121:0::1;20412:340:1::0;60816:121:0::1;61003:8;60983:17;;:28;;;;:::i;:::-;60970:9;:41;;60948:109;;;::::0;-1:-1:-1;;;60948:109:0;;12945:2:1;60948:109:0::1;::::0;::::1;12927:21:1::0;12984:2;12964:18;;;12957:30;-1:-1:-1;;;13003:18:1;;;12996:48;13061:18;;60948:109:0::1;12743:342:1::0;60948:109:0::1;61086:10;61068:29;::::0;;;:17:::1;:29;::::0;;;;:41;;61101:8;;61068:29;:41:::1;::::0;61101:8;;61068:41:::1;:::i;:::-;::::0;;;-1:-1:-1;61120:31:0::1;::::0;-1:-1:-1;61130:10:0::1;61142:8:::0;61120:9:::1;:31::i;:::-;61162:42;61195:8;61175:17;;:28;;;;:::i;57373:238::-:0;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57476:22:0;::::1;57454:110;;;::::0;-1:-1:-1;;;57454:110:0;;21460:2:1;57454:110:0::1;::::0;::::1;21442:21:1::0;21499:2;21479:18;;;21472:30;21538:34;21518:18;;;21511:62;-1:-1:-1;;;21589:18:1;;;21582:36;21635:19;;57454:110:0::1;21258:402:1::0;57454:110:0::1;57575:28;57594:8;57575:18;:28::i;64739:132::-:0;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;64825:17:::1;:38:::0;64739:132::o;63927:97::-;56510:7;56537:6;-1:-1:-1;;;;;56537:6:0;32836:10;56684:23;56676:68;;;;-1:-1:-1;;;56676:68:0;;;;;;;:::i;:::-;63996:13:::1;:20:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;63996:20:0::1;-1:-1:-1::0;;;;63996:20:0;;::::1;::::0;;;::::1;::::0;;63927:97::o;44480:213::-;44537:4;44593:7;66672:1;44574:26;;:66;;;;;44627:13;;44617:7;:23;44574:66;:111;;;;-1:-1:-1;;44658:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;44658:27:0;;;;44657:28;;44480:213::o;52326:162::-;52407:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;52407:29:0;-1:-1:-1;;;;;52407:29:0;;;;;;;;;52452:28;;52407:24;;52452:28;;;;;;;52326:162;;;:::o;44701:104::-;44770:27;44780:2;44784:8;44770:27;;;;;;;;;;;;:9;:27::i;63695:224::-;63772:5;63759:9;:18;;63751:53;;;;-1:-1:-1;;;63751:53:0;;21867:2:1;63751:53:0;;;21849:21:1;21906:2;21886:18;;;21879:30;-1:-1:-1;;;21925:18:1;;;21918:52;21987:18;;63751:53:0;21665:346:1;63751:53:0;63831:5;63819:9;:17;63815:97;;;63861:10;63853:47;63882:17;63894:5;63882:9;:17;:::i;:::-;63853:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47810:2104;47891:35;47929:20;47941:7;47929:11;:20::i;:::-;48004:18;;47891:58;;-1:-1:-1;47962:22:0;;-1:-1:-1;;;;;47988:34:0;32836:10;-1:-1:-1;;;;;47988:34:0;;:101;;;-1:-1:-1;48056:18:0;;48039:50;;32836:10;43066:189;:::i;48039:50::-;47988:154;;;-1:-1:-1;32836:10:0;48106:20;48118:7;48106:11;:20::i;:::-;-1:-1:-1;;;;;48106:36:0;;47988:154;47962:181;;48161:17;48156:66;;48187:35;;-1:-1:-1;;;48187:35:0;;;;;;;;;;;48156:66;48259:4;-1:-1:-1;;;;;48237:26:0;:13;:18;;;-1:-1:-1;;;;;48237:26:0;;48233:67;;48272:28;;-1:-1:-1;;;48272:28:0;;;;;;;;;;;48233:67;-1:-1:-1;;;;;48315:16:0;;48311:52;;48340:23;;-1:-1:-1;;;48340:23:0;;;;;;;;;;;48311:52;48484:49;48501:1;48505:7;48514:13;:18;;;48484:8;:49::i;:::-;-1:-1:-1;;;;;48829:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;48829:31:0;;;-1:-1:-1;;;;;48829:31:0;;;-1:-1:-1;;48829:31:0;;;;;;;48875:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;48875:29:0;;;;;;;;;;;48921:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;48966:61:0;;;;-1:-1:-1;;;49011:15:0;48966:61;;;;;;;;;;;49301:11;;;49331:24;;;;;:29;49301:11;;49331:29;49327:471;;49556:13;;49542:11;:27;49538:245;;;49626:18;;;49594:24;;;:11;:24;;;;;;;;:50;;49709:54;;;;-1:-1:-1;;;;;49667:96:0;-1:-1:-1;;;49667:96:0;-1:-1:-1;;;;;;49667:96:0;;;-1:-1:-1;;;;;49594:50:0;;;49667:96;;;;;;;49538:245;48804:1005;49845:7;49841:2;-1:-1:-1;;;;;49826:27:0;49835:4;-1:-1:-1;;;;;49826:27:0;;;;;;;;;;;49864:42;43819:406;39448:1124;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;39574:7:0;;66672:1;39623:23;;:47;;;;;39657:13;;39650:4;:20;39623:47;39619:886;;;39691:31;39725:17;;;:11;:17;;;;;;;;;39691:51;;;;;;;;;-1:-1:-1;;;;;39691:51:0;;;;-1:-1:-1;;;39691:51:0;;-1:-1:-1;;;;;39691:51:0;;;;;;;;-1:-1:-1;;;39691:51:0;;;;;;;;;;;;;;39761:729;;39811:14;;-1:-1:-1;;;;;39811:28:0;;39807:101;;39875:9;39448:1124;-1:-1:-1;;;39448:1124:0:o;39807:101::-;-1:-1:-1;;;40250:6:0;40295:17;;;;:11;:17;;;;;;;;;40283:29;;;;;;;;;-1:-1:-1;;;;;40283:29:0;;;;;-1:-1:-1;;;40283:29:0;;-1:-1:-1;;;;;40283:29:0;;;;;;;;-1:-1:-1;;;40283:29:0;;;;;;;;;;;;;40343:28;40339:109;;40411:9;39448:1124;-1:-1:-1;;;39448:1124:0:o;40339:109::-;40210:261;;;39672:833;39619:886;40533:31;;-1:-1:-1;;;40533:31:0;;;;;;;;;;;57771:191;57845:16;57864:6;;-1:-1:-1;;;;;57881:17:0;;;-1:-1:-1;;;;;;57881:17:0;;;;;;57914:40;;57864:6;;;;;;;57914:40;;57845:16;57914:40;57834:128;57771:191;:::o;6832:190::-;6957:4;7010;6981:25;6994:5;7001:4;6981:12;:25::i;:::-;:33;;6832:190;-1:-1:-1;;;;6832:190:0:o;52980:772::-;53177:155;;-1:-1:-1;;;53177:155:0;;53143:4;;-1:-1:-1;;;;;53177:36:0;;;;;:155;;32836:10;;53263:4;;53286:7;;53312:5;;53177:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53177:155:0;;;;;;;;-1:-1:-1;;53177:155:0;;;;;;;;;;;;:::i;:::-;;;53160:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53503:6;:13;53520:1;53503:18;53499:235;;53549:40;;-1:-1:-1;;;53549:40:0;;;;;;;;;;;53499:235;53692:6;53686:13;53677:6;53673:2;53669:15;53662:38;53160:585;-1:-1:-1;;;;;;53388:55:0;-1:-1:-1;;;53388:55:0;;-1:-1:-1;53160:585:0;52980:772;;;;;;:::o;65278:114::-;65338:13;65371;65364:20;;;;;:::i;8711:723::-;8767:13;8988:5;8997:1;8988:10;8984:53;;-1:-1:-1;;9015:10:0;;;;;;;;;;;;-1:-1:-1;;;9015:10:0;;;;;8711:723::o;8984:53::-;9062:5;9047:12;9103:78;9110:9;;9103:78;;9136:8;;;;:::i;:::-;;-1:-1:-1;9159:10:0;;-1:-1:-1;9167:2:0;9159:10;;:::i;:::-;;;9103:78;;;9191:19;9223:6;-1:-1:-1;;;;;9213:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9213:17:0;;9191:39;;9241:154;9248:10;;9241:154;;9275:11;9285:1;9275:11;;:::i;:::-;;-1:-1:-1;9344:10:0;9352:2;9344:5;:10;:::i;:::-;9331:24;;:2;:24;:::i;:::-;9318:39;;9301:6;9308;9301:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9301:56:0;;;;;;;;-1:-1:-1;9372:11:0;9381:2;9372:11;;:::i;:::-;;;9241:154;;38081:207;38142:7;-1:-1:-1;;;;;38166:19:0;;38162:59;;38194:27;;-1:-1:-1;;;38194:27:0;;;;;;;;;;;38162:59;-1:-1:-1;;;;;;38247:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;38247:32:0;;-1:-1:-1;;;;;38247:32:0;;38081:207::o;45168:163::-;45291:32;45297:2;45301:8;45311:5;45318:4;45291:5;:32::i;7384:700::-;7492:7;7535:4;7492:7;7550:497;7574:5;:12;7570:1;:16;7550:497;;;7608:20;7631:5;7637:1;7631:8;;;;;;;;:::i;:::-;;;;;;;7608:31;;7674:12;7658;:28;7654:382;;8185:13;8235:15;;;8271:4;8264:15;;;8318:4;8302:21;;7786:57;;7654:382;;;8185:13;8235:15;;;8271:4;8264:15;;;8318:4;8302:21;;7963:57;;7654:382;-1:-1:-1;7588:3:0;;7550:497;;;-1:-1:-1;8064:12:0;7384:700;-1:-1:-1;;;7384:700:0:o;45590:1966::-;45752:13;;-1:-1:-1;;;;;45780:16:0;;45776:48;;45805:19;;-1:-1:-1;;;45805:19:0;;;;;;;;;;;45776:48;45839:8;45851:1;45839:13;45835:44;;45861:18;;-1:-1:-1;;;45861:18:0;;;;;;;;;;;45835:44;-1:-1:-1;;;;;46230:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;46289:49:0;;-1:-1:-1;;;;;46230:44:0;;;;;;;46289:49;;;-1:-1:-1;;;;;46230:44:0;;;;;;46289:49;;;;;;;;;;;;;;;;46355:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;46405:66:0;;;;-1:-1:-1;;;46455:15:0;46405:66;;;;;;;;;;46355:25;46552:23;;;46596:4;:23;;;;-1:-1:-1;;;;;;46604:13:0;;12021:19;:23;;46604:15;46592:832;;;46640:505;46671:38;;46696:12;;-1:-1:-1;;;;;46671:38:0;;;46688:1;;46671:38;;46688:1;;46671:38;46763:212;46832:1;46865:2;46898:14;;;;;;46943:5;46763:30;:212::i;:::-;46732:365;;47033:40;;-1:-1:-1;;;47033:40:0;;;;;;;;;;;46732:365;47140:3;47124:12;:19;46640:505;;47226:12;47209:13;;:29;47205:43;;47240:8;;;47205:43;46592:832;;;47289:120;47320:40;;47345:14;;;;;-1:-1:-1;;;;;47320:40:0;;;47337:1;;47320:40;;47337:1;;47320:40;47404:3;47388:12;:19;47289:120;;46592:832;-1:-1:-1;47438:13:0;:28;47488:60;43819:406;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:367::-;2423:8;2433:6;2487:3;2480:4;2472:6;2468:17;2464:27;2454:55;;2505:1;2502;2495:12;2454:55;-1:-1:-1;2528:20:1;;-1:-1:-1;;;;;2560:30:1;;2557:50;;;2603:1;2600;2593:12;2557:50;2640:4;2632:6;2628:17;2616:29;;2700:3;2693:4;2683:6;2680:1;2676:14;2668:6;2664:27;2660:38;2657:47;2654:67;;;2717:1;2714;2707:12;2654:67;2360:367;;;;;:::o;2732:437::-;2818:6;2826;2879:2;2867:9;2858:7;2854:23;2850:32;2847:52;;;2895:1;2892;2885:12;2847:52;2935:9;2922:23;-1:-1:-1;;;;;2960:6:1;2957:30;2954:50;;;3000:1;2997;2990:12;2954:50;3039:70;3101:7;3092:6;3081:9;3077:22;3039:70;:::i;:::-;3128:8;;3013:96;;-1:-1:-1;2732:437:1;-1:-1:-1;;;;2732:437:1:o;3174:248::-;3242:6;3250;3303:2;3291:9;3282:7;3278:23;3274:32;3271:52;;;3319:1;3316;3309:12;3271:52;-1:-1:-1;;3342:23:1;;;3412:2;3397:18;;;3384:32;;-1:-1:-1;3174:248:1:o;3427:186::-;3486:6;3539:2;3527:9;3518:7;3514:23;3510:32;3507:52;;;3555:1;3552;3545:12;3507:52;3578:29;3597:9;3578:29;:::i;3618:328::-;3695:6;3703;3711;3764:2;3752:9;3743:7;3739:23;3735:32;3732:52;;;3780:1;3777;3770:12;3732:52;3803:29;3822:9;3803:29;:::i;:::-;3793:39;;3851:38;3885:2;3874:9;3870:18;3851:38;:::i;:::-;3841:48;;3936:2;3925:9;3921:18;3908:32;3898:42;;3618:328;;;;;:::o;3951:276::-;4009:6;4062:2;4050:9;4041:7;4037:23;4033:32;4030:52;;;4078:1;4075;4068:12;4030:52;4117:9;4104:23;4167:10;4160:5;4156:22;4149:5;4146:33;4136:61;;4193:1;4190;4183:12;4232:118;4318:5;4311:13;4304:21;4297:5;4294:32;4284:60;;4340:1;4337;4330:12;4355:241;4411:6;4464:2;4452:9;4443:7;4439:23;4435:32;4432:52;;;4480:1;4477;4470:12;4432:52;4519:9;4506:23;4538:28;4560:5;4538:28;:::i;4601:592::-;4672:6;4680;4733:2;4721:9;4712:7;4708:23;4704:32;4701:52;;;4749:1;4746;4739:12;4701:52;4789:9;4776:23;-1:-1:-1;;;;;4859:2:1;4851:6;4848:14;4845:34;;;4875:1;4872;4865:12;4845:34;4913:6;4902:9;4898:22;4888:32;;4958:7;4951:4;4947:2;4943:13;4939:27;4929:55;;4980:1;4977;4970:12;4929:55;5020:2;5007:16;5046:2;5038:6;5035:14;5032:34;;;5062:1;5059;5052:12;5032:34;5107:7;5102:2;5093:6;5089:2;5085:15;5081:24;5078:37;5075:57;;;5128:1;5125;5118:12;5075:57;5159:2;5151:11;;;;;5181:6;;-1:-1:-1;4601:592:1;;-1:-1:-1;;;;4601:592:1:o;5383:254::-;5451:6;5459;5512:2;5500:9;5491:7;5487:23;5483:32;5480:52;;;5528:1;5525;5518:12;5480:52;5564:9;5551:23;5541:33;;5593:38;5627:2;5616:9;5612:18;5593:38;:::i;:::-;5583:48;;5383:254;;;;;:::o;5642:127::-;5703:10;5698:3;5694:20;5691:1;5684:31;5734:4;5731:1;5724:15;5758:4;5755:1;5748:15;5774:275;5845:2;5839:9;5910:2;5891:13;;-1:-1:-1;;5887:27:1;5875:40;;-1:-1:-1;;;;;5930:34:1;;5966:22;;;5927:62;5924:88;;;5992:18;;:::i;:::-;6028:2;6021:22;5774:275;;-1:-1:-1;5774:275:1:o;6054:946::-;6138:6;6169:2;6212;6200:9;6191:7;6187:23;6183:32;6180:52;;;6228:1;6225;6218:12;6180:52;6268:9;6255:23;-1:-1:-1;;;;;6338:2:1;6330:6;6327:14;6324:34;;;6354:1;6351;6344:12;6324:34;6392:6;6381:9;6377:22;6367:32;;6437:7;6430:4;6426:2;6422:13;6418:27;6408:55;;6459:1;6456;6449:12;6408:55;6495:2;6482:16;6517:2;6513;6510:10;6507:36;;;6523:18;;:::i;:::-;6569:2;6566:1;6562:10;6552:20;;6592:28;6616:2;6612;6608:11;6592:28;:::i;:::-;6654:15;;;6724:11;;;6720:20;;;6685:12;;;;6752:19;;;6749:39;;;6784:1;6781;6774:12;6749:39;6808:11;;;;6828:142;6844:6;6839:3;6836:15;6828:142;;;6910:17;;6898:30;;6861:12;;;;6948;;;;6828:142;;;6989:5;6054:946;-1:-1:-1;;;;;;;;6054:946:1:o;7449:315::-;7514:6;7522;7575:2;7563:9;7554:7;7550:23;7546:32;7543:52;;;7591:1;7588;7581:12;7543:52;7614:29;7633:9;7614:29;:::i;:::-;7604:39;;7693:2;7682:9;7678:18;7665:32;7706:28;7728:5;7706:28;:::i;:::-;7753:5;7743:15;;;7449:315;;;;;:::o;7951:573::-;8055:6;8063;8071;8079;8132:2;8120:9;8111:7;8107:23;8103:32;8100:52;;;8148:1;8145;8138:12;8100:52;8184:9;8171:23;8161:33;;8245:2;8234:9;8230:18;8217:32;-1:-1:-1;;;;;8264:6:1;8261:30;8258:50;;;8304:1;8301;8294:12;8258:50;8343:70;8405:7;8396:6;8385:9;8381:22;8343:70;:::i;:::-;7951:573;;8432:8;;-1:-1:-1;8317:96:1;;8514:2;8499:18;8486:32;;7951:573;-1:-1:-1;;;;7951:573:1:o;8529:980::-;8624:6;8632;8640;8648;8701:3;8689:9;8680:7;8676:23;8672:33;8669:53;;;8718:1;8715;8708:12;8669:53;8741:29;8760:9;8741:29;:::i;:::-;8731:39;;8789:2;8810:38;8844:2;8833:9;8829:18;8810:38;:::i;:::-;8800:48;;8895:2;8884:9;8880:18;8867:32;8857:42;;8950:2;8939:9;8935:18;8922:32;-1:-1:-1;;;;;9014:2:1;9006:6;9003:14;9000:34;;;9030:1;9027;9020:12;9000:34;9068:6;9057:9;9053:22;9043:32;;9113:7;9106:4;9102:2;9098:13;9094:27;9084:55;;9135:1;9132;9125:12;9084:55;9171:2;9158:16;9193:2;9189;9186:10;9183:36;;;9199:18;;:::i;:::-;9241:53;9284:2;9265:13;;-1:-1:-1;;9261:27:1;9257:36;;9241:53;:::i;:::-;9228:66;;9317:2;9310:5;9303:17;9357:7;9352:2;9347;9343;9339:11;9335:20;9332:33;9329:53;;;9378:1;9375;9368:12;9329:53;9433:2;9428;9424;9420:11;9415:2;9408:5;9404:14;9391:45;9477:1;9472:2;9467;9460:5;9456:14;9452:23;9445:34;;9498:5;9488:15;;;;;8529:980;;;;;;;:::o;9711:260::-;9779:6;9787;9840:2;9828:9;9819:7;9815:23;9811:32;9808:52;;;9856:1;9853;9846:12;9808:52;9879:29;9898:9;9879:29;:::i;:::-;9869:39;;9927:38;9961:2;9950:9;9946:18;9927:38;:::i;9976:380::-;10055:1;10051:12;;;;10098;;;10119:61;;10173:4;10165:6;10161:17;10151:27;;10119:61;10226:2;10218:6;10215:14;10195:18;10192:38;10189:161;;10272:10;10267:3;10263:20;10260:1;10253:31;10307:4;10304:1;10297:15;10335:4;10332:1;10325:15;10189:161;;9976:380;;;:::o;10361:356::-;10563:2;10545:21;;;10582:18;;;10575:30;10641:34;10636:2;10621:18;;10614:62;10708:2;10693:18;;10361:356::o;10722:127::-;10783:10;10778:3;10774:20;10771:1;10764:31;10814:4;10811:1;10804:15;10838:4;10835:1;10828:15;10854:125;10919:9;;;10940:10;;;10937:36;;;10953:18;;:::i;11320:127::-;11381:10;11376:3;11372:20;11369:1;11362:31;11412:4;11409:1;11402:15;11436:4;11433:1;11426:15;11452:354;11654:2;11636:21;;;11693:2;11673:18;;;11666:30;11732:32;11727:2;11712:18;;11705:60;11797:2;11782:18;;11452:354::o;11811:401::-;12013:2;11995:21;;;12052:2;12032:18;;;12025:30;12091:34;12086:2;12071:18;;12064:62;-1:-1:-1;;;12157:2:1;12142:18;;12135:35;12202:3;12187:19;;11811:401::o;12570:168::-;12643:9;;;12674;;12691:15;;;12685:22;;12671:37;12661:71;;12712:18;;:::i;13797:127::-;13858:10;13853:3;13849:20;13846:1;13839:31;13889:4;13886:1;13879:15;13913:4;13910:1;13903:15;13929:120;13969:1;13995;13985:35;;14000:18;;:::i;:::-;-1:-1:-1;14034:9:1;;13929:120::o;14054:184::-;14124:6;14177:2;14165:9;14156:7;14152:23;14148:32;14145:52;;;14193:1;14190;14183:12;14145:52;-1:-1:-1;14216:16:1;;14054:184;-1:-1:-1;14054:184:1:o;14749:518::-;14851:2;14846:3;14843:11;14840:421;;;14887:5;14884:1;14877:16;14931:4;14928:1;14918:18;15001:2;14989:10;14985:19;14982:1;14978:27;14972:4;14968:38;15037:4;15025:10;15022:20;15019:47;;;-1:-1:-1;15060:4:1;15019:47;15115:2;15110:3;15106:12;15103:1;15099:20;15093:4;15089:31;15079:41;;15170:81;15188:2;15181:5;15178:13;15170:81;;;15247:1;15233:16;;15214:1;15203:13;15170:81;;15443:1198;-1:-1:-1;;;;;15562:3:1;15559:27;15556:53;;;15589:18;;:::i;:::-;15618:94;15708:3;15668:38;15700:4;15694:11;15668:38;:::i;:::-;15662:4;15618:94;:::i;:::-;15738:1;15763:2;15758:3;15755:11;15780:1;15775:608;;;;16427:1;16444:3;16441:93;;;-1:-1:-1;16500:19:1;;;16487:33;16441:93;-1:-1:-1;;15400:1:1;15396:11;;;15392:24;15388:29;15378:40;15424:1;15420:11;;;15375:57;16547:78;;15748:887;;15775:608;14696:1;14689:14;;;14733:4;14720:18;;-1:-1:-1;;15811:17:1;;;15926:229;15940:7;15937:1;15934:14;15926:229;;;16029:19;;;16016:33;16001:49;;16136:4;16121:20;;;;16089:1;16077:14;;;;15956:12;15926:229;;;15930:3;16183;16174:7;16171:16;16168:159;;;16307:1;16303:6;16297:3;16291;16288:1;16284:11;16280:21;16276:34;16272:39;16259:9;16254:3;16250:19;16237:33;16233:79;16225:6;16218:95;16168:159;;;16370:1;16364:3;16361:1;16357:11;16353:19;16347:4;16340:33;15748:887;;15443:1198;;;:::o;17306:245::-;17373:6;17426:2;17414:9;17405:7;17401:23;17397:32;17394:52;;;17442:1;17439;17432:12;17394:52;17474:9;17468:16;17493:28;17515:5;17493:28;:::i;17556:338::-;17758:2;17740:21;;;17797:2;17777:18;;;17770:30;-1:-1:-1;;;17831:2:1;17816:18;;17809:44;17885:2;17870:18;;17556:338::o;18133:345::-;18335:2;18317:21;;;18374:2;18354:18;;;18347:30;-1:-1:-1;;;18408:2:1;18393:18;;18386:51;18469:2;18454:18;;18133:345::o;20757:496::-;20936:3;20974:6;20968:13;20990:66;21049:6;21044:3;21037:4;21029:6;21025:17;20990:66;:::i;:::-;21119:13;;21078:16;;;;21141:70;21119:13;21078:16;21188:4;21176:17;;21141:70;:::i;:::-;21227:20;;20757:496;-1:-1:-1;;;;20757:496:1:o;22016:128::-;22083:9;;;22104:11;;;22101:37;;;22118:18;;:::i;22149:489::-;-1:-1:-1;;;;;22418:15:1;;;22400:34;;22470:15;;22465:2;22450:18;;22443:43;22517:2;22502:18;;22495:34;;;22565:3;22560:2;22545:18;;22538:31;;;22343:4;;22586:46;;22612:19;;22604:6;22586:46;:::i;:::-;22578:54;22149:489;-1:-1:-1;;;;;;22149:489:1:o;22643:249::-;22712:6;22765:2;22753:9;22744:7;22740:23;22736:32;22733:52;;;22781:1;22778;22771:12;22733:52;22813:9;22807:16;22832:30;22856:5;22832:30;:::i;22897:135::-;22936:3;22957:17;;;22954:43;;22977:18;;:::i;:::-;-1:-1:-1;23024:1:1;23013:13;;22897:135::o;23037:112::-;23069:1;23095;23085:35;;23100:18;;:::i;:::-;-1:-1:-1;23134:9:1;;23037:112::o
Swarm Source
ipfs://517a73673bd44218de2e4022bd6a39ed1071b3cf76cfa06f0252c630ca49c74a
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.