ERC-721
Overview
Max Total Supply
108 EE
Holders
39
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 EELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
EthEra
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-12 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.0 (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/cryptography/ECDSA.sol // OpenZeppelin Contracts v4.4.0 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `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.0 (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.0 (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.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.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 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.0 (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/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @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 { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/contract.sol pragma solidity ^0.8.4; contract EthEra is ERC721Enumerable, Ownable { using Strings for uint256; uint256 public tokenPrice = 0.077 ether; uint256 public maxTokensPerMintPublicSale = 10; string public tokenBaseURI = "ipfs://QmUUrPe6qyUAjK4cqs4wNCRKXnuK5w4nGNEtkTJFqEYK6J/"; uint256 public tokensToBuyAmount = 5555; bool public hasPresaleStarted = false; bool public hasPublicSaleStarted = false; uint256[] public maxTokensPerMintPerWhitelistStage = [ /*[0]*/ 0, // no whitelist /*[1]*/ 2, // Stage 1 WL /*[2]*/ 3, // Stage 2 WL /*[3]*/ 5 // Stage 3 WL ]; mapping(address => uint8) public presaleWhitelistStage; mapping(address => uint256) public presaleWhitelistPurchased; mapping(address => uint256) public freeTokensForAddress; bool public freeTokensOnPublicSaleOnly = true; constructor() ERC721("Eth Era", "EE") { } function setFreeTokensOnPublicSaleOnly(bool val) public { freeTokensOnPublicSaleOnly = val; } function setMaxTokensPerMintPerWhitelistStage(uint8 stage, uint256 maxTokensPerMint) external onlyOwner { require(1 <= stage && stage <= 3, "Invalid whitelist stage"); maxTokensPerMintPerWhitelistStage[stage] = maxTokensPerMint; } function setMaxTokensPerMintPublicSale(uint256 val) external onlyOwner { maxTokensPerMintPublicSale = val; } function setPresale(bool val) external onlyOwner { hasPresaleStarted = val; } function setPublicSale(bool val) external onlyOwner { hasPublicSaleStarted = val; } function setTokenPrice(uint256 val) external onlyOwner { tokenPrice = val; } function addToPresaleWhitelist(uint8 stage, address[] calldata addresses) external onlyOwner { require(1 <= stage && stage <= 3, "Invalid whitelist stage"); for(uint256 i = 0; i < addresses.length; i++) { presaleWhitelistStage[addresses[i]] = stage; } } function removeFromPresaleWhitelist(address[] calldata addresses) external onlyOwner { for(uint256 i = 0; i < addresses.length; i++) { presaleWhitelistStage[addresses[i]] = 0; } } function addFreeTokens(address[] calldata addresses) external onlyOwner { for(uint256 i = 0; i < addresses.length; i++) { freeTokensForAddress[addresses[i]]++; } } function addMultipleFreeTokens(uint256 freeTokensPerUser, address[] calldata addresses) external onlyOwner { for(uint256 i = 0; i < addresses.length; i++) { freeTokensForAddress[addresses[i]] += freeTokensPerUser; } } function removeFreeTokens(address[] calldata addresses) external onlyOwner { for(uint256 i = 0; i < addresses.length; i++) { freeTokensForAddress[addresses[i]] = 0; } } function min(uint256 a, uint256 b) internal pure returns (uint256) { return a <= b ? a : b; } function tokensMintable(address addr) public view returns (uint256) { uint256 tokensMintableMax = 0; if (hasPublicSaleStarted) { tokensMintableMax = maxTokensPerMintPublicSale; } else if (hasPresaleStarted) { tokensMintableMax = maxTokensPerMintPerWhitelistStage[presaleWhitelistStage[addr]] - presaleWhitelistPurchased[addr]; } return min(tokensMintableMax, tokensToBuyAmount); } function getApplicableFreeTokens(address addr) external view returns (uint256) { if (hasPublicSaleStarted || !freeTokensOnPublicSaleOnly) { return freeTokensForAddress[addr]; } else { return 0; } } function mint(uint256 amount) external payable { require(amount <= tokensMintable(msg.sender), "Incorrect tokens amount"); if (hasPublicSaleStarted || !freeTokensOnPublicSaleOnly) { if (amount > freeTokensForAddress[msg.sender]) { require(msg.value >= tokenPrice * (amount - freeTokensForAddress[msg.sender]), "Incorrect ETH"); } if (amount <= freeTokensForAddress[msg.sender]) { freeTokensForAddress[msg.sender] -= amount; } else { freeTokensForAddress[msg.sender] = 0; } } else { require(msg.value >= tokenPrice * amount, "Incorrect ETH"); } uint256 supply = totalSupply(); for(uint256 i = 0; i < amount; i++) { _safeMint(msg.sender, 1 + supply + i); } if (!hasPublicSaleStarted) { presaleWhitelistPurchased[msg.sender] += amount; } tokensToBuyAmount -= amount; } function gift(address[] calldata addresses) external onlyOwner { uint256 supply = totalSupply(); for(uint256 i = 0; i < addresses.length; i++) { _safeMint(addresses[i], 1 + supply + i); } tokensToBuyAmount -= addresses.length; } function _baseURI() internal view override(ERC721) returns (string memory) { return tokenBaseURI; } function setBaseURI(string calldata URI) external onlyOwner { tokenBaseURI = URI; } function withdraw() external onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addFreeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeTokensPerUser","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addMultipleFreeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"stage","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeTokensForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeTokensOnPublicSaleOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getApplicableFreeTokens","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":"address[]","name":"addresses","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hasPresaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasPublicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxTokensPerMintPerWhitelistStage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerMintPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelistPurchased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelistStage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFreeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setFreeTokensOnPublicSaleOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"stage","type":"uint8"},{"internalType":"uint256","name":"maxTokensPerMint","type":"uint256"}],"name":"setMaxTokensPerMintPerWhitelistStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxTokensPerMintPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setTokenPrice","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":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"tokensMintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensToBuyAmount","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6701118f178fb48000600b55600a600c5560e0604052603660808181529062002eb060a03980516200003a91600d9160209091019062000175565b506115b3600e55600f805461ffff19169055604080516080810182526000815260026020820152600391810191909152600560608201526200008190601090600462000204565b506014805460ff191660011790553480156200009c57600080fd5b5060408051808201825260078152664574682045726160c81b602080830191825283518085019094526002845261454560f01b908401528151919291620000e69160009162000175565b508051620000fc90600190602084019062000175565b50505062000119620001136200011f60201b60201c565b62000123565b6200029b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000183906200025e565b90600052602060002090601f016020900481019282620001a75760008555620001f2565b82601f10620001c257805160ff1916838001178555620001f2565b82800160010185558215620001f2579182015b82811115620001f2578251825591602001919060010190620001d5565b506200020092915062000247565b5090565b828054828255906000526020600020908101928215620001f2579160200282015b82811115620001f2578251829060ff1690559160200191906001019062000225565b5b8082111562000200576000815560010162000248565b600181811c908216806200027357607f821691505b602082108114156200029557634e487b7160e01b600052602260045260246000fd5b50919050565b612c0580620002ab6000396000f3fe6080604052600436106102885760003560e01c8063715018a61161015a578063b88d4fde116100c1578063e7a9dccb1161007a578063e7a9dccb146107cc578063e985e9c5146107fa578063ee84381214610843578063f2fde38b14610859578063fdd4b0f014610879578063ff45cb951461089857600080fd5b8063b88d4fde1461070c578063bf7c9b651461072c578063c54e73e31461074c578063c87b56dd1461076c578063da6941f01461078c578063e342d7b1146107ac57600080fd5b806395d89b411161011357806395d89b411461066357806396db423a146106785780639794473714610692578063a0712d68146106bf578063a22cb465146106d2578063b0220015146106f257600080fd5b8063715018a6146105ba5780637583d628146105cf5780637ff9b596146105ef5780638da5cb5b146106055780638f65fe0a14610623578063905e3ea91461064357600080fd5b80633ccfd60b116101fe57806355f804b3116101b757806355f804b3146104fa5780635aca1bb61461051a5780636352211e1461053a5780636a61e5fc1461055a5780636cc90f091461057a57806370a082311461059a57600080fd5b80633ccfd60b1461044357806342842e0e1461045857806348df7424146104785780634b4cb403146104a55780634e99b800146104c55780634f6ccce7146104da57600080fd5b8063163e1e6111610250578063163e1e611461036c57806318160ddd1461038c57806323b872dd146103a157806324d55faf146103c15780632b96a643146103e15780632f745c591461042357600080fd5b806301ffc9a71461028d57806306fdde03146102c257806307073770146102e4578063081812fc14610312578063095ea7b31461034a575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612769565b6108ae565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d76108d9565b6040516102b99190612968565b3480156102f057600080fd5b506103046102ff366004612815565b61096b565b6040519081526020016102b9565b34801561031e57600080fd5b5061033261032d366004612815565b61098c565b6040516001600160a01b0390911681526020016102b9565b34801561035657600080fd5b5061036a6103653660046126e2565b610a26565b005b34801561037857600080fd5b5061036a61038736600461270c565b610b3c565b34801561039857600080fd5b50600854610304565b3480156103ad57600080fd5b5061036a6103bc3660046125a0565b610bf5565b3480156103cd57600080fd5b5061036a6103dc3660046128b4565b610c26565b3480156103ed57600080fd5b506104116103fc366004612552565b60116020526000908152604090205460ff1681565b60405160ff90911681526020016102b9565b34801561042f57600080fd5b5061030461043e3660046126e2565b610cd5565b34801561044f57600080fd5b5061036a610d6b565b34801561046457600080fd5b5061036a6104733660046125a0565b610dbb565b34801561048457600080fd5b50610304610493366004612552565b60126020526000908152604090205481565b3480156104b157600080fd5b5061036a6104c036600461270c565b610dd6565b3480156104d157600080fd5b506102d7610e75565b3480156104e657600080fd5b506103046104f5366004612815565b610f03565b34801561050657600080fd5b5061036a6105153660046127a3565b610f96565b34801561052657600080fd5b5061036a61053536600461274e565b610fcc565b34801561054657600080fd5b50610332610555366004612815565b611010565b34801561056657600080fd5b5061036a610575366004612815565b611087565b34801561058657600080fd5b5061036a61059536600461282e565b6110b6565b3480156105a657600080fd5b506103046105b5366004612552565b611164565b3480156105c657600080fd5b5061036a6111eb565b3480156105db57600080fd5b5061036a6105ea366004612815565b61121f565b3480156105fb57600080fd5b50610304600b5481565b34801561061157600080fd5b50600a546001600160a01b0316610332565b34801561062f57600080fd5b5061036a61063e36600461270c565b61124e565b34801561064f57600080fd5b5061030461065e366004612552565b6112ed565b34801561066f57600080fd5b506102d7611337565b34801561068457600080fd5b506014546102ad9060ff1681565b34801561069e57600080fd5b506103046106ad366004612552565b60136020526000908152604090205481565b61036a6106cd366004612815565b611346565b3480156106de57600080fd5b5061036a6106ed3660046126b8565b611565565b3480156106fe57600080fd5b50600f546102ad9060ff1681565b34801561071857600080fd5b5061036a6107273660046125dc565b611574565b34801561073857600080fd5b5061036a61074736600461270c565b6115a6565b34801561075857600080fd5b5061036a61076736600461274e565b611634565b34801561077857600080fd5b506102d7610787366004612815565b611671565b34801561079857600080fd5b5061036a6107a736600461287a565b61174c565b3480156107b857600080fd5b506103046107c7366004612552565b611848565b3480156107d857600080fd5b5061036a6107e736600461274e565b6014805460ff1916911515919091179055565b34801561080657600080fd5b506102ad61081536600461256d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561084f57600080fd5b50610304600c5481565b34801561086557600080fd5b5061036a610874366004612552565b6118d2565b34801561088557600080fd5b50600f546102ad90610100900460ff1681565b3480156108a457600080fd5b50610304600e5481565b60006001600160e01b0319821663780e9d6360e01b14806108d357506108d38261196d565b92915050565b6060600080546108e890612ae1565b80601f016020809104026020016040519081016040528092919081815260200182805461091490612ae1565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b6010818154811061097b57600080fd5b600091825260209091200154905081565b6000818152600260205260408120546001600160a01b0316610a0a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a3182611010565b9050806001600160a01b0316836001600160a01b03161415610a9f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a01565b336001600160a01b0382161480610abb5750610abb8133610815565b610b2d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a01565b610b3783836119bd565b505050565b600a546001600160a01b03163314610b665760405162461bcd60e51b8152600401610a01906129cd565b6000610b7160085490565b905060005b82811015610bd557610bc3848483818110610b9357610b93612b8d565b9050602002016020810190610ba89190612552565b82610bb4856001612a53565b610bbe9190612a53565b611a2b565b80610bcd81612b1c565b915050610b76565b5082829050600e6000828254610beb9190612a9e565b9091555050505050565b610bff3382611a45565b610c1b5760405162461bcd60e51b8152600401610a0190612a02565b610b37838383611b3c565b600a546001600160a01b03163314610c505760405162461bcd60e51b8152600401610a01906129cd565b8160ff16600111158015610c68575060038260ff1611155b610cae5760405162461bcd60e51b8152602060048201526017602482015276496e76616c69642077686974656c69737420737461676560481b6044820152606401610a01565b8060108360ff1681548110610cc557610cc5612b8d565b6000918252602090912001555050565b6000610ce083611164565b8210610d425760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a01565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d955760405162461bcd60e51b8152600401610a01906129cd565b60405133904780156108fc02916000818181858888f19350505050610db957600080fd5b565b610b3783838360405180602001604052806000815250611574565b600a546001600160a01b03163314610e005760405162461bcd60e51b8152600401610a01906129cd565b60005b81811015610b375760136000848484818110610e2157610e21612b8d565b9050602002016020810190610e369190612552565b6001600160a01b0316815260208101919091526040016000908120805491610e5d83612b1c565b91905055508080610e6d90612b1c565b915050610e03565b600d8054610e8290612ae1565b80601f0160208091040260200160405190810160405280929190818152602001828054610eae90612ae1565b8015610efb5780601f10610ed057610100808354040283529160200191610efb565b820191906000526020600020905b815481529060010190602001808311610ede57829003601f168201915b505050505081565b6000610f0e60085490565b8210610f715760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a01565b60088281548110610f8457610f84612b8d565b90600052602060002001549050919050565b600a546001600160a01b03163314610fc05760405162461bcd60e51b8152600401610a01906129cd565b610b37600d8383612435565b600a546001600160a01b03163314610ff65760405162461bcd60e51b8152600401610a01906129cd565b600f80549115156101000261ff0019909216919091179055565b6000818152600260205260408120546001600160a01b0316806108d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a01565b600a546001600160a01b031633146110b15760405162461bcd60e51b8152600401610a01906129cd565b600b55565b600a546001600160a01b031633146110e05760405162461bcd60e51b8152600401610a01906129cd565b60005b8181101561115e57836013600085858581811061110257611102612b8d565b90506020020160208101906111179190612552565b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546111469190612a53565b9091555081905061115681612b1c565b9150506110e3565b50505050565b60006001600160a01b0382166111cf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a01565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112155760405162461bcd60e51b8152600401610a01906129cd565b610db96000611ce7565b600a546001600160a01b031633146112495760405162461bcd60e51b8152600401610a01906129cd565b600c55565b600a546001600160a01b031633146112785760405162461bcd60e51b8152600401610a01906129cd565b60005b81811015610b375760006011600085858581811061129b5761129b612b8d565b90506020020160208101906112b09190612552565b6001600160a01b031681526020810191909152604001600020805460ff191660ff92909216919091179055806112e581612b1c565b91505061127b565b600f54600090610100900460ff1680611309575060145460ff16155b1561132a57506001600160a01b031660009081526013602052604090205490565b506000919050565b919050565b6060600180546108e890612ae1565b61134f33611848565b81111561139e5760405162461bcd60e51b815260206004820152601760248201527f496e636f727265637420746f6b656e7320616d6f756e740000000000000000006044820152606401610a01565b600f54610100900460ff16806113b7575060145460ff16155b1561148e573360009081526013602052604090205481111561143957336000908152601360205260409020546113ed9082612a9e565b600b546113fa9190612a7f565b3410156114395760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b6044820152606401610a01565b33600090815260136020526040902054811161147957336000908152601360205260408120805483929061146e908490612a9e565b909155506114db9050565b336000908152601360205260408120556114db565b80600b5461149c9190612a7f565b3410156114db5760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b6044820152606401610a01565b60006114e660085490565b905060005b82811015611515576115033382610bb4856001612a53565b8061150d81612b1c565b9150506114eb565b50600f54610100900460ff1661154a573360009081526012602052604081208054849290611544908490612a53565b90915550505b81600e600082825461155c9190612a9e565b90915550505050565b611570338383611d39565b5050565b61157e3383611a45565b61159a5760405162461bcd60e51b8152600401610a0190612a02565b61115e84848484611e08565b600a546001600160a01b031633146115d05760405162461bcd60e51b8152600401610a01906129cd565b60005b81811015610b37576000601360008585858181106115f3576115f3612b8d565b90506020020160208101906116089190612552565b6001600160a01b031681526020810191909152604001600020558061162c81612b1c565b9150506115d3565b600a546001600160a01b0316331461165e5760405162461bcd60e51b8152600401610a01906129cd565b600f805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b03166116f05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a01565b60006116fa611e3b565b9050600081511161171a5760405180602001604052806000815250611745565b8061172484611e4a565b6040516020016117359291906128fc565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117765760405162461bcd60e51b8152600401610a01906129cd565b8260ff1660011115801561178e575060038360ff1611155b6117d45760405162461bcd60e51b8152602060048201526017602482015276496e76616c69642077686974656c69737420737461676560481b6044820152606401610a01565b60005b8181101561115e5783601160008585858181106117f6576117f6612b8d565b905060200201602081019061180b9190612552565b6001600160a01b031681526020810191909152604001600020805460ff191660ff929092169190911790558061184081612b1c565b9150506117d7565b600f546000908190610100900460ff16156118665750600c546118c6565b600f5460ff16156118c6576001600160a01b03831660009081526012602090815260408083205460119092529091205460108054909160ff169081106118ae576118ae612b8d565b90600052602060002001546118c39190612a9e565b90505b61174581600e54611f48565b600a546001600160a01b031633146118fc5760405162461bcd60e51b8152600401610a01906129cd565b6001600160a01b0381166119615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a01565b61196a81611ce7565b50565b60006001600160e01b031982166380ac58cd60e01b148061199e57506001600160e01b03198216635b5e139f60e01b145b806108d357506301ffc9a760e01b6001600160e01b03198316146108d3565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119f282611010565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611570828260405180602001604052806000815250611f5f565b6000818152600260205260408120546001600160a01b0316611abe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a01565b6000611ac983611010565b9050806001600160a01b0316846001600160a01b03161480611b045750836001600160a01b0316611af98461098c565b6001600160a01b0316145b80611b3457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b4f82611010565b6001600160a01b031614611bb75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a01565b6001600160a01b038216611c195760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a01565b611c24838383611f92565b611c2f6000826119bd565b6001600160a01b0383166000908152600360205260408120805460019290611c58908490612a9e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c86908490612a53565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611d9b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a01565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e13848484611b3c565b611e1f8484848461204a565b61115e5760405162461bcd60e51b8152600401610a019061297b565b6060600d80546108e890612ae1565b606081611e6e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e985780611e8281612b1c565b9150611e919050600a83612a6b565b9150611e72565b60008167ffffffffffffffff811115611eb357611eb3612ba3565b6040519080825280601f01601f191660200182016040528015611edd576020820181803683370190505b5090505b8415611b3457611ef2600183612a9e565b9150611eff600a86612b37565b611f0a906030612a53565b60f81b818381518110611f1f57611f1f612b8d565b60200101906001600160f81b031916908160001a905350611f41600a86612a6b565b9450611ee1565b600081831115611f585781611745565b5090919050565b611f698383612157565b611f76600084848461204a565b610b375760405162461bcd60e51b8152600401610a019061297b565b6001600160a01b038316611fed57611fe881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612010565b816001600160a01b0316836001600160a01b0316146120105761201083826122a5565b6001600160a01b03821661202757610b3781612342565b826001600160a01b0316826001600160a01b031614610b3757610b3782826123f1565b60006001600160a01b0384163b1561214c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061208e90339089908890889060040161292b565b602060405180830381600087803b1580156120a857600080fd5b505af19250505080156120d8575060408051601f3d908101601f191682019092526120d591810190612786565b60015b612132573d808015612106576040519150601f19603f3d011682016040523d82523d6000602084013e61210b565b606091505b50805161212a5760405162461bcd60e51b8152600401610a019061297b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b34565b506001949350505050565b6001600160a01b0382166121ad5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a01565b6000818152600260205260409020546001600160a01b0316156122125760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a01565b61221e60008383611f92565b6001600160a01b0382166000908152600360205260408120805460019290612247908490612a53565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016122b284611164565b6122bc9190612a9e565b60008381526007602052604090205490915080821461230f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061235490600190612a9e565b6000838152600960205260408120546008805493945090928490811061237c5761237c612b8d565b90600052602060002001549050806008838154811061239d5761239d612b8d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123d5576123d5612b77565b6001900381819060005260206000200160009055905550505050565b60006123fc83611164565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461244190612ae1565b90600052602060002090601f01602090048101928261246357600085556124a9565b82601f1061247c5782800160ff198235161785556124a9565b828001600101855582156124a9579182015b828111156124a957823582559160200191906001019061248e565b506124b59291506124b9565b5090565b5b808211156124b557600081556001016124ba565b80356001600160a01b038116811461133257600080fd5b60008083601f8401126124f757600080fd5b50813567ffffffffffffffff81111561250f57600080fd5b6020830191508360208260051b850101111561252a57600080fd5b9250929050565b8035801515811461133257600080fd5b803560ff8116811461133257600080fd5b60006020828403121561256457600080fd5b611745826124ce565b6000806040838503121561258057600080fd5b612589836124ce565b9150612597602084016124ce565b90509250929050565b6000806000606084860312156125b557600080fd5b6125be846124ce565b92506125cc602085016124ce565b9150604084013590509250925092565b600080600080608085870312156125f257600080fd5b6125fb856124ce565b9350612609602086016124ce565b925060408501359150606085013567ffffffffffffffff8082111561262d57600080fd5b818701915087601f83011261264157600080fd5b81358181111561265357612653612ba3565b604051601f8201601f19908116603f0116810190838211818310171561267b5761267b612ba3565b816040528281528a602084870101111561269457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156126cb57600080fd5b6126d4836124ce565b915061259760208401612531565b600080604083850312156126f557600080fd5b6126fe836124ce565b946020939093013593505050565b6000806020838503121561271f57600080fd5b823567ffffffffffffffff81111561273657600080fd5b612742858286016124e5565b90969095509350505050565b60006020828403121561276057600080fd5b61174582612531565b60006020828403121561277b57600080fd5b813561174581612bb9565b60006020828403121561279857600080fd5b815161174581612bb9565b600080602083850312156127b657600080fd5b823567ffffffffffffffff808211156127ce57600080fd5b818501915085601f8301126127e257600080fd5b8135818111156127f157600080fd5b86602082850101111561280357600080fd5b60209290920196919550909350505050565b60006020828403121561282757600080fd5b5035919050565b60008060006040848603121561284357600080fd5b83359250602084013567ffffffffffffffff81111561286157600080fd5b61286d868287016124e5565b9497909650939450505050565b60008060006040848603121561288f57600080fd5b61289884612541565b9250602084013567ffffffffffffffff81111561286157600080fd5b600080604083850312156128c757600080fd5b6126fe83612541565b600081518084526128e8816020860160208601612ab5565b601f01601f19169290920160200192915050565b6000835161290e818460208801612ab5565b835190830190612922818360208801612ab5565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061295e908301846128d0565b9695505050505050565b60208152600061174560208301846128d0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612a6657612a66612b4b565b500190565b600082612a7a57612a7a612b61565b500490565b6000816000190483118215151615612a9957612a99612b4b565b500290565b600082821015612ab057612ab0612b4b565b500390565b60005b83811015612ad0578181015183820152602001612ab8565b8381111561115e5750506000910152565b600181811c90821680612af557607f821691505b60208210811415612b1657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b3057612b30612b4b565b5060010190565b600082612b4657612b46612b61565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461196a57600080fdfea26469706673582212200f8cdfe2d3942bd6a3510fc03f99e6a55d2ef1b440bddda6803f910e22d0e4e364736f6c63430008070033697066733a2f2f516d555572506536717955416a4b3463717334774e43524b586e754b3577346e474e45746b544a467145594b364a2f
Deployed Bytecode
0x6080604052600436106102885760003560e01c8063715018a61161015a578063b88d4fde116100c1578063e7a9dccb1161007a578063e7a9dccb146107cc578063e985e9c5146107fa578063ee84381214610843578063f2fde38b14610859578063fdd4b0f014610879578063ff45cb951461089857600080fd5b8063b88d4fde1461070c578063bf7c9b651461072c578063c54e73e31461074c578063c87b56dd1461076c578063da6941f01461078c578063e342d7b1146107ac57600080fd5b806395d89b411161011357806395d89b411461066357806396db423a146106785780639794473714610692578063a0712d68146106bf578063a22cb465146106d2578063b0220015146106f257600080fd5b8063715018a6146105ba5780637583d628146105cf5780637ff9b596146105ef5780638da5cb5b146106055780638f65fe0a14610623578063905e3ea91461064357600080fd5b80633ccfd60b116101fe57806355f804b3116101b757806355f804b3146104fa5780635aca1bb61461051a5780636352211e1461053a5780636a61e5fc1461055a5780636cc90f091461057a57806370a082311461059a57600080fd5b80633ccfd60b1461044357806342842e0e1461045857806348df7424146104785780634b4cb403146104a55780634e99b800146104c55780634f6ccce7146104da57600080fd5b8063163e1e6111610250578063163e1e611461036c57806318160ddd1461038c57806323b872dd146103a157806324d55faf146103c15780632b96a643146103e15780632f745c591461042357600080fd5b806301ffc9a71461028d57806306fdde03146102c257806307073770146102e4578063081812fc14610312578063095ea7b31461034a575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612769565b6108ae565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d76108d9565b6040516102b99190612968565b3480156102f057600080fd5b506103046102ff366004612815565b61096b565b6040519081526020016102b9565b34801561031e57600080fd5b5061033261032d366004612815565b61098c565b6040516001600160a01b0390911681526020016102b9565b34801561035657600080fd5b5061036a6103653660046126e2565b610a26565b005b34801561037857600080fd5b5061036a61038736600461270c565b610b3c565b34801561039857600080fd5b50600854610304565b3480156103ad57600080fd5b5061036a6103bc3660046125a0565b610bf5565b3480156103cd57600080fd5b5061036a6103dc3660046128b4565b610c26565b3480156103ed57600080fd5b506104116103fc366004612552565b60116020526000908152604090205460ff1681565b60405160ff90911681526020016102b9565b34801561042f57600080fd5b5061030461043e3660046126e2565b610cd5565b34801561044f57600080fd5b5061036a610d6b565b34801561046457600080fd5b5061036a6104733660046125a0565b610dbb565b34801561048457600080fd5b50610304610493366004612552565b60126020526000908152604090205481565b3480156104b157600080fd5b5061036a6104c036600461270c565b610dd6565b3480156104d157600080fd5b506102d7610e75565b3480156104e657600080fd5b506103046104f5366004612815565b610f03565b34801561050657600080fd5b5061036a6105153660046127a3565b610f96565b34801561052657600080fd5b5061036a61053536600461274e565b610fcc565b34801561054657600080fd5b50610332610555366004612815565b611010565b34801561056657600080fd5b5061036a610575366004612815565b611087565b34801561058657600080fd5b5061036a61059536600461282e565b6110b6565b3480156105a657600080fd5b506103046105b5366004612552565b611164565b3480156105c657600080fd5b5061036a6111eb565b3480156105db57600080fd5b5061036a6105ea366004612815565b61121f565b3480156105fb57600080fd5b50610304600b5481565b34801561061157600080fd5b50600a546001600160a01b0316610332565b34801561062f57600080fd5b5061036a61063e36600461270c565b61124e565b34801561064f57600080fd5b5061030461065e366004612552565b6112ed565b34801561066f57600080fd5b506102d7611337565b34801561068457600080fd5b506014546102ad9060ff1681565b34801561069e57600080fd5b506103046106ad366004612552565b60136020526000908152604090205481565b61036a6106cd366004612815565b611346565b3480156106de57600080fd5b5061036a6106ed3660046126b8565b611565565b3480156106fe57600080fd5b50600f546102ad9060ff1681565b34801561071857600080fd5b5061036a6107273660046125dc565b611574565b34801561073857600080fd5b5061036a61074736600461270c565b6115a6565b34801561075857600080fd5b5061036a61076736600461274e565b611634565b34801561077857600080fd5b506102d7610787366004612815565b611671565b34801561079857600080fd5b5061036a6107a736600461287a565b61174c565b3480156107b857600080fd5b506103046107c7366004612552565b611848565b3480156107d857600080fd5b5061036a6107e736600461274e565b6014805460ff1916911515919091179055565b34801561080657600080fd5b506102ad61081536600461256d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561084f57600080fd5b50610304600c5481565b34801561086557600080fd5b5061036a610874366004612552565b6118d2565b34801561088557600080fd5b50600f546102ad90610100900460ff1681565b3480156108a457600080fd5b50610304600e5481565b60006001600160e01b0319821663780e9d6360e01b14806108d357506108d38261196d565b92915050565b6060600080546108e890612ae1565b80601f016020809104026020016040519081016040528092919081815260200182805461091490612ae1565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b6010818154811061097b57600080fd5b600091825260209091200154905081565b6000818152600260205260408120546001600160a01b0316610a0a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a3182611010565b9050806001600160a01b0316836001600160a01b03161415610a9f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a01565b336001600160a01b0382161480610abb5750610abb8133610815565b610b2d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a01565b610b3783836119bd565b505050565b600a546001600160a01b03163314610b665760405162461bcd60e51b8152600401610a01906129cd565b6000610b7160085490565b905060005b82811015610bd557610bc3848483818110610b9357610b93612b8d565b9050602002016020810190610ba89190612552565b82610bb4856001612a53565b610bbe9190612a53565b611a2b565b80610bcd81612b1c565b915050610b76565b5082829050600e6000828254610beb9190612a9e565b9091555050505050565b610bff3382611a45565b610c1b5760405162461bcd60e51b8152600401610a0190612a02565b610b37838383611b3c565b600a546001600160a01b03163314610c505760405162461bcd60e51b8152600401610a01906129cd565b8160ff16600111158015610c68575060038260ff1611155b610cae5760405162461bcd60e51b8152602060048201526017602482015276496e76616c69642077686974656c69737420737461676560481b6044820152606401610a01565b8060108360ff1681548110610cc557610cc5612b8d565b6000918252602090912001555050565b6000610ce083611164565b8210610d425760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a01565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d955760405162461bcd60e51b8152600401610a01906129cd565b60405133904780156108fc02916000818181858888f19350505050610db957600080fd5b565b610b3783838360405180602001604052806000815250611574565b600a546001600160a01b03163314610e005760405162461bcd60e51b8152600401610a01906129cd565b60005b81811015610b375760136000848484818110610e2157610e21612b8d565b9050602002016020810190610e369190612552565b6001600160a01b0316815260208101919091526040016000908120805491610e5d83612b1c565b91905055508080610e6d90612b1c565b915050610e03565b600d8054610e8290612ae1565b80601f0160208091040260200160405190810160405280929190818152602001828054610eae90612ae1565b8015610efb5780601f10610ed057610100808354040283529160200191610efb565b820191906000526020600020905b815481529060010190602001808311610ede57829003601f168201915b505050505081565b6000610f0e60085490565b8210610f715760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a01565b60088281548110610f8457610f84612b8d565b90600052602060002001549050919050565b600a546001600160a01b03163314610fc05760405162461bcd60e51b8152600401610a01906129cd565b610b37600d8383612435565b600a546001600160a01b03163314610ff65760405162461bcd60e51b8152600401610a01906129cd565b600f80549115156101000261ff0019909216919091179055565b6000818152600260205260408120546001600160a01b0316806108d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a01565b600a546001600160a01b031633146110b15760405162461bcd60e51b8152600401610a01906129cd565b600b55565b600a546001600160a01b031633146110e05760405162461bcd60e51b8152600401610a01906129cd565b60005b8181101561115e57836013600085858581811061110257611102612b8d565b90506020020160208101906111179190612552565b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546111469190612a53565b9091555081905061115681612b1c565b9150506110e3565b50505050565b60006001600160a01b0382166111cf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a01565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112155760405162461bcd60e51b8152600401610a01906129cd565b610db96000611ce7565b600a546001600160a01b031633146112495760405162461bcd60e51b8152600401610a01906129cd565b600c55565b600a546001600160a01b031633146112785760405162461bcd60e51b8152600401610a01906129cd565b60005b81811015610b375760006011600085858581811061129b5761129b612b8d565b90506020020160208101906112b09190612552565b6001600160a01b031681526020810191909152604001600020805460ff191660ff92909216919091179055806112e581612b1c565b91505061127b565b600f54600090610100900460ff1680611309575060145460ff16155b1561132a57506001600160a01b031660009081526013602052604090205490565b506000919050565b919050565b6060600180546108e890612ae1565b61134f33611848565b81111561139e5760405162461bcd60e51b815260206004820152601760248201527f496e636f727265637420746f6b656e7320616d6f756e740000000000000000006044820152606401610a01565b600f54610100900460ff16806113b7575060145460ff16155b1561148e573360009081526013602052604090205481111561143957336000908152601360205260409020546113ed9082612a9e565b600b546113fa9190612a7f565b3410156114395760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b6044820152606401610a01565b33600090815260136020526040902054811161147957336000908152601360205260408120805483929061146e908490612a9e565b909155506114db9050565b336000908152601360205260408120556114db565b80600b5461149c9190612a7f565b3410156114db5760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b6044820152606401610a01565b60006114e660085490565b905060005b82811015611515576115033382610bb4856001612a53565b8061150d81612b1c565b9150506114eb565b50600f54610100900460ff1661154a573360009081526012602052604081208054849290611544908490612a53565b90915550505b81600e600082825461155c9190612a9e565b90915550505050565b611570338383611d39565b5050565b61157e3383611a45565b61159a5760405162461bcd60e51b8152600401610a0190612a02565b61115e84848484611e08565b600a546001600160a01b031633146115d05760405162461bcd60e51b8152600401610a01906129cd565b60005b81811015610b37576000601360008585858181106115f3576115f3612b8d565b90506020020160208101906116089190612552565b6001600160a01b031681526020810191909152604001600020558061162c81612b1c565b9150506115d3565b600a546001600160a01b0316331461165e5760405162461bcd60e51b8152600401610a01906129cd565b600f805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b03166116f05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a01565b60006116fa611e3b565b9050600081511161171a5760405180602001604052806000815250611745565b8061172484611e4a565b6040516020016117359291906128fc565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117765760405162461bcd60e51b8152600401610a01906129cd565b8260ff1660011115801561178e575060038360ff1611155b6117d45760405162461bcd60e51b8152602060048201526017602482015276496e76616c69642077686974656c69737420737461676560481b6044820152606401610a01565b60005b8181101561115e5783601160008585858181106117f6576117f6612b8d565b905060200201602081019061180b9190612552565b6001600160a01b031681526020810191909152604001600020805460ff191660ff929092169190911790558061184081612b1c565b9150506117d7565b600f546000908190610100900460ff16156118665750600c546118c6565b600f5460ff16156118c6576001600160a01b03831660009081526012602090815260408083205460119092529091205460108054909160ff169081106118ae576118ae612b8d565b90600052602060002001546118c39190612a9e565b90505b61174581600e54611f48565b600a546001600160a01b031633146118fc5760405162461bcd60e51b8152600401610a01906129cd565b6001600160a01b0381166119615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a01565b61196a81611ce7565b50565b60006001600160e01b031982166380ac58cd60e01b148061199e57506001600160e01b03198216635b5e139f60e01b145b806108d357506301ffc9a760e01b6001600160e01b03198316146108d3565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119f282611010565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611570828260405180602001604052806000815250611f5f565b6000818152600260205260408120546001600160a01b0316611abe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a01565b6000611ac983611010565b9050806001600160a01b0316846001600160a01b03161480611b045750836001600160a01b0316611af98461098c565b6001600160a01b0316145b80611b3457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b4f82611010565b6001600160a01b031614611bb75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a01565b6001600160a01b038216611c195760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a01565b611c24838383611f92565b611c2f6000826119bd565b6001600160a01b0383166000908152600360205260408120805460019290611c58908490612a9e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c86908490612a53565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611d9b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a01565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e13848484611b3c565b611e1f8484848461204a565b61115e5760405162461bcd60e51b8152600401610a019061297b565b6060600d80546108e890612ae1565b606081611e6e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e985780611e8281612b1c565b9150611e919050600a83612a6b565b9150611e72565b60008167ffffffffffffffff811115611eb357611eb3612ba3565b6040519080825280601f01601f191660200182016040528015611edd576020820181803683370190505b5090505b8415611b3457611ef2600183612a9e565b9150611eff600a86612b37565b611f0a906030612a53565b60f81b818381518110611f1f57611f1f612b8d565b60200101906001600160f81b031916908160001a905350611f41600a86612a6b565b9450611ee1565b600081831115611f585781611745565b5090919050565b611f698383612157565b611f76600084848461204a565b610b375760405162461bcd60e51b8152600401610a019061297b565b6001600160a01b038316611fed57611fe881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612010565b816001600160a01b0316836001600160a01b0316146120105761201083826122a5565b6001600160a01b03821661202757610b3781612342565b826001600160a01b0316826001600160a01b031614610b3757610b3782826123f1565b60006001600160a01b0384163b1561214c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061208e90339089908890889060040161292b565b602060405180830381600087803b1580156120a857600080fd5b505af19250505080156120d8575060408051601f3d908101601f191682019092526120d591810190612786565b60015b612132573d808015612106576040519150601f19603f3d011682016040523d82523d6000602084013e61210b565b606091505b50805161212a5760405162461bcd60e51b8152600401610a019061297b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b34565b506001949350505050565b6001600160a01b0382166121ad5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a01565b6000818152600260205260409020546001600160a01b0316156122125760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a01565b61221e60008383611f92565b6001600160a01b0382166000908152600360205260408120805460019290612247908490612a53565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016122b284611164565b6122bc9190612a9e565b60008381526007602052604090205490915080821461230f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061235490600190612a9e565b6000838152600960205260408120546008805493945090928490811061237c5761237c612b8d565b90600052602060002001549050806008838154811061239d5761239d612b8d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123d5576123d5612b77565b6001900381819060005260206000200160009055905550505050565b60006123fc83611164565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461244190612ae1565b90600052602060002090601f01602090048101928261246357600085556124a9565b82601f1061247c5782800160ff198235161785556124a9565b828001600101855582156124a9579182015b828111156124a957823582559160200191906001019061248e565b506124b59291506124b9565b5090565b5b808211156124b557600081556001016124ba565b80356001600160a01b038116811461133257600080fd5b60008083601f8401126124f757600080fd5b50813567ffffffffffffffff81111561250f57600080fd5b6020830191508360208260051b850101111561252a57600080fd5b9250929050565b8035801515811461133257600080fd5b803560ff8116811461133257600080fd5b60006020828403121561256457600080fd5b611745826124ce565b6000806040838503121561258057600080fd5b612589836124ce565b9150612597602084016124ce565b90509250929050565b6000806000606084860312156125b557600080fd5b6125be846124ce565b92506125cc602085016124ce565b9150604084013590509250925092565b600080600080608085870312156125f257600080fd5b6125fb856124ce565b9350612609602086016124ce565b925060408501359150606085013567ffffffffffffffff8082111561262d57600080fd5b818701915087601f83011261264157600080fd5b81358181111561265357612653612ba3565b604051601f8201601f19908116603f0116810190838211818310171561267b5761267b612ba3565b816040528281528a602084870101111561269457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156126cb57600080fd5b6126d4836124ce565b915061259760208401612531565b600080604083850312156126f557600080fd5b6126fe836124ce565b946020939093013593505050565b6000806020838503121561271f57600080fd5b823567ffffffffffffffff81111561273657600080fd5b612742858286016124e5565b90969095509350505050565b60006020828403121561276057600080fd5b61174582612531565b60006020828403121561277b57600080fd5b813561174581612bb9565b60006020828403121561279857600080fd5b815161174581612bb9565b600080602083850312156127b657600080fd5b823567ffffffffffffffff808211156127ce57600080fd5b818501915085601f8301126127e257600080fd5b8135818111156127f157600080fd5b86602082850101111561280357600080fd5b60209290920196919550909350505050565b60006020828403121561282757600080fd5b5035919050565b60008060006040848603121561284357600080fd5b83359250602084013567ffffffffffffffff81111561286157600080fd5b61286d868287016124e5565b9497909650939450505050565b60008060006040848603121561288f57600080fd5b61289884612541565b9250602084013567ffffffffffffffff81111561286157600080fd5b600080604083850312156128c757600080fd5b6126fe83612541565b600081518084526128e8816020860160208601612ab5565b601f01601f19169290920160200192915050565b6000835161290e818460208801612ab5565b835190830190612922818360208801612ab5565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061295e908301846128d0565b9695505050505050565b60208152600061174560208301846128d0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612a6657612a66612b4b565b500190565b600082612a7a57612a7a612b61565b500490565b6000816000190483118215151615612a9957612a99612b4b565b500290565b600082821015612ab057612ab0612b4b565b500390565b60005b83811015612ad0578181015183820152602001612ab8565b8381111561115e5750506000910152565b600181811c90821680612af557607f821691505b60208210811415612b1657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b3057612b30612b4b565b5060010190565b600082612b4657612b46612b61565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461196a57600080fdfea26469706673582212200f8cdfe2d3942bd6a3510fc03f99e6a55d2ef1b440bddda6803f910e22d0e4e364736f6c63430008070033
Deployed Bytecode Sourcemap
54087:5473:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47865:224;;;;;;;;;;-1:-1:-1;47865:224:0;;;;;:::i;:::-;;:::i;:::-;;;8133:14:1;;8126:22;8108:41;;8096:2;8081:18;47865:224:0;;;;;;;;35359:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54511:191::-;;;;;;;;;;-1:-1:-1;54511:191:0;;;;;:::i;:::-;;:::i;:::-;;;16783:25:1;;;16771:2;16756:18;54511:191:0;16637:177:1;36918:221:0;;;;;;;;;;-1:-1:-1;36918:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7431:32:1;;;7413:51;;7401:2;7386:18;36918:221:0;7267:203:1;36441:411:0;;;;;;;;;;-1:-1:-1;36441:411:0;;;;;:::i;:::-;;:::i;:::-;;58920:286;;;;;;;;;;-1:-1:-1;58920:286:0;;;;;:::i;:::-;;:::i;48505:113::-;;;;;;;;;;-1:-1:-1;48593:10:0;:17;48505:113;;37668:339;;;;;;;;;;-1:-1:-1;37668:339:0;;;;;:::i;:::-;;:::i;55136:253::-;;;;;;;;;;-1:-1:-1;55136:253:0;;;;;:::i;:::-;;:::i;54711:54::-;;;;;;;;;;-1:-1:-1;54711:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16991:4:1;16979:17;;;16961:36;;16949:2;16934:18;54711:54:0;16819:184:1;48173:256:0;;;;;;;;;;-1:-1:-1;48173:256:0;;;;;:::i;:::-;;:::i;59443:114::-;;;;;;;;;;;;;:::i;38078:185::-;;;;;;;;;;-1:-1:-1;38078:185:0;;;;;:::i;:::-;;:::i;54772:60::-;;;;;;;;;;-1:-1:-1;54772:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;56363:199;;;;;;;;;;-1:-1:-1;56363:199:0;;;;;:::i;:::-;;:::i;54276:85::-;;;;;;;;;;;;;:::i;48695:233::-;;;;;;;;;;-1:-1:-1;48695:233:0;;;;;:::i;:::-;;:::i;59338:97::-;;;;;;;;;;-1:-1:-1;59338:97:0;;;;;:::i;:::-;;:::i;55626:::-;;;;;;;;;;-1:-1:-1;55626:97:0;;;;;:::i;:::-;;:::i;35053:239::-;;;;;;;;;;-1:-1:-1;35053:239:0;;;;;:::i;:::-;;:::i;55735:88::-;;;;;;;;;;-1:-1:-1;55735:88:0;;;;;:::i;:::-;;:::i;56570:253::-;;;;;;;;;;-1:-1:-1;56570:253:0;;;;;:::i;:::-;;:::i;34783:208::-;;;;;;;;;;-1:-1:-1;34783:208:0;;;;;:::i;:::-;;:::i;14329:103::-;;;;;;;;;;;;;:::i;55397:122::-;;;;;;;;;;-1:-1:-1;55397:122:0;;;;;:::i;:::-;;:::i;54173:39::-;;;;;;;;;;;;;;;;13678:87;;;;;;;;;;-1:-1:-1;13751:6:0;;-1:-1:-1;;;;;13751:6:0;13678:87;;56140:215;;;;;;;;;;-1:-1:-1;56140:215:0;;;;;:::i;:::-;;:::i;57624:255::-;;;;;;;;;;-1:-1:-1;57624:255:0;;;;;:::i;:::-;;:::i;35528:104::-;;;;;;;;;;;;;:::i;54903:45::-;;;;;;;;;;-1:-1:-1;54903:45:0;;;;;;;;54839:55;;;;;;;;;;-1:-1:-1;54839:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;57887:1025;;;;;;:::i;:::-;;:::i;37211:155::-;;;;;;;;;;-1:-1:-1;37211:155:0;;;;;:::i;:::-;;:::i;54418:37::-;;;;;;;;;;-1:-1:-1;54418:37:0;;;;;;;;38334:328;;;;;;;;;;-1:-1:-1;38334:328:0;;;;;:::i;:::-;;:::i;56831:204::-;;;;;;;;;;-1:-1:-1;56831:204:0;;;;;:::i;:::-;;:::i;55527:91::-;;;;;;;;;;-1:-1:-1;55527:91:0;;;;;:::i;:::-;;:::i;35703:334::-;;;;;;;;;;-1:-1:-1;35703:334:0;;;;;:::i;:::-;;:::i;55831:301::-;;;;;;;;;;-1:-1:-1;55831:301:0;;;;;:::i;:::-;;:::i;57158:458::-;;;;;;;;;;-1:-1:-1;57158:458:0;;;;;:::i;:::-;;:::i;55021:107::-;;;;;;;;;;-1:-1:-1;55021:107:0;;;;;:::i;:::-;55088:26;:32;;-1:-1:-1;;55088:32:0;;;;;;;;;;55021:107;37437:164;;;;;;;;;;-1:-1:-1;37437:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37558:25:0;;;37534:4;37558:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37437:164;54221:46;;;;;;;;;;;;;;;;14587:201;;;;;;;;;;-1:-1:-1;14587:201:0;;;;;:::i;:::-;;:::i;54462:40::-;;;;;;;;;;-1:-1:-1;54462:40:0;;;;;;;;;;;54370:39;;;;;;;;;;;;;;;;47865:224;47967:4;-1:-1:-1;;;;;;47991:50:0;;-1:-1:-1;;;47991:50:0;;:90;;;48045:36;48069:11;48045:23;:36::i;:::-;47984:97;47865:224;-1:-1:-1;;47865:224:0:o;35359:100::-;35413:13;35446:5;35439:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35359:100;:::o;54511:191::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54511:191:0;:::o;36918:221::-;36994:7;40261:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40261:16:0;37014:73;;;;-1:-1:-1;;;37014:73:0;;14006:2:1;37014:73:0;;;13988:21:1;14045:2;14025:18;;;14018:30;14084:34;14064:18;;;14057:62;-1:-1:-1;;;14135:18:1;;;14128:42;14187:19;;37014:73:0;;;;;;;;;-1:-1:-1;37107:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37107:24:0;;36918:221::o;36441:411::-;36522:13;36538:23;36553:7;36538:14;:23::i;:::-;36522:39;;36586:5;-1:-1:-1;;;;;36580:11:0;:2;-1:-1:-1;;;;;36580:11:0;;;36572:57;;;;-1:-1:-1;;;36572:57:0;;15606:2:1;36572:57:0;;;15588:21:1;15645:2;15625:18;;;15618:30;15684:34;15664:18;;;15657:62;-1:-1:-1;;;15735:18:1;;;15728:31;15776:19;;36572:57:0;15404:397:1;36572:57:0;12482:10;-1:-1:-1;;;;;36664:21:0;;;;:62;;-1:-1:-1;36689:37:0;36706:5;12482:10;37437:164;:::i;36689:37::-;36642:168;;;;-1:-1:-1;;;36642:168:0;;12047:2:1;36642:168:0;;;12029:21:1;12086:2;12066:18;;;12059:30;12125:34;12105:18;;;12098:62;12196:26;12176:18;;;12169:54;12240:19;;36642:168:0;11845:420:1;36642:168:0;36823:21;36832:2;36836:7;36823:8;:21::i;:::-;36511:341;36441:411;;:::o;58920:286::-;13751:6;;-1:-1:-1;;;;;13751:6:0;12482:10;13898:23;13890:68;;;;-1:-1:-1;;;13890:68:0;;;;;;;:::i;:::-;58994:14:::1;59011:13;48593:10:::0;:17;;48505:113;59011:13:::1;58994:30;;59041:9;59037:112;59056:20:::0;;::::1;59037:112;;;59098:39;59108:9;;59118:1;59108:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;59135:1:::0;59122:10:::1;59126:6:::0;59122:1:::1;:10;:::i;:::-;:14;;;;:::i;:::-;59098:9;:39::i;:::-;59078:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59037:112;;;;59182:9;;:16;;59161:17;;:37;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;58920:286:0:o;37668:339::-;37863:41;12482:10;37896:7;37863:18;:41::i;:::-;37855:103;;;;-1:-1:-1;;;37855:103:0;;;;;;;:::i;:::-;37971:28;37981:4;37987:2;37991:7;37971:9;:28::i;55136:253::-;13751:6;;-1:-1:-1;;;;;13751:6:0;12482:10;13898:23;13890:68;;;;-1:-1:-1;;;13890:68:0;;;;;;;:::i;:::-;55264:5:::1;55259:10;;:1;:10;;:24;;;;;55282:1;55273:5;:10;;;;55259:24;55251:60;;;::::0;-1:-1:-1;;;55251:60:0;;13293:2:1;55251:60:0::1;::::0;::::1;13275:21:1::0;13332:2;13312:18;;;13305:30;-1:-1:-1;;;13351:18:1;;;13344:53;13414:18;;55251:60:0::1;13091:347:1::0;55251:60:0::1;55365:16;55322:33;55356:5;55322:40;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;:59:::0;-1:-1:-1;;55136:253:0:o;48173:256::-;48270:7;48306:23;48323:5;48306:16;:23::i;:::-;48298:5;:31;48290:87;;;;-1:-1:-1;;;48290:87:0;;8586:2:1;48290:87:0;;;8568:21:1;8625:2;8605:18;;;8598:30;8664:34;8644:18;;;8637:62;-1:-1:-1;;;8715:18:1;;;8708:41;8766:19;;48290:87:0;8384:407:1;48290:87:0;-1:-1:-1;;;;;;48395:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;48173:256::o;59443:114::-;13751:6;;-1:-1:-1;;;;;13751:6:0;12482:10;13898:23;13890:68;;;;-1:-1:-1;;;13890:68:0;;;;;;;:::i;:::-;59501:47:::1;::::0;59509:10:::1;::::0;59526:21:::1;59501:47:::0;::::1;;;::::0;::::1;::::0;;;59526:21;59509:10;59501:47;::::1;;;;;;59493:56;;;::::0;::::1;;59443:114::o:0;38078:185::-;38216:39;38233:4;38239:2;38243:7;38216:39;;;;;;;;;;;;:16;:39::i;56363:199::-;13751:6;;-1:-1:-1;;;;;13751:6:0;12482:10;13898:23;13890:68;;;;-1:-1:-1;;;13890:68:0;;;;;;;:::i;:::-;56450:9:::1;56446:109;56465:20:::0;;::::1;56446:109;;;56507:20;:34;56528:9;;56538:1;56528:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;56507:34:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;56507:34:0;;;:36;;;::::1;::::0;::::1;:::i;:::-;;;;;;56487:3;;;;;:::i;:::-;;;;56446:109;;54276:85:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48695:233::-;48770:7;48806:30;48593:10;:17;;48505:113;48806:30;48798:5;:38;48790:95;;;;-1:-1:-1;;;48790:95:0;;16426:2:1;48790:95:0;;;16408:21:1;16465:2;16445:18;;;16438:30;16504:34;16484:18;;;16477:62;-1:-1:-1;;;16555:18:1;;;16548:42;16607:19;;48790:95:0;16224:408:1;48790:95:0;48903:10;48914:5;48903:17;;;;;;;;:::i;:::-;;;;;;;;;48896:24;;48695:233;;;:::o;59338:97::-;13751:6;;-1:-1:-1;;;;;13751:6:0;12482:10;13898:23;13890:68;;;;-1:-1:-1;;;13890:68:0;;;;;;;:::i;:::-;59409:18:::1;:12;59424:3:::0;;59409:18:::1;:::i;55626:97::-:0;13751:6;;-1:-1:-1;;;;;13751:6:0;12482:10;13898:23;13890:68;;;;-1:-1:-1;;;13890:68:0;;;;;;;:::i;:::-;55689:20:::1;:26:::0;;;::::1;;;;-1:-1:-1::0;;55689:26:0;;::::1;::::0;;;::::1;::::0;;55626:97::o;35053:239::-;35125:7;35161:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35161:16:0;35196:19;35188:73;;;;-1:-1:-1;;;35188:73:0;;12883:2:1;35188:73:0;;;12865:21:1;12922:2;12902:18;;;12895:30;12961:34;12941:18;;;12934:62;-1:-1:-1;;;13012:18:1;;;13005:39;13061:19;;35188:73:0;12681:405:1;55735:88:0;13751:6;;-1:-1:-1;;;;;13751:6:0;12482:10;13898:23;13890:68;;;;-1:-1:-1;;;13890:68:0;;;;;;;:::i;:::-;55799:10:::1;:16:::0;55735:88::o;56570:253::-;13751:6;;-1:-1:-1;;;;;13751:6:0;12482:10;13898:23;13890:68;;;;-1:-1:-1;;;13890:68:0;;;;;;;:::i;:::-;56692:9:::1;56688:128;56707:20:::0;;::::1;56688:128;;;56787:17;56749:20;:34;56770:9;;56780:1;56770:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;56749:34:0::1;-1:-1:-1::0;;;;;56749:34:0::1;;;;;;;;;;;;;:55;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;56729:3:0;;-1:-1:-1;56729:3:0::1;::::0;::::1;:::i;:::-;;;;56688:128;;;;56570:253:::0;;;:::o;34783:208::-;34855:7;-1:-1:-1;;;;;34883:19:0;;34875:74;;;;-1:-1:-1;;;34875:74:0;;12472:2:1;34875:74:0;;;12454:21:1;12511:2;12491:18;;;12484:30;12550:34;12530:18;;;12523:62;-1:-1:-1;;;12601:18:1;;;12594:40;12651:19;;34875:74:0;12270:406:1;34875:74:0;-1:-1:-1;;;;;;34967:16:0;;;;;:9;:16;;;;;;;34783:208::o;14329:103::-;13751:6;;-1:-1:-1;;;;;13751:6:0;12482:10;13898:23;13890:68;;;;-1:-1:-1;;;13890:68:0;;;;;;;:::i;:::-;14394:30:::1;14421:1;14394:18;:30::i;55397:122::-:0;13751:6;;-1:-1:-1;;;;;13751:6:0;12482:10;13898:23;13890:68;;;;-1:-1:-1;;;13890:68:0;;;;;;;:::i;:::-;55479:26:::1;:32:::0;55397:122::o;56140:215::-;13751:6;;-1:-1:-1;;;;;13751:6:0;12482:10;13898:23;13890:68;;;;-1:-1:-1;;;13890:68:0;;;;;;;:::i;:::-;56240:9:::1;56236:112;56255:20:::0;;::::1;56236:112;;;56335:1;56297:21;:35;56319:9;;56329:1;56319:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;56297:35:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;56297:35:0;:39;;-1:-1:-1;;56297:39:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;56277:3;::::1;::::0;::::1;:::i;:::-;;;;56236:112;;57624:255:::0;57718:20;;57694:7;;57718:20;;;;;;:51;;-1:-1:-1;57743:26:0;;;;57742:27;57718:51;57714:158;;;-1:-1:-1;;;;;;57793:26:0;;;;;:20;:26;;;;;;;57624:255::o;57714:158::-;-1:-1:-1;57859:1:0;;57624:255;-1:-1:-1;57624:255:0:o;57714:158::-;57624:255;;;:::o;35528:104::-;35584:13;35617:7;35610:14;;;;;:::i;57887:1025::-;57963:26;57978:10;57963:14;:26::i;:::-;57953:6;:36;;57945:72;;;;-1:-1:-1;;;57945:72:0;;10181:2:1;57945:72:0;;;10163:21:1;10220:2;10200:18;;;10193:30;10259:25;10239:18;;;10232:53;10302:18;;57945:72:0;9979:347:1;57945:72:0;58034:20;;;;;;;;:51;;-1:-1:-1;58059:26:0;;;;58058:27;58034:51;58030:569;;;58136:10;58115:32;;;;:20;:32;;;;;;58106:41;;58102:177;;;58233:10;58212:32;;;;:20;:32;;;;;;58203:41;;:6;:41;:::i;:::-;58189:10;;:56;;;;:::i;:::-;58176:9;:69;;58168:95;;;;-1:-1:-1;;;58168:95:0;;10533:2:1;58168:95:0;;;10515:21:1;10572:2;10552:18;;;10545:30;-1:-1:-1;;;10591:18:1;;;10584:43;10644:18;;58168:95:0;10331:337:1;58168:95:0;58330:10;58309:32;;;;:20;:32;;;;;;58299:42;;58295:202;;58383:10;58362:32;;;;:20;:32;;;;;:42;;58398:6;;58362:32;:42;;58398:6;;58362:42;:::i;:::-;;;;-1:-1:-1;58030:569:0;;-1:-1:-1;58030:569:0;58295:202;58466:10;58480:1;58445:32;;;:20;:32;;;;;:36;58030:569;;;58563:6;58550:10;;:19;;;;:::i;:::-;58537:9;:32;;58529:58;;;;-1:-1:-1;;;58529:58:0;;10533:2:1;58529:58:0;;;10515:21:1;10572:2;10552:18;;;10545:30;-1:-1:-1;;;10591:18:1;;;10584:43;10644:18;;58529:58:0;10331:337:1;58529:58:0;58611:14;58628:13;48593:10;:17;;48505:113;58628:13;58611:30;;58656:9;58652:100;58675:6;58671:1;:10;58652:100;;;58703:37;58713:10;58738:1;58725:10;58729:6;58725:1;:10;:::i;58703:37::-;58683:3;;;;:::i;:::-;;;;58652:100;;;-1:-1:-1;58769:20:0;;;;;;;58764:101;;58832:10;58806:37;;;;:25;:37;;;;;:47;;58847:6;;58806:37;:47;;58847:6;;58806:47;:::i;:::-;;;;-1:-1:-1;;58764:101:0;58898:6;58877:17;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;57887:1025:0:o;37211:155::-;37306:52;12482:10;37339:8;37349;37306:18;:52::i;:::-;37211:155;;:::o;38334:328::-;38509:41;12482:10;38542:7;38509:18;:41::i;:::-;38501:103;;;;-1:-1:-1;;;38501:103:0;;;;;;;:::i;:::-;38615:39;38629:4;38635:2;38639:7;38648:5;38615:13;:39::i;56831:204::-;13751:6;;-1:-1:-1;;;;;13751:6:0;12482:10;13898:23;13890:68;;;;-1:-1:-1;;;13890:68:0;;;;;;;:::i;:::-;56921:9:::1;56917:111;56936:20:::0;;::::1;56917:111;;;57015:1;56978:20;:34;56999:9;;57009:1;56999:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;56978:34:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;56978:34:0;:38;56958:3;::::1;::::0;::::1;:::i;:::-;;;;56917:111;;55527:91:::0;13751:6;;-1:-1:-1;;;;;13751:6:0;12482:10;13898:23;13890:68;;;;-1:-1:-1;;;13890:68:0;;;;;;;:::i;:::-;55587:17:::1;:23:::0;;-1:-1:-1;;55587:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55527:91::o;35703:334::-;40237:4;40261:16;;;:7;:16;;;;;;35776:13;;-1:-1:-1;;;;;40261:16:0;35802:76;;;;-1:-1:-1;;;35802:76:0;;15190:2:1;35802:76:0;;;15172:21:1;15229:2;15209:18;;;15202:30;15268:34;15248:18;;;15241:62;-1:-1:-1;;;15319:18:1;;;15312:45;15374:19;;35802:76:0;14988:411:1;35802:76:0;35891:21;35915:10;:8;:10::i;:::-;35891:34;;35967:1;35949:7;35943:21;:25;:86;;;;;;;;;;;;;;;;;35995:7;36004:18;:7;:16;:18::i;:::-;35978:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35943:86;35936:93;35703:334;-1:-1:-1;;;35703:334:0:o;55831:301::-;13751:6;;-1:-1:-1;;;;;13751:6:0;12482:10;13898:23;13890:68;;;;-1:-1:-1;;;13890:68:0;;;;;;;:::i;:::-;55948:5:::1;55943:10;;:1;:10;;:24;;;;;55966:1;55957:5;:10;;;;55943:24;55935:60;;;::::0;-1:-1:-1;;;55935:60:0;;13293:2:1;55935:60:0::1;::::0;::::1;13275:21:1::0;13332:2;13312:18;;;13305:30;-1:-1:-1;;;13351:18:1;;;13344:53;13414:18;;55935:60:0::1;13091:347:1::0;55935:60:0::1;56010:9;56006:116;56025:20:::0;;::::1;56006:116;;;56105:5;56067:21;:35;56089:9;;56099:1;56089:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;56067:35:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;56067:35:0;:43;;-1:-1:-1;;56067:43:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;56047:3;::::1;::::0;::::1;:::i;:::-;;;;56006:116;;57158:458:::0;57281:20;;57217:7;;;;57281:20;;;;;57277:271;;;-1:-1:-1;57338:26:0;;57277:271;;;57386:17;;;;57382:166;;;-1:-1:-1;;;;;57505:31:0;;;;;;:25;:31;;;;;;;;;57474:21;:27;;;;;;;57440:33;:62;;:33;;57474:27;;;57440:62;;;;;;:::i;:::-;;;;;;;;;:96;;;;:::i;:::-;57420:116;;57382:166;57567:41;57571:17;57590;;57567:3;:41::i;14587:201::-;13751:6;;-1:-1:-1;;;;;13751:6:0;12482:10;13898:23;13890:68;;;;-1:-1:-1;;;13890:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14676:22:0;::::1;14668:73;;;::::0;-1:-1:-1;;;14668:73:0;;9417:2:1;14668:73:0::1;::::0;::::1;9399:21:1::0;9456:2;9436:18;;;9429:30;9495:34;9475:18;;;9468:62;-1:-1:-1;;;9546:18:1;;;9539:36;9592:19;;14668:73:0::1;9215:402:1::0;14668:73:0::1;14752:28;14771:8;14752:18;:28::i;:::-;14587:201:::0;:::o;34414:305::-;34516:4;-1:-1:-1;;;;;;34553:40:0;;-1:-1:-1;;;34553:40:0;;:105;;-1:-1:-1;;;;;;;34610:48:0;;-1:-1:-1;;;34610:48:0;34553:105;:158;;;-1:-1:-1;;;;;;;;;;26219:40:0;;;34675:36;26110:157;44154:174;44229:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44229:29:0;-1:-1:-1;;;;;44229:29:0;;;;;;;;:24;;44283:23;44229:24;44283:14;:23::i;:::-;-1:-1:-1;;;;;44274:46:0;;;;;;;;;;;44154:174;;:::o;41156:110::-;41232:26;41242:2;41246:7;41232:26;;;;;;;;;;;;:9;:26::i;40466:348::-;40559:4;40261:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40261:16:0;40576:73;;;;-1:-1:-1;;;40576:73:0;;11634:2:1;40576:73:0;;;11616:21:1;11673:2;11653:18;;;11646:30;11712:34;11692:18;;;11685:62;-1:-1:-1;;;11763:18:1;;;11756:42;11815:19;;40576:73:0;11432:408:1;40576:73:0;40660:13;40676:23;40691:7;40676:14;:23::i;:::-;40660:39;;40729:5;-1:-1:-1;;;;;40718:16:0;:7;-1:-1:-1;;;;;40718:16:0;;:51;;;;40762:7;-1:-1:-1;;;;;40738:31:0;:20;40750:7;40738:11;:20::i;:::-;-1:-1:-1;;;;;40738:31:0;;40718:51;:87;;;-1:-1:-1;;;;;;37558:25:0;;;37534:4;37558:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40773:32;40710:96;40466:348;-1:-1:-1;;;;40466:348:0:o;43458:578::-;43617:4;-1:-1:-1;;;;;43590:31:0;:23;43605:7;43590:14;:23::i;:::-;-1:-1:-1;;;;;43590:31:0;;43582:85;;;;-1:-1:-1;;;43582:85:0;;14780:2:1;43582:85:0;;;14762:21:1;14819:2;14799:18;;;14792:30;14858:34;14838:18;;;14831:62;-1:-1:-1;;;14909:18:1;;;14902:39;14958:19;;43582:85:0;14578:405:1;43582:85:0;-1:-1:-1;;;;;43686:16:0;;43678:65;;;;-1:-1:-1;;;43678:65:0;;10875:2:1;43678:65:0;;;10857:21:1;10914:2;10894:18;;;10887:30;10953:34;10933:18;;;10926:62;-1:-1:-1;;;11004:18:1;;;10997:34;11048:19;;43678:65:0;10673:400:1;43678:65:0;43756:39;43777:4;43783:2;43787:7;43756:20;:39::i;:::-;43860:29;43877:1;43881:7;43860:8;:29::i;:::-;-1:-1:-1;;;;;43902:15:0;;;;;;:9;:15;;;;;:20;;43921:1;;43902:15;:20;;43921:1;;43902:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43933:13:0;;;;;;:9;:13;;;;;:18;;43950:1;;43933:13;:18;;43950:1;;43933:18;:::i;:::-;;;;-1:-1:-1;;43962:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43962:21:0;-1:-1:-1;;;;;43962:21:0;;;;;;;;;44001:27;;43962:16;;44001:27;;;;;;;43458:578;;;:::o;14948:191::-;15041:6;;;-1:-1:-1;;;;;15058:17:0;;;-1:-1:-1;;;;;;15058:17:0;;;;;;;15091:40;;15041:6;;;15058:17;15041:6;;15091:40;;15022:16;;15091:40;15011:128;14948:191;:::o;44470:315::-;44625:8;-1:-1:-1;;;;;44616:17:0;:5;-1:-1:-1;;;;;44616:17:0;;;44608:55;;;;-1:-1:-1;;;44608:55:0;;11280:2:1;44608:55:0;;;11262:21:1;11319:2;11299:18;;;11292:30;11358:27;11338:18;;;11331:55;11403:18;;44608:55:0;11078:349:1;44608:55:0;-1:-1:-1;;;;;44674:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;44674:46:0;;;;;;;;;;44736:41;;8108::1;;;44736::0;;8081:18:1;44736:41:0;;;;;;;44470:315;;;:::o;39544:::-;39701:28;39711:4;39717:2;39721:7;39701:9;:28::i;:::-;39748:48;39771:4;39777:2;39781:7;39790:5;39748:22;:48::i;:::-;39740:111;;;;-1:-1:-1;;;39740:111:0;;;;;;;:::i;59214:113::-;59274:13;59307:12;59300:19;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;57043:107;57101:7;57133:1;57128;:6;;:14;;57141:1;57128:14;;;-1:-1:-1;57137:1:0;;57121:21;-1:-1:-1;57043:107:0:o;41493:321::-;41623:18;41629:2;41633:7;41623:5;:18::i;:::-;41674:54;41705:1;41709:2;41713:7;41722:5;41674:22;:54::i;:::-;41652:154;;;;-1:-1:-1;;;41652:154:0;;;;;;;:::i;49541:589::-;-1:-1:-1;;;;;49747:18:0;;49743:187;;49782:40;49814:7;50957:10;:17;;50930:24;;;;:15;:24;;;;;:44;;;50985:24;;;;;;;;;;;;50853:164;49782:40;49743:187;;;49852:2;-1:-1:-1;;;;;49844:10:0;:4;-1:-1:-1;;;;;49844:10:0;;49840:90;;49871:47;49904:4;49910:7;49871:32;:47::i;:::-;-1:-1:-1;;;;;49944:16:0;;49940:183;;49977:45;50014:7;49977:36;:45::i;49940:183::-;50050:4;-1:-1:-1;;;;;50044:10:0;:2;-1:-1:-1;;;;;50044:10:0;;50040:83;;50071:40;50099:2;50103:7;50071:27;:40::i;45350:799::-;45505:4;-1:-1:-1;;;;;45526:13:0;;16289:20;16337:8;45522:620;;45562:72;;-1:-1:-1;;;45562:72:0;;-1:-1:-1;;;;;45562:36:0;;;;;:72;;12482:10;;45613:4;;45619:7;;45628:5;;45562:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45562:72:0;;;;;;;;-1:-1:-1;;45562:72:0;;;;;;;;;;;;:::i;:::-;;;45558:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45804:13:0;;45800:272;;45847:60;;-1:-1:-1;;;45847:60:0;;;;;;;:::i;45800:272::-;46022:6;46016:13;46007:6;46003:2;45999:15;45992:38;45558:529;-1:-1:-1;;;;;;45685:51:0;-1:-1:-1;;;45685:51:0;;-1:-1:-1;45678:58:0;;45522:620;-1:-1:-1;46126:4:0;45350:799;;;;;;:::o;42150:382::-;-1:-1:-1;;;;;42230:16:0;;42222:61;;;;-1:-1:-1;;;42222:61:0;;13645:2:1;42222:61:0;;;13627:21:1;;;13664:18;;;13657:30;13723:34;13703:18;;;13696:62;13775:18;;42222:61:0;13443:356:1;42222:61:0;40237:4;40261:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40261:16:0;:30;42294:58;;;;-1:-1:-1;;;42294:58:0;;9824:2:1;42294:58:0;;;9806:21:1;9863:2;9843:18;;;9836:30;9902;9882:18;;;9875:58;9950:18;;42294:58:0;9622:352:1;42294:58:0;42365:45;42394:1;42398:2;42402:7;42365:20;:45::i;:::-;-1:-1:-1;;;;;42423:13:0;;;;;;:9;:13;;;;;:18;;42440:1;;42423:13;:18;;42440:1;;42423:18;:::i;:::-;;;;-1:-1:-1;;42452:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42452:21:0;-1:-1:-1;;;;;42452:21:0;;;;;;;;42491:33;;42452:16;;;42491:33;;42452:16;;42491:33;42150:382;;:::o;51644:988::-;51910:22;51960:1;51935:22;51952:4;51935:16;:22::i;:::-;:26;;;;:::i;:::-;51972:18;51993:26;;;:17;:26;;;;;;51910:51;;-1:-1:-1;52126:28:0;;;52122:328;;-1:-1:-1;;;;;52193:18:0;;52171:19;52193:18;;;:12;:18;;;;;;;;:34;;;;;;;;;52244:30;;;;;;:44;;;52361:30;;:17;:30;;;;;:43;;;52122:328;-1:-1:-1;52546:26:0;;;;:17;:26;;;;;;;;52539:33;;;-1:-1:-1;;;;;52590:18:0;;;;;:12;:18;;;;;:34;;;;;;;52583:41;51644:988::o;52927:1079::-;53205:10;:17;53180:22;;53205:21;;53225:1;;53205:21;:::i;:::-;53237:18;53258:24;;;:15;:24;;;;;;53631:10;:26;;53180:46;;-1:-1:-1;53258:24:0;;53180:46;;53631:26;;;;;;:::i;:::-;;;;;;;;;53609:48;;53695:11;53670:10;53681;53670:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;53775:28;;;:15;:28;;;;;;;:41;;;53947:24;;;;;53940:31;53982:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;52998:1008;;;52927:1079;:::o;50431:221::-;50516:14;50533:20;50550:2;50533:16;:20::i;:::-;-1:-1:-1;;;;;50564:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;50609:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;50431:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:367;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:55;;337:1;334;327:12;286:55;-1:-1:-1;360:20:1;;403:18;392:30;;389:50;;;435:1;432;425:12;389:50;472:4;464:6;460:17;448:29;;532:3;525:4;515:6;512:1;508:14;500:6;496:27;492:38;489:47;486:67;;;549:1;546;539:12;486:67;192:367;;;;;:::o;564:160::-;629:20;;685:13;;678:21;668:32;;658:60;;714:1;711;704:12;729:156;795:20;;855:4;844:16;;834:27;;824:55;;875:1;872;865:12;890:186;949:6;1002:2;990:9;981:7;977:23;973:32;970:52;;;1018:1;1015;1008:12;970:52;1041:29;1060:9;1041:29;:::i;1081:260::-;1149:6;1157;1210:2;1198:9;1189:7;1185:23;1181:32;1178:52;;;1226:1;1223;1216:12;1178:52;1249:29;1268:9;1249:29;:::i;:::-;1239:39;;1297:38;1331:2;1320:9;1316:18;1297:38;:::i;:::-;1287:48;;1081:260;;;;;:::o;1346:328::-;1423:6;1431;1439;1492:2;1480:9;1471:7;1467:23;1463:32;1460:52;;;1508:1;1505;1498:12;1460:52;1531:29;1550:9;1531:29;:::i;:::-;1521:39;;1579:38;1613:2;1602:9;1598:18;1579:38;:::i;:::-;1569:48;;1664:2;1653:9;1649:18;1636:32;1626:42;;1346:328;;;;;:::o;1679:1138::-;1774:6;1782;1790;1798;1851:3;1839:9;1830:7;1826:23;1822:33;1819:53;;;1868:1;1865;1858:12;1819:53;1891:29;1910:9;1891:29;:::i;:::-;1881:39;;1939:38;1973:2;1962:9;1958:18;1939:38;:::i;:::-;1929:48;;2024:2;2013:9;2009:18;1996:32;1986:42;;2079:2;2068:9;2064:18;2051:32;2102:18;2143:2;2135:6;2132:14;2129:34;;;2159:1;2156;2149:12;2129:34;2197:6;2186:9;2182:22;2172:32;;2242:7;2235:4;2231:2;2227:13;2223:27;2213:55;;2264:1;2261;2254:12;2213:55;2300:2;2287:16;2322:2;2318;2315:10;2312:36;;;2328:18;;:::i;:::-;2403:2;2397:9;2371:2;2457:13;;-1:-1:-1;;2453:22:1;;;2477:2;2449:31;2445:40;2433:53;;;2501:18;;;2521:22;;;2498:46;2495:72;;;2547:18;;:::i;:::-;2587:10;2583:2;2576:22;2622:2;2614:6;2607:18;2662:7;2657:2;2652;2648;2644:11;2640:20;2637:33;2634:53;;;2683:1;2680;2673:12;2634:53;2739:2;2734;2730;2726:11;2721:2;2713:6;2709:15;2696:46;2784:1;2779:2;2774;2766:6;2762:15;2758:24;2751:35;2805:6;2795:16;;;;;;;1679:1138;;;;;;;:::o;2822:254::-;2887:6;2895;2948:2;2936:9;2927:7;2923:23;2919:32;2916:52;;;2964:1;2961;2954:12;2916:52;2987:29;3006:9;2987:29;:::i;:::-;2977:39;;3035:35;3066:2;3055:9;3051:18;3035:35;:::i;3081:254::-;3149:6;3157;3210:2;3198:9;3189:7;3185:23;3181:32;3178:52;;;3226:1;3223;3216:12;3178:52;3249:29;3268:9;3249:29;:::i;:::-;3239:39;3325:2;3310:18;;;;3297:32;;-1:-1:-1;;;3081:254:1:o;3340:437::-;3426:6;3434;3487:2;3475:9;3466:7;3462:23;3458:32;3455:52;;;3503:1;3500;3493:12;3455:52;3543:9;3530:23;3576:18;3568:6;3565:30;3562:50;;;3608:1;3605;3598:12;3562:50;3647:70;3709:7;3700:6;3689:9;3685:22;3647:70;:::i;:::-;3736:8;;3621:96;;-1:-1:-1;3340:437:1;-1:-1:-1;;;;3340:437:1:o;3782:180::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3930:26;3946:9;3930:26;:::i;3967:245::-;4025:6;4078:2;4066:9;4057:7;4053:23;4049:32;4046:52;;;4094:1;4091;4084:12;4046:52;4133:9;4120:23;4152:30;4176:5;4152:30;:::i;4217:249::-;4286:6;4339:2;4327:9;4318:7;4314:23;4310:32;4307:52;;;4355:1;4352;4345:12;4307:52;4387:9;4381:16;4406:30;4430:5;4406:30;:::i;4471:592::-;4542:6;4550;4603:2;4591:9;4582:7;4578:23;4574:32;4571:52;;;4619:1;4616;4609:12;4571:52;4659:9;4646:23;4688:18;4729:2;4721:6;4718:14;4715:34;;;4745:1;4742;4735:12;4715:34;4783:6;4772:9;4768:22;4758:32;;4828:7;4821:4;4817:2;4813:13;4809:27;4799:55;;4850:1;4847;4840:12;4799:55;4890:2;4877:16;4916:2;4908:6;4905:14;4902:34;;;4932:1;4929;4922:12;4902:34;4977:7;4972:2;4963:6;4959:2;4955:15;4951:24;4948:37;4945:57;;;4998:1;4995;4988:12;4945:57;5029:2;5021:11;;;;;5051:6;;-1:-1:-1;4471:592:1;;-1:-1:-1;;;;4471:592:1:o;5068:180::-;5127:6;5180:2;5168:9;5159:7;5155:23;5151:32;5148:52;;;5196:1;5193;5186:12;5148:52;-1:-1:-1;5219:23:1;;5068:180;-1:-1:-1;5068:180:1:o;5253:505::-;5348:6;5356;5364;5417:2;5405:9;5396:7;5392:23;5388:32;5385:52;;;5433:1;5430;5423:12;5385:52;5469:9;5456:23;5446:33;;5530:2;5519:9;5515:18;5502:32;5557:18;5549:6;5546:30;5543:50;;;5589:1;5586;5579:12;5543:50;5628:70;5690:7;5681:6;5670:9;5666:22;5628:70;:::i;:::-;5253:505;;5717:8;;-1:-1:-1;5602:96:1;;-1:-1:-1;;;;5253:505:1:o;5763:507::-;5856:6;5864;5872;5925:2;5913:9;5904:7;5900:23;5896:32;5893:52;;;5941:1;5938;5931:12;5893:52;5964:27;5981:9;5964:27;:::i;:::-;5954:37;;6042:2;6031:9;6027:18;6014:32;6069:18;6061:6;6058:30;6055:50;;;6101:1;6098;6091:12;6275:250;6341:6;6349;6402:2;6390:9;6381:7;6377:23;6373:32;6370:52;;;6418:1;6415;6408:12;6370:52;6441:27;6458:9;6441:27;:::i;6530:257::-;6571:3;6609:5;6603:12;6636:6;6631:3;6624:19;6652:63;6708:6;6701:4;6696:3;6692:14;6685:4;6678:5;6674:16;6652:63;:::i;:::-;6769:2;6748:15;-1:-1:-1;;6744:29:1;6735:39;;;;6776:4;6731:50;;6530:257;-1:-1:-1;;6530:257:1:o;6792:470::-;6971:3;7009:6;7003:13;7025:53;7071:6;7066:3;7059:4;7051:6;7047:17;7025:53;:::i;:::-;7141:13;;7100:16;;;;7163:57;7141:13;7100:16;7197:4;7185:17;;7163:57;:::i;:::-;7236:20;;6792:470;-1:-1:-1;;;;6792:470:1:o;7475:488::-;-1:-1:-1;;;;;7744:15:1;;;7726:34;;7796:15;;7791:2;7776:18;;7769:43;7843:2;7828:18;;7821:34;;;7891:3;7886:2;7871:18;;7864:31;;;7669:4;;7912:45;;7937:19;;7929:6;7912:45;:::i;:::-;7904:53;7475:488;-1:-1:-1;;;;;;7475:488:1:o;8160:219::-;8309:2;8298:9;8291:21;8272:4;8329:44;8369:2;8358:9;8354:18;8346:6;8329:44;:::i;8796:414::-;8998:2;8980:21;;;9037:2;9017:18;;;9010:30;9076:34;9071:2;9056:18;;9049:62;-1:-1:-1;;;9142:2:1;9127:18;;9120:48;9200:3;9185:19;;8796:414::o;14217:356::-;14419:2;14401:21;;;14438:18;;;14431:30;14497:34;14492:2;14477:18;;14470:62;14564:2;14549:18;;14217:356::o;15806:413::-;16008:2;15990:21;;;16047:2;16027:18;;;16020:30;16086:34;16081:2;16066:18;;16059:62;-1:-1:-1;;;16152:2:1;16137:18;;16130:47;16209:3;16194:19;;15806:413::o;17008:128::-;17048:3;17079:1;17075:6;17072:1;17069:13;17066:39;;;17085:18;;:::i;:::-;-1:-1:-1;17121:9:1;;17008:128::o;17141:120::-;17181:1;17207;17197:35;;17212:18;;:::i;:::-;-1:-1:-1;17246:9:1;;17141:120::o;17266:168::-;17306:7;17372:1;17368;17364:6;17360:14;17357:1;17354:21;17349:1;17342:9;17335:17;17331:45;17328:71;;;17379:18;;:::i;:::-;-1:-1:-1;17419:9:1;;17266:168::o;17439:125::-;17479:4;17507:1;17504;17501:8;17498:34;;;17512:18;;:::i;:::-;-1:-1:-1;17549:9:1;;17439:125::o;17569:258::-;17641:1;17651:113;17665:6;17662:1;17659:13;17651:113;;;17741:11;;;17735:18;17722:11;;;17715:39;17687:2;17680:10;17651:113;;;17782:6;17779:1;17776:13;17773:48;;;-1:-1:-1;;17817:1:1;17799:16;;17792:27;17569:258::o;17832:380::-;17911:1;17907:12;;;;17954;;;17975:61;;18029:4;18021:6;18017:17;18007:27;;17975:61;18082:2;18074:6;18071:14;18051:18;18048:38;18045:161;;;18128:10;18123:3;18119:20;18116:1;18109:31;18163:4;18160:1;18153:15;18191:4;18188:1;18181:15;18045:161;;17832:380;;;:::o;18217:135::-;18256:3;-1:-1:-1;;18277:17:1;;18274:43;;;18297:18;;:::i;:::-;-1:-1:-1;18344:1:1;18333:13;;18217:135::o;18357:112::-;18389:1;18415;18405:35;;18420:18;;:::i;:::-;-1:-1:-1;18454:9:1;;18357:112::o;18474:127::-;18535:10;18530:3;18526:20;18523:1;18516:31;18566:4;18563:1;18556:15;18590:4;18587:1;18580:15;18606:127;18667:10;18662:3;18658:20;18655:1;18648:31;18698:4;18695:1;18688:15;18722:4;18719:1;18712:15;18738:127;18799:10;18794:3;18790:20;18787:1;18780:31;18830:4;18827:1;18820:15;18854:4;18851:1;18844:15;18870:127;18931:10;18926:3;18922:20;18919:1;18912:31;18962:4;18959:1;18952:15;18986:4;18983:1;18976:15;19002:127;19063:10;19058:3;19054:20;19051:1;19044:31;19094:4;19091:1;19084:15;19118:4;19115:1;19108:15;19134:131;-1:-1:-1;;;;;;19208:32:1;;19198:43;;19188:71;;19255:1;19252;19245:12
Swarm Source
ipfs://0f8cdfe2d3942bd6a3510fc03f99e6a55d2ef1b440bddda6803f910e22d0e4e3
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.