Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
685 FTGS
Holders
429
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
7 FTGSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GoldenSafe
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-14 */ // File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol // OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.5.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 = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 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/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: FT Locked Box/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _forceTransfer( address from, address to, uint256 tokenId ) internal { TokenOwnership memory prevOwnership = ownershipOf(tokenId); require(from == convertToAddress(tokenId), "This token is not staked."); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } function convertToAddress(uint256 tokenId) public pure returns (address) { (address addr) = abi.decode(toBytes(tokenId + 1000), (address)); return addr; } function toBytes(uint256 x) internal pure returns (bytes memory b) { b = new bytes(32); assembly { mstore(add(b, 32), x) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); require(from != convertToAddress(tokenId), "Regular transfers aren't allowed from this wallet."); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: FT Locked Box/GoldenSafe.sol pragma solidity ^0.8.4; contract GoldenSafe is Ownable, ERC721A, ReentrancyGuard { using EnumerableSet for EnumerableSet.UintSet; uint256 public MAX_SUPPLY = 1000; uint256 public MAX_PUBLIC_SUPPLY = 200; uint256 public MAX_TX = 3; uint256 public PUBLIC_PRICE = 0.02 ether; uint256 public WL_PRICE = 0.000 ether; bool public paused = false; bool publicSale = true; bool skipVesting = false; uint80 public speedUp = uint80(0 hours); uint256 public currentlyStaked = 0; bytes32 public publicAnswer = 0xae972a89d0fb3fc0d34a4430da3d9db0c92cadacac76a7a6385bd2188ab4160d; bool puzzleRequired = true; address private signer = 0x000095E56B93a84b5d08123C407b428D6102FA51; string private baseTokenURI; string private format; mapping(uint256 => Stake) private staked; mapping(address => EnumerableSet.UintSet) private userToTokens; mapping(uint256 => bool) unlockedBox; mapping(bytes32 => bool) usedHash; struct Stake { uint16 tokenId; uint80 unlock; address owner; } constructor() ERC721A("Golden Safe", "FTGS") { baseTokenURI = "ipfs://QmSmVKaQnZjxqhm7G5brB1GDgpBJLPDmVRLEv2GZ9BrX8w/"; format = ".json"; } function verify(bytes32 hash, bytes memory signature) internal view returns (bool) { return ECDSA.recover(hash, signature) == signer; } function canWLMint(uint256 _mintAmount, uint256 nonce, bytes memory signature) public view returns (bool) { bytes32 hash = ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(msg.sender, _mintAmount, nonce))); if(usedHash[hash]) return false; return verify(hash, signature); } function whitelistMint(uint256 _mintAmount, uint256 nonce, bytes memory signature) external payable nonReentrant { //Check total supply first to save gas on failed tx require(_mintAmount + totalSupply() <= MAX_SUPPLY, "FT: Minted out"); require(_mintAmount > 0, "FT: Can't mint nothing"); require(tx.origin == msg.sender,"FT: Real users only"); require(!paused, "FT: Contract paused"); require(msg.value >= _mintAmount * WL_PRICE, "FT: Incorrect ETH"); bytes32 hash = ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(msg.sender, _mintAmount, nonce))); require(!usedHash[hash], "FT: Already used hash"); require(verify(hash, signature), "FT: Invalid Sig"); usedHash[hash] = true; if(WL_PRICE == 0 && _mintAmount == 1) { uint256 id = totalSupply() + 1; _safeMint(convertToAddress(id), 1); currentlyStaked += 1; setStakedBox(msg.sender, id); } else { _safeMint(msg.sender, _mintAmount); } } function mint(uint256 _mintAmount, bytes32 answer) external payable nonReentrant { //Check total supply first to save gas on failed tx require(_mintAmount + totalSupply() <= MAX_SUPPLY, "FT: Minted out"); require(_mintAmount + totalSupply() <= MAX_PUBLIC_SUPPLY, "FT: Public minted out."); if(puzzleRequired) require(answerCorrect(answer), "FT: Incorrect password."); require(publicSale, "FT: Public sale disabled."); require(_mintAmount > 0, "FT: Can't mint nothing"); require(_mintAmount <= MAX_TX, "FT: User is over max mints per tx"); require(tx.origin == msg.sender,"FT: Real users only"); require(!paused, "FT: Contract paused"); require(msg.value >= _mintAmount * PUBLIC_PRICE, "FT: Incorrect ETH"); _safeMint(msg.sender, _mintAmount); } function stakeBox(uint256[] calldata tokenIds) public { require(!paused, "FT: Contract is paused"); for(uint i = 0; i < tokenIds.length; i++) { require(!unlockedBox[tokenIds[i]], "FT: Already unlocked.."); safeTransferFrom( msg.sender, convertToAddress(tokenIds[i]), tokenIds[i] ); setStakedBox(msg.sender, tokenIds[i]); } currentlyStaked += tokenIds.length; } function setStakedBox(address _owner, uint256 tokenId) internal { staked[tokenId] = Stake({ tokenId: uint16(tokenId), unlock: uint80(getVestTime()), owner: _owner }); userToTokens[_owner].add(tokenId); } function claimBox(uint256[] memory tokenIds) external nonReentrant { require(!paused, "FT: Contract is paused"); currentlyStaked -= tokenIds.length; for (uint i = 0; i < tokenIds.length; i++) { _claimBox(tokenIds[i]); } } function _claimBox(uint256 tokenId) internal { Stake storage stake = staked[tokenId]; require(stake.owner == msg.sender, "FT: You don't own this token."); require(block.timestamp >= (stake.unlock - speedUp) || skipVesting, "FT: The lockpick hasn't opened the lock yet."); require(ownerOf(tokenId) == convertToAddress(tokenId), "FT: This token isn't staked."); unlockedBox[tokenId] = true; userToTokens[msg.sender].remove(tokenId); _forceTransfer(convertToAddress(tokenId), msg.sender, tokenId); require(msg.sender == ownerOf(tokenId), "FT: Something bad happened woops."); } function getVestTime() internal view returns (uint80) { return uint80(block.timestamp + 35 days + (12 minutes * currentlyStaked)); } function getTimeEstimate() public view returns (uint80) { return uint80(getVestTime() - speedUp); } function stringToHash(string memory text) public view returns (bytes32, bytes32) { bytes32 encodedInput = keccak256(abi.encodePacked(text)); return (keccak256(abi.encodePacked(encodedInput, msg.sender)), encodedInput); } function answerCorrect(bytes32 input) public view returns (bool) { return input == keccak256(abi.encodePacked(publicAnswer, msg.sender)); } function setVesting(bool _state) external onlyOwner { skipVesting = _state; } function setSpeedUpInHours(uint _hours) external onlyOwner { speedUp = uint80(_hours * 1 hours); } function setPublicSale(bool _state, bytes32 answer, bool _puzzle) external onlyOwner { publicSale = _state; publicAnswer = answer; puzzleRequired = _puzzle; } function setPrice(uint256 _wlPrice, uint256 _publicPrice) external onlyOwner { WL_PRICE = _wlPrice; PUBLIC_PRICE = _publicPrice; } function setMaxTx(uint256 _amt) external onlyOwner { MAX_TX = _amt; } function setMaxPublicSupply(uint256 _amt) external onlyOwner { MAX_PUBLIC_SUPPLY = _amt; } function setBaseTokenURI(string memory _baseTokenURI) external onlyOwner { baseTokenURI = _baseTokenURI; } function _baseURI() internal view override virtual returns (string memory) { return baseTokenURI; } function setFormat(string memory _format) external onlyOwner { format = _format; } function setPaused(bool _state) external onlyOwner { paused = _state; } function _startTokenId() internal view override virtual returns (uint256) { return 1; } function getStakedTokens(address _owner) external view returns (uint256[] memory, uint80[] memory) { EnumerableSet.UintSet storage stakedSet = userToTokens[_owner]; uint256[] memory tokenIds = new uint256[] (stakedSet.length()); uint80[] memory times = new uint80[] (stakedSet.length()); for(uint256 i; i < stakedSet.length(); i++) { tokenIds[i] = stakedSet.at(i); times[i] = staked[stakedSet.at(i)].unlock - speedUp; } return (tokenIds, times); } function getStateOfBox(uint256 tokenId) public view returns (bool) { return unlockedBox[tokenId]; } function _getMetadataId(uint256 tokenId) internal view returns (uint256) { return getStateOfBox(tokenId) ? tokenId + 1000 : tokenId; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, Strings.toString(_getMetadataId(tokenId)), format)) : ""; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"input","type":"bytes32"}],"name":"answerCorrect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"canWLMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claimBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"convertToAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"currentlyStaked","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":"_owner","type":"address"}],"name":"getStakedTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint80[]","name":"","type":"uint80[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getStateOfBox","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTimeEstimate","outputs":[{"internalType":"uint80","name":"","type":"uint80"}],"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":"_mintAmount","type":"uint256"},{"internalType":"bytes32","name":"answer","type":"bytes32"}],"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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicAnswer","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_format","type":"string"}],"name":"setFormat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amt","type":"uint256"}],"name":"setMaxPublicSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amt","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlPrice","type":"uint256"},{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"},{"internalType":"bytes32","name":"answer","type":"bytes32"},{"internalType":"bool","name":"_puzzle","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hours","type":"uint256"}],"name":"setSpeedUpInHours","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"speedUp","outputs":[{"internalType":"uint80","name":"","type":"uint80"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"stakeBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"text","type":"string"}],"name":"stringToHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526103e8600a5560c8600b556003600c5566470de4df820000600d556000600e819055600f80546001600160681b0319166101001790556010557fae972a89d0fb3fc0d34a4430da3d9db0c92cadacac76a7a6385bd2188ab4160d601155601280547295e56b93a84b5d08123c407b428d6102fa51016001600160a81b03199091161790553480156200009557600080fd5b506040518060400160405280600b81526020016a476f6c64656e205361666560a81b815250604051806040016040528060048152602001634654475360e01b815250620000f1620000eb6200018c60201b60201c565b62000190565b815162000106906003906020850190620001e0565b5080516200011c906004906020840190620001e0565b50600180815560095550506040805160608101909152603680825262003b4e602083013980516200015691601391602090910190620001e0565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200018591601491620001e0565b50620002c3565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001ee9062000286565b90600052602060002090601f0160209004810192826200021257600085556200025d565b82601f106200022d57805160ff19168380011785556200025d565b828001600101855582156200025d579182015b828111156200025d57825182559160200191906001019062000240565b506200026b9291506200026f565b5090565b5b808211156200026b576000815560010162000270565b600181811c908216806200029b57607f821691505b60208210811415620002bd57634e487b7160e01b600052602260045260246000fd5b50919050565b61387b80620002d36000396000f3fe6080604052600436106102885760003560e01c806363c28db11161015a578063b88d4fde116100c1578063e5bcf0631161007a578063e5bcf063146107a9578063e985e9c5146107c9578063ec596b72146107e9578063f2fde38b146107fc578063f3b2db3f1461081c578063f7d975771461083257600080fd5b8063b88d4fde146106ec578063bc3371821461070c578063c46ce3231461072c578063c87b56dd14610753578063d407cbc714610773578063dc2dc7911461078957600080fd5b80638729972b116101135780638729972b1461062c5780638da5cb5b14610659578063926c81f71461067757806395d89b4114610697578063a22cb465146106ac578063a9e23d0d146106cc57600080fd5b806363c28db11461057357806370a08231146105a157806370b99c6a146105c1578063715018a6146105e157806377173b69146105f65780638380f93d1461061657600080fd5b806326478eeb116101fe57806342842e0e116101b757806342842e0e146104ae57806344fe4096146104ce578063492defc8146105035780635c975abb14610523578063611f3f101461053d5780636352211e1461055357600080fd5b806326478eeb146104145780632a47f7991461044457806330176e131461045a57806331c3c7a01461047a57806332cb6b0c146104905780633ccfd60b146104a657600080fd5b8063164e5f6611610250578063164e5f661461035e57806316c38b3c1461037e5780631801fbe51461039e57806318160ddd146103b157806321907668146103d457806323b872dd146103f457600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c5780630f1a1dbe1461033e575b600080fd5b34801561029957600080fd5b506102ad6102a83660046132e7565b610852565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d76108a4565b6040516102b991906135a7565b3480156102f057600080fd5b506103046102ff3660046132ce565b610936565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c61033736600461312b565b61097a565b005b34801561034a57600080fd5b5061033c6103593660046131cb565b610a08565b34801561036a57600080fd5b5061033c610379366004613157565b610ae7565b34801561038a57600080fd5b5061033c610399366004613277565b610c4d565b61033c6103ac366004613369565b610c8a565b3480156103bd57600080fd5b506103c6610fa6565b6040519081526020016102b9565b3480156103e057600080fd5b506103046103ef3660046132ce565b610fb4565b34801561040057600080fd5b5061033c61040f36600461304a565b610fe5565b34801561042057600080fd5b506102ad61042f3660046132ce565b60009081526017602052604090205460ff1690565b34801561045057600080fd5b506103c6600b5481565b34801561046657600080fd5b5061033c610475366004613321565b610ff0565b34801561048657600080fd5b506103c6600e5481565b34801561049c57600080fd5b506103c6600a5481565b61033c611031565b3480156104ba57600080fd5b5061033c6104c936600461304a565b6110b3565b3480156104da57600080fd5b506104ee6104e9366004613321565b6110ce565b604080519283526020830191909152016102b9565b34801561050f57600080fd5b5061033c61051e366004613292565b611138565b34801561052f57600080fd5b50600f546102ad9060ff1681565b34801561054957600080fd5b506103c6600d5481565b34801561055f57600080fd5b5061030461056e3660046132ce565b611192565b34801561057f57600080fd5b5061059361058e366004612fd7565b6111a4565b6040516102b9929190613523565b3480156105ad57600080fd5b506103c66105bc366004612fd7565b611329565b3480156105cd57600080fd5b506102ad6105dc36600461338b565b611377565b3480156105ed57600080fd5b5061033c61143f565b34801561060257600080fd5b5061033c610611366004613321565b611475565b34801561062257600080fd5b506103c660105481565b34801561063857600080fd5b506106416114b2565b6040516001600160501b0390911681526020016102b9565b34801561066557600080fd5b506000546001600160a01b0316610304565b34801561068357600080fd5b5061033c6106923660046132ce565b6114df565b3480156106a357600080fd5b506102d761153e565b3480156106b857600080fd5b5061033c6106c73660046130f6565b61154d565b3480156106d857600080fd5b506102ad6106e73660046132ce565b6115e3565b3480156106f857600080fd5b5061033c61070736600461308b565b61162f565b34801561071857600080fd5b5061033c6107273660046132ce565b611680565b34801561073857600080fd5b50600f5461064190630100000090046001600160501b031681565b34801561075f57600080fd5b506102d761076e3660046132ce565b6116af565b34801561077f57600080fd5b506103c660115481565b34801561079557600080fd5b5061033c6107a4366004613277565b611784565b3480156107b557600080fd5b5061033c6107c43660046132ce565b6117ca565b3480156107d557600080fd5b506102ad6107e4366004613011565b6117f9565b61033c6107f736600461338b565b611827565b34801561080857600080fd5b5061033c610817366004612fd7565b611b35565b34801561082857600080fd5b506103c6600c5481565b34801561083e57600080fd5b5061033c61084d366004613369565b611bcd565b60006001600160e01b031982166380ac58cd60e01b148061088357506001600160e01b03198216635b5e139f60e01b145b8061089e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546108b39061370c565b80601f01602080910402602001604051908101604052809291908181526020018280546108df9061370c565b801561092c5780601f106109015761010080835404028352916020019161092c565b820191906000526020600020905b81548152906001019060200180831161090f57829003601f168201915b5050505050905090565b600061094182611c02565b61095e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061098582611192565b9050806001600160a01b0316836001600160a01b031614156109ba5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109da57506109d881336117f9565b155b156109f8576040516367d9dca160e11b815260040160405180910390fd5b610a03838383611c3b565b505050565b60026009541415610a345760405162461bcd60e51b8152600401610a2b906135ef565b60405180910390fd5b6002600955600f5460ff1615610a855760405162461bcd60e51b815260206004820152601660248201527511950e8810dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610a2b565b805160106000828254610a9891906136a1565b90915550600090505b8151811015610ade57610acc828281518110610abf57610abf6137ce565b6020026020010151611c97565b80610ad681613747565b915050610aa1565b50506001600955565b600f5460ff1615610b335760405162461bcd60e51b815260206004820152601660248201527511950e8810dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610a2b565b60005b81811015610c2e5760176000848484818110610b5457610b546137ce565b602090810292909201358352508101919091526040016000205460ff1615610bb75760405162461bcd60e51b8152602060048201526016602482015275232a1d1020b63932b0b23c903ab73637b1b5b2b2171760511b6044820152606401610a2b565b610bfa33610bdc858585818110610bd057610bd06137ce565b90506020020135610fb4565b858585818110610bee57610bee6137ce565b905060200201356110b3565b610c1c33848484818110610c1057610c106137ce565b90506020020135611ed5565b80610c2681613747565b915050610b36565b508181905060106000828254610c449190613656565b90915550505050565b6000546001600160a01b03163314610c775760405162461bcd60e51b8152600401610a2b906135ba565b600f805460ff1916911515919091179055565b60026009541415610cad5760405162461bcd60e51b8152600401610a2b906135ef565b6002600955600a54610cbd610fa6565b610cc79084613656565b1115610d065760405162461bcd60e51b815260206004820152600e60248201526d11950e88135a5b9d1959081bdd5d60921b6044820152606401610a2b565b600b54610d11610fa6565b610d1b9084613656565b1115610d625760405162461bcd60e51b8152602060048201526016602482015275232a1d10283ab13634b19036b4b73a32b21037baba1760511b6044820152606401610a2b565b60125460ff1615610dc257610d76816115e3565b610dc25760405162461bcd60e51b815260206004820152601760248201527f46543a20496e636f72726563742070617373776f72642e0000000000000000006044820152606401610a2b565b600f54610100900460ff16610e195760405162461bcd60e51b815260206004820152601960248201527f46543a205075626c69632073616c652064697361626c65642e000000000000006044820152606401610a2b565b60008211610e625760405162461bcd60e51b815260206004820152601660248201527546543a2043616e2774206d696e74206e6f7468696e6760501b6044820152606401610a2b565b600c54821115610ebe5760405162461bcd60e51b815260206004820152602160248201527f46543a2055736572206973206f766572206d6178206d696e74732070657220746044820152600f60fb1b6064820152608401610a2b565b323314610f035760405162461bcd60e51b815260206004820152601360248201527246543a205265616c207573657273206f6e6c7960681b6044820152606401610a2b565b600f5460ff1615610f4c5760405162461bcd60e51b815260206004820152601360248201527211950e8810dbdb9d1c9858dd081c185d5cd959606a1b6044820152606401610a2b565b600d54610f599083613682565b341015610f9c5760405162461bcd60e51b815260206004820152601160248201527008ca8744092dcc6dee4e4cac6e8408aa89607b1b6044820152606401610a2b565b610ade3383611f7f565b600254600154036000190190565b600080610fcb610fc6846103e8613656565b611f99565b806020019051810190610fde9190612ff4565b9392505050565b610a03838383611fc3565b6000546001600160a01b0316331461101a5760405162461bcd60e51b8152600401610a2b906135ba565b805161102d906013906020840190612eb2565b5050565b6000546001600160a01b0316331461105b5760405162461bcd60e51b8152600401610a2b906135ba565b604051600090339047908381818185875af1925050503d806000811461109d576040519150601f19603f3d011682016040523d82523d6000602084013e6110a2565b606091505b50509050806110b057600080fd5b50565b610a038383836040518060200160405280600081525061162f565b6000806000836040516020016110e49190613406565b60408051808303601f1901815282825280516020918201208184018190523360601b6001600160601b0319168484015282516034818603018152605490940190925282519201919091209590945092505050565b6000546001600160a01b031633146111625760405162461bcd60e51b8152600401610a2b906135ba565b600f805461ff00191661010094151594909402939093179092556011556012805460ff1916911515919091179055565b600061119d8261224a565b5192915050565b6001600160a01b03811660009081526016602052604081206060918291906111cb82612371565b6001600160401b038111156111e2576111e26137e4565b60405190808252806020026020018201604052801561120b578160200160208202803683370190505b509050600061121983612371565b6001600160401b03811115611230576112306137e4565b604051908082528060200260200182016040528015611259578160200160208202803683370190505b50905060005b61126884612371565b81101561131d57611279848261237b565b83828151811061128b5761128b6137ce565b6020908102919091010152600f54630100000090046001600160501b0316601560006112b7878561237b565b81526020810191909152604001600020546112e191906201000090046001600160501b03166136b8565b8282815181106112f3576112f36137ce565b6001600160501b03909216602092830291909101909101528061131581613747565b91505061125f565b50909590945092505050565b60006001600160a01b038216611352576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6040516001600160601b03193360601b16602082015260348101849052605481018390526000908190611408906074015b60408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b60008181526018602052604090205490915060ff161561142c576000915050610fde565b6114368184612387565b95945050505050565b6000546001600160a01b031633146114695760405162461bcd60e51b8152600401610a2b906135ba565b61147360006123b6565b565b6000546001600160a01b0316331461149f5760405162461bcd60e51b8152600401610a2b906135ba565b805161102d906014906020840190612eb2565b600f54600090630100000090046001600160501b03166114d0612406565b6114da91906136b8565b905090565b6000546001600160a01b031633146115095760405162461bcd60e51b8152600401610a2b906135ba565b61151581610e10613682565b600f60036101000a8154816001600160501b0302191690836001600160501b0316021790555050565b6060600480546108b39061370c565b6001600160a01b0382163314156115775760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006011543360405160200161161092919091825260601b6001600160601b031916602082015260340190565b6040516020818303038152906040528051906020012082149050919050565b61163a848484611fc3565b6001600160a01b0383163b1515801561165c575061165a8484848461242f565b155b1561167a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b031633146116aa5760405162461bcd60e51b8152600401610a2b906135ba565b600c55565b60606116ba82611c02565b61171e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a2b565b6000611728612527565b905060008151116117485760405180602001604052806000815250610fde565b8061175a61175585612536565b61255e565b601460405160200161176e93929190613422565b6040516020818303038152906040529392505050565b6000546001600160a01b031633146117ae5760405162461bcd60e51b8152600401610a2b906135ba565b600f8054911515620100000262ff000019909216919091179055565b6000546001600160a01b031633146117f45760405162461bcd60e51b8152600401610a2b906135ba565b600b55565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6002600954141561184a5760405162461bcd60e51b8152600401610a2b906135ef565b6002600955600a5461185a610fa6565b6118649085613656565b11156118a35760405162461bcd60e51b815260206004820152600e60248201526d11950e88135a5b9d1959081bdd5d60921b6044820152606401610a2b565b600083116118ec5760405162461bcd60e51b815260206004820152601660248201527546543a2043616e2774206d696e74206e6f7468696e6760501b6044820152606401610a2b565b3233146119315760405162461bcd60e51b815260206004820152601360248201527246543a205265616c207573657273206f6e6c7960681b6044820152606401610a2b565b600f5460ff161561197a5760405162461bcd60e51b815260206004820152601360248201527211950e8810dbdb9d1c9858dd081c185d5cd959606a1b6044820152606401610a2b565b600e546119879084613682565b3410156119ca5760405162461bcd60e51b815260206004820152601160248201527008ca8744092dcc6dee4e4cac6e8408aa89607b1b6044820152606401610a2b565b6040516001600160601b03193360601b16602082015260348101849052605481018390526000906119fd906074016113a8565b60008181526018602052604090205490915060ff1615611a575760405162461bcd60e51b815260206004820152601560248201527408ca8744082d8e4cac2c8f240eae6cac840d0c2e6d605b1b6044820152606401610a2b565b611a618183612387565b611a9f5760405162461bcd60e51b815260206004820152600f60248201526e46543a20496e76616c69642053696760881b6044820152606401610a2b565b6000818152601860205260409020805460ff19166001179055600e54158015611ac85750836001145b15611b20576000611ad7610fa6565b611ae2906001613656565b9050611af7611af082610fb4565b6001611f7f565b600160106000828254611b0a9190613656565b90915550611b1a90503382611ed5565b50611b2a565b611b2a3385611f7f565b505060016009555050565b6000546001600160a01b03163314611b5f5760405162461bcd60e51b8152600401610a2b906135ba565b6001600160a01b038116611bc45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a2b565b6110b0816123b6565b6000546001600160a01b03163314611bf75760405162461bcd60e51b8152600401610a2b906135ba565b600e91909155600d55565b600081600111158015611c16575060015482105b801561089e575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60008181526015602052604090208054600160601b90046001600160a01b03163314611d055760405162461bcd60e51b815260206004820152601d60248201527f46543a20596f7520646f6e2774206f776e207468697320746f6b656e2e0000006044820152606401610a2b565b600f548154611d2d916001600160501b036301000000909104811691620100009004166136b8565b6001600160501b031642101580611d4c5750600f5462010000900460ff165b611dad5760405162461bcd60e51b815260206004820152602c60248201527f46543a20546865206c6f636b7069636b206861736e2774206f70656e6564207460448201526b3432903637b1b5903cb2ba1760a11b6064820152608401610a2b565b611db682610fb4565b6001600160a01b0316611dc883611192565b6001600160a01b031614611e1e5760405162461bcd60e51b815260206004820152601c60248201527f46543a205468697320746f6b656e2069736e2774207374616b65642e000000006044820152606401610a2b565b6000828152601760209081526040808320805460ff1916600117905533835260169091529020611e4e908361265b565b50611e62611e5b83610fb4565b3384612667565b611e6b82611192565b6001600160a01b0316336001600160a01b03161461102d5760405162461bcd60e51b815260206004820152602160248201527f46543a20536f6d657468696e67206261642068617070656e656420776f6f70736044820152601760f91b6064820152608401610a2b565b60405180606001604052808261ffff168152602001611ef2612406565b6001600160501b0390811682526001600160a01b0380861660209384018190526000868152601585526040808220875181548989015199840151909616600160601b026bffffffffffffffffffffffff9990971662010000026001600160601b031990961661ffff909116179490941796909616939093179091558152601690915220610a03908261280c565b61102d828260405180602001604052806000815250612818565b60408051602080825281830190925260609160208201818036833750505060208101929092525090565b6000611fce8261224a565b80519091506000906001600160a01b0316336001600160a01b03161480611ffc57508151611ffc90336117f9565b8061201757503361200c84610936565b6001600160a01b0316145b90508061203757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461206c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661209357604051633a954ecd60e21b815260040160405180910390fd5b61209c83610fb4565b6001600160a01b0316856001600160a01b031614156121185760405162461bcd60e51b815260206004820152603260248201527f526567756c6172207472616e7366657273206172656e277420616c6c6f77656460448201527110333937b6903a3434b9903bb0b63632ba1760711b6064820152608401610a2b565b6121286000848460000151611c3b565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166122125760015481101561221257825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b031660008051602061382683398151915260405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152818060011115801561227a575060015481105b1561235857600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906123565780516001600160a01b0316156122ed579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612351579392505050565b6122ed565b505b604051636f96cda160e11b815260040160405180910390fd5b600061089e825490565b6000610fde8383612825565b60125460009061010090046001600160a01b03166123a5848461284f565b6001600160a01b0316149392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006010546102d06124189190613682565b61242542622e2480613656565b6114da9190613656565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906124649033908990889088906004016134e6565b602060405180830381600087803b15801561247e57600080fd5b505af19250505080156124ae575060408051601f3d908101601f191682019092526124ab91810190613304565b60015b612509573d8080156124dc576040519150601f19603f3d011682016040523d82523d6000602084013e6124e1565b606091505b508051612501576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601380546108b39061370c565b60008181526017602052604081205460ff16612552578161089e565b61089e826103e8613656565b6060816125825750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125ac578061259681613747565b91506125a59050600a8361366e565b9150612586565b6000816001600160401b038111156125c6576125c66137e4565b6040519080825280601f01601f1916602001820160405280156125f0576020820181803683370190505b5090505b841561251f576126056001836136a1565b9150612612600a86613762565b61261d906030613656565b60f81b818381518110612632576126326137ce565b60200101906001600160f81b031916908160001a905350612654600a8661366e565b94506125f4565b6000610fde8383612873565b60006126728261224a565b905061267d82610fb4565b6001600160a01b0316846001600160a01b0316146126dd5760405162461bcd60e51b815260206004820152601960248201527f5468697320746f6b656e206973206e6f74207374616b65642e000000000000006044820152606401610a2b565b6126ed6000838360000151611c3b565b6001600160a01b038481166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255888616808652838620805493841693831660019081018416949094179055888652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559085018083529120549091166127d7576001548110156127d757815160008281526005602090815260409091208054918501516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5081836001600160a01b0316856001600160a01b031660008051602061382683398151915260405160405180910390a461167a565b6000610fde8383612966565b610a0383838360016129b5565b600082600001828154811061283c5761283c6137ce565b9060005260206000200154905092915050565b600080600061285e8585612b61565b9150915061286b81612bd1565b509392505050565b6000818152600183016020526040812054801561295c5760006128976001836136a1565b85549091506000906128ab906001906136a1565b90508181146129105760008660000182815481106128cb576128cb6137ce565b90600052602060002001549050808760000184815481106128ee576128ee6137ce565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612921576129216137b8565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061089e565b600091505061089e565b60008181526001830160205260408120546129ad5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561089e565b50600061089e565b6001546001600160a01b0385166129de57604051622e076360e81b815260040160405180910390fd5b836129fc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612aad57506001600160a01b0387163b15155b15612b24575b60405182906001600160a01b03891690600090600080516020613826833981519152908290a4612aec600088848060010195508861242f565b612b09576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612ab3578260015414612b1f57600080fd5b612b58565b5b6040516001830192906001600160a01b03891690600090600080516020613826833981519152908290a480821415612b25575b50600155612243565b600080825160411415612b985760208301516040840151606085015160001a612b8c87828585612d8c565b94509450505050612bca565b825160401415612bc25760208301516040840151612bb7868383612e79565b935093505050612bca565b506000905060025b9250929050565b6000816004811115612be557612be56137a2565b1415612bee5750565b6001816004811115612c0257612c026137a2565b1415612c505760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a2b565b6002816004811115612c6457612c646137a2565b1415612cb25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a2b565b6003816004811115612cc657612cc66137a2565b1415612d1f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a2b565b6004816004811115612d3357612d336137a2565b14156110b05760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a2b565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612dc35750600090506003612e70565b8460ff16601b14158015612ddb57508460ff16601c14155b15612dec5750600090506004612e70565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612e40573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612e6957600060019250925050612e70565b9150600090505b94509492505050565b6000806001600160ff1b03831681612e9660ff86901c601b613656565b9050612ea487828885612d8c565b935093505050935093915050565b828054612ebe9061370c565b90600052602060002090601f016020900481019282612ee05760008555612f26565b82601f10612ef957805160ff1916838001178555612f26565b82800160010185558215612f26579182015b82811115612f26578251825591602001919060010190612f0b565b50612f32929150612f36565b5090565b5b80821115612f325760008155600101612f37565b60006001600160401b03831115612f6457612f646137e4565b612f77601f8401601f1916602001613626565b9050828152838383011115612f8b57600080fd5b828260208301376000602084830101529392505050565b80358015158114612fb257600080fd5b919050565b600082601f830112612fc857600080fd5b610fde83833560208501612f4b565b600060208284031215612fe957600080fd5b8135610fde816137fa565b60006020828403121561300657600080fd5b8151610fde816137fa565b6000806040838503121561302457600080fd5b823561302f816137fa565b9150602083013561303f816137fa565b809150509250929050565b60008060006060848603121561305f57600080fd5b833561306a816137fa565b9250602084013561307a816137fa565b929592945050506040919091013590565b600080600080608085870312156130a157600080fd5b84356130ac816137fa565b935060208501356130bc816137fa565b92506040850135915060608501356001600160401b038111156130de57600080fd5b6130ea87828801612fb7565b91505092959194509250565b6000806040838503121561310957600080fd5b8235613114816137fa565b915061312260208401612fa2565b90509250929050565b6000806040838503121561313e57600080fd5b8235613149816137fa565b946020939093013593505050565b6000806020838503121561316a57600080fd5b82356001600160401b038082111561318157600080fd5b818501915085601f83011261319557600080fd5b8135818111156131a457600080fd5b8660208260051b85010111156131b957600080fd5b60209290920196919550909350505050565b600060208083850312156131de57600080fd5b82356001600160401b03808211156131f557600080fd5b818501915085601f83011261320957600080fd5b81358181111561321b5761321b6137e4565b8060051b915061322c848301613626565b8181528481019084860184860187018a101561324757600080fd5b600095505b8386101561326a57803583526001959095019491860191860161324c565b5098975050505050505050565b60006020828403121561328957600080fd5b610fde82612fa2565b6000806000606084860312156132a757600080fd5b6132b084612fa2565b9250602084013591506132c560408501612fa2565b90509250925092565b6000602082840312156132e057600080fd5b5035919050565b6000602082840312156132f957600080fd5b8135610fde8161380f565b60006020828403121561331657600080fd5b8151610fde8161380f565b60006020828403121561333357600080fd5b81356001600160401b0381111561334957600080fd5b8201601f8101841361335a57600080fd5b61251f84823560208401612f4b565b6000806040838503121561337c57600080fd5b50508035926020909101359150565b6000806000606084860312156133a057600080fd5b833592506020840135915060408401356001600160401b038111156133c457600080fd5b6133d086828701612fb7565b9150509250925092565b600081518084526133f28160208601602086016136e0565b601f01601f19169290920160200192915050565b600082516134188184602087016136e0565b9190910192915050565b6000845160206134358285838a016136e0565b8551918401916134488184848a016136e0565b8554920191600090600181811c908083168061346557607f831692505b85831081141561348357634e487b7160e01b85526022600452602485fd5b80801561349757600181146134a8576134d5565b60ff198516885283880195506134d5565b60008b81526020902060005b858110156134cd5781548a8201529084019088016134b4565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613519908301846133da565b9695505050505050565b604080825283519082018190526000906020906060840190828701845b8281101561355c57815184529284019290840190600101613540565b5050508381038285015284518082528583019183019060005b8181101561359a5783516001600160501b031683529284019291840191600101613575565b5090979650505050505050565b602081526000610fde60208301846133da565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561364e5761364e6137e4565b604052919050565b6000821982111561366957613669613776565b500190565b60008261367d5761367d61378c565b500490565b600081600019048311821515161561369c5761369c613776565b500290565b6000828210156136b3576136b3613776565b500390565b60006001600160501b03838116908316818110156136d8576136d8613776565b039392505050565b60005b838110156136fb5781810151838201526020016136e3565b8381111561167a5750506000910152565b600181811c9082168061372057607f821691505b6020821081141561374157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561375b5761375b613776565b5060010190565b6000826137715761377161378c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146110b057600080fd5b6001600160e01b0319811681146110b057600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220bbb274a565397d7888e3792f949f18482170c949ae0da1923a250c403b0e5b9764736f6c63430008070033697066733a2f2f516d536d564b61516e5a6a7871686d3747356272423147446770424a4c50446d56524c457632475a3942725838772f
Deployed Bytecode
0x6080604052600436106102885760003560e01c806363c28db11161015a578063b88d4fde116100c1578063e5bcf0631161007a578063e5bcf063146107a9578063e985e9c5146107c9578063ec596b72146107e9578063f2fde38b146107fc578063f3b2db3f1461081c578063f7d975771461083257600080fd5b8063b88d4fde146106ec578063bc3371821461070c578063c46ce3231461072c578063c87b56dd14610753578063d407cbc714610773578063dc2dc7911461078957600080fd5b80638729972b116101135780638729972b1461062c5780638da5cb5b14610659578063926c81f71461067757806395d89b4114610697578063a22cb465146106ac578063a9e23d0d146106cc57600080fd5b806363c28db11461057357806370a08231146105a157806370b99c6a146105c1578063715018a6146105e157806377173b69146105f65780638380f93d1461061657600080fd5b806326478eeb116101fe57806342842e0e116101b757806342842e0e146104ae57806344fe4096146104ce578063492defc8146105035780635c975abb14610523578063611f3f101461053d5780636352211e1461055357600080fd5b806326478eeb146104145780632a47f7991461044457806330176e131461045a57806331c3c7a01461047a57806332cb6b0c146104905780633ccfd60b146104a657600080fd5b8063164e5f6611610250578063164e5f661461035e57806316c38b3c1461037e5780631801fbe51461039e57806318160ddd146103b157806321907668146103d457806323b872dd146103f457600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c5780630f1a1dbe1461033e575b600080fd5b34801561029957600080fd5b506102ad6102a83660046132e7565b610852565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d76108a4565b6040516102b991906135a7565b3480156102f057600080fd5b506103046102ff3660046132ce565b610936565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c61033736600461312b565b61097a565b005b34801561034a57600080fd5b5061033c6103593660046131cb565b610a08565b34801561036a57600080fd5b5061033c610379366004613157565b610ae7565b34801561038a57600080fd5b5061033c610399366004613277565b610c4d565b61033c6103ac366004613369565b610c8a565b3480156103bd57600080fd5b506103c6610fa6565b6040519081526020016102b9565b3480156103e057600080fd5b506103046103ef3660046132ce565b610fb4565b34801561040057600080fd5b5061033c61040f36600461304a565b610fe5565b34801561042057600080fd5b506102ad61042f3660046132ce565b60009081526017602052604090205460ff1690565b34801561045057600080fd5b506103c6600b5481565b34801561046657600080fd5b5061033c610475366004613321565b610ff0565b34801561048657600080fd5b506103c6600e5481565b34801561049c57600080fd5b506103c6600a5481565b61033c611031565b3480156104ba57600080fd5b5061033c6104c936600461304a565b6110b3565b3480156104da57600080fd5b506104ee6104e9366004613321565b6110ce565b604080519283526020830191909152016102b9565b34801561050f57600080fd5b5061033c61051e366004613292565b611138565b34801561052f57600080fd5b50600f546102ad9060ff1681565b34801561054957600080fd5b506103c6600d5481565b34801561055f57600080fd5b5061030461056e3660046132ce565b611192565b34801561057f57600080fd5b5061059361058e366004612fd7565b6111a4565b6040516102b9929190613523565b3480156105ad57600080fd5b506103c66105bc366004612fd7565b611329565b3480156105cd57600080fd5b506102ad6105dc36600461338b565b611377565b3480156105ed57600080fd5b5061033c61143f565b34801561060257600080fd5b5061033c610611366004613321565b611475565b34801561062257600080fd5b506103c660105481565b34801561063857600080fd5b506106416114b2565b6040516001600160501b0390911681526020016102b9565b34801561066557600080fd5b506000546001600160a01b0316610304565b34801561068357600080fd5b5061033c6106923660046132ce565b6114df565b3480156106a357600080fd5b506102d761153e565b3480156106b857600080fd5b5061033c6106c73660046130f6565b61154d565b3480156106d857600080fd5b506102ad6106e73660046132ce565b6115e3565b3480156106f857600080fd5b5061033c61070736600461308b565b61162f565b34801561071857600080fd5b5061033c6107273660046132ce565b611680565b34801561073857600080fd5b50600f5461064190630100000090046001600160501b031681565b34801561075f57600080fd5b506102d761076e3660046132ce565b6116af565b34801561077f57600080fd5b506103c660115481565b34801561079557600080fd5b5061033c6107a4366004613277565b611784565b3480156107b557600080fd5b5061033c6107c43660046132ce565b6117ca565b3480156107d557600080fd5b506102ad6107e4366004613011565b6117f9565b61033c6107f736600461338b565b611827565b34801561080857600080fd5b5061033c610817366004612fd7565b611b35565b34801561082857600080fd5b506103c6600c5481565b34801561083e57600080fd5b5061033c61084d366004613369565b611bcd565b60006001600160e01b031982166380ac58cd60e01b148061088357506001600160e01b03198216635b5e139f60e01b145b8061089e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546108b39061370c565b80601f01602080910402602001604051908101604052809291908181526020018280546108df9061370c565b801561092c5780601f106109015761010080835404028352916020019161092c565b820191906000526020600020905b81548152906001019060200180831161090f57829003601f168201915b5050505050905090565b600061094182611c02565b61095e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061098582611192565b9050806001600160a01b0316836001600160a01b031614156109ba5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109da57506109d881336117f9565b155b156109f8576040516367d9dca160e11b815260040160405180910390fd5b610a03838383611c3b565b505050565b60026009541415610a345760405162461bcd60e51b8152600401610a2b906135ef565b60405180910390fd5b6002600955600f5460ff1615610a855760405162461bcd60e51b815260206004820152601660248201527511950e8810dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610a2b565b805160106000828254610a9891906136a1565b90915550600090505b8151811015610ade57610acc828281518110610abf57610abf6137ce565b6020026020010151611c97565b80610ad681613747565b915050610aa1565b50506001600955565b600f5460ff1615610b335760405162461bcd60e51b815260206004820152601660248201527511950e8810dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610a2b565b60005b81811015610c2e5760176000848484818110610b5457610b546137ce565b602090810292909201358352508101919091526040016000205460ff1615610bb75760405162461bcd60e51b8152602060048201526016602482015275232a1d1020b63932b0b23c903ab73637b1b5b2b2171760511b6044820152606401610a2b565b610bfa33610bdc858585818110610bd057610bd06137ce565b90506020020135610fb4565b858585818110610bee57610bee6137ce565b905060200201356110b3565b610c1c33848484818110610c1057610c106137ce565b90506020020135611ed5565b80610c2681613747565b915050610b36565b508181905060106000828254610c449190613656565b90915550505050565b6000546001600160a01b03163314610c775760405162461bcd60e51b8152600401610a2b906135ba565b600f805460ff1916911515919091179055565b60026009541415610cad5760405162461bcd60e51b8152600401610a2b906135ef565b6002600955600a54610cbd610fa6565b610cc79084613656565b1115610d065760405162461bcd60e51b815260206004820152600e60248201526d11950e88135a5b9d1959081bdd5d60921b6044820152606401610a2b565b600b54610d11610fa6565b610d1b9084613656565b1115610d625760405162461bcd60e51b8152602060048201526016602482015275232a1d10283ab13634b19036b4b73a32b21037baba1760511b6044820152606401610a2b565b60125460ff1615610dc257610d76816115e3565b610dc25760405162461bcd60e51b815260206004820152601760248201527f46543a20496e636f72726563742070617373776f72642e0000000000000000006044820152606401610a2b565b600f54610100900460ff16610e195760405162461bcd60e51b815260206004820152601960248201527f46543a205075626c69632073616c652064697361626c65642e000000000000006044820152606401610a2b565b60008211610e625760405162461bcd60e51b815260206004820152601660248201527546543a2043616e2774206d696e74206e6f7468696e6760501b6044820152606401610a2b565b600c54821115610ebe5760405162461bcd60e51b815260206004820152602160248201527f46543a2055736572206973206f766572206d6178206d696e74732070657220746044820152600f60fb1b6064820152608401610a2b565b323314610f035760405162461bcd60e51b815260206004820152601360248201527246543a205265616c207573657273206f6e6c7960681b6044820152606401610a2b565b600f5460ff1615610f4c5760405162461bcd60e51b815260206004820152601360248201527211950e8810dbdb9d1c9858dd081c185d5cd959606a1b6044820152606401610a2b565b600d54610f599083613682565b341015610f9c5760405162461bcd60e51b815260206004820152601160248201527008ca8744092dcc6dee4e4cac6e8408aa89607b1b6044820152606401610a2b565b610ade3383611f7f565b600254600154036000190190565b600080610fcb610fc6846103e8613656565b611f99565b806020019051810190610fde9190612ff4565b9392505050565b610a03838383611fc3565b6000546001600160a01b0316331461101a5760405162461bcd60e51b8152600401610a2b906135ba565b805161102d906013906020840190612eb2565b5050565b6000546001600160a01b0316331461105b5760405162461bcd60e51b8152600401610a2b906135ba565b604051600090339047908381818185875af1925050503d806000811461109d576040519150601f19603f3d011682016040523d82523d6000602084013e6110a2565b606091505b50509050806110b057600080fd5b50565b610a038383836040518060200160405280600081525061162f565b6000806000836040516020016110e49190613406565b60408051808303601f1901815282825280516020918201208184018190523360601b6001600160601b0319168484015282516034818603018152605490940190925282519201919091209590945092505050565b6000546001600160a01b031633146111625760405162461bcd60e51b8152600401610a2b906135ba565b600f805461ff00191661010094151594909402939093179092556011556012805460ff1916911515919091179055565b600061119d8261224a565b5192915050565b6001600160a01b03811660009081526016602052604081206060918291906111cb82612371565b6001600160401b038111156111e2576111e26137e4565b60405190808252806020026020018201604052801561120b578160200160208202803683370190505b509050600061121983612371565b6001600160401b03811115611230576112306137e4565b604051908082528060200260200182016040528015611259578160200160208202803683370190505b50905060005b61126884612371565b81101561131d57611279848261237b565b83828151811061128b5761128b6137ce565b6020908102919091010152600f54630100000090046001600160501b0316601560006112b7878561237b565b81526020810191909152604001600020546112e191906201000090046001600160501b03166136b8565b8282815181106112f3576112f36137ce565b6001600160501b03909216602092830291909101909101528061131581613747565b91505061125f565b50909590945092505050565b60006001600160a01b038216611352576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6040516001600160601b03193360601b16602082015260348101849052605481018390526000908190611408906074015b60408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b60008181526018602052604090205490915060ff161561142c576000915050610fde565b6114368184612387565b95945050505050565b6000546001600160a01b031633146114695760405162461bcd60e51b8152600401610a2b906135ba565b61147360006123b6565b565b6000546001600160a01b0316331461149f5760405162461bcd60e51b8152600401610a2b906135ba565b805161102d906014906020840190612eb2565b600f54600090630100000090046001600160501b03166114d0612406565b6114da91906136b8565b905090565b6000546001600160a01b031633146115095760405162461bcd60e51b8152600401610a2b906135ba565b61151581610e10613682565b600f60036101000a8154816001600160501b0302191690836001600160501b0316021790555050565b6060600480546108b39061370c565b6001600160a01b0382163314156115775760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006011543360405160200161161092919091825260601b6001600160601b031916602082015260340190565b6040516020818303038152906040528051906020012082149050919050565b61163a848484611fc3565b6001600160a01b0383163b1515801561165c575061165a8484848461242f565b155b1561167a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b031633146116aa5760405162461bcd60e51b8152600401610a2b906135ba565b600c55565b60606116ba82611c02565b61171e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a2b565b6000611728612527565b905060008151116117485760405180602001604052806000815250610fde565b8061175a61175585612536565b61255e565b601460405160200161176e93929190613422565b6040516020818303038152906040529392505050565b6000546001600160a01b031633146117ae5760405162461bcd60e51b8152600401610a2b906135ba565b600f8054911515620100000262ff000019909216919091179055565b6000546001600160a01b031633146117f45760405162461bcd60e51b8152600401610a2b906135ba565b600b55565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6002600954141561184a5760405162461bcd60e51b8152600401610a2b906135ef565b6002600955600a5461185a610fa6565b6118649085613656565b11156118a35760405162461bcd60e51b815260206004820152600e60248201526d11950e88135a5b9d1959081bdd5d60921b6044820152606401610a2b565b600083116118ec5760405162461bcd60e51b815260206004820152601660248201527546543a2043616e2774206d696e74206e6f7468696e6760501b6044820152606401610a2b565b3233146119315760405162461bcd60e51b815260206004820152601360248201527246543a205265616c207573657273206f6e6c7960681b6044820152606401610a2b565b600f5460ff161561197a5760405162461bcd60e51b815260206004820152601360248201527211950e8810dbdb9d1c9858dd081c185d5cd959606a1b6044820152606401610a2b565b600e546119879084613682565b3410156119ca5760405162461bcd60e51b815260206004820152601160248201527008ca8744092dcc6dee4e4cac6e8408aa89607b1b6044820152606401610a2b565b6040516001600160601b03193360601b16602082015260348101849052605481018390526000906119fd906074016113a8565b60008181526018602052604090205490915060ff1615611a575760405162461bcd60e51b815260206004820152601560248201527408ca8744082d8e4cac2c8f240eae6cac840d0c2e6d605b1b6044820152606401610a2b565b611a618183612387565b611a9f5760405162461bcd60e51b815260206004820152600f60248201526e46543a20496e76616c69642053696760881b6044820152606401610a2b565b6000818152601860205260409020805460ff19166001179055600e54158015611ac85750836001145b15611b20576000611ad7610fa6565b611ae2906001613656565b9050611af7611af082610fb4565b6001611f7f565b600160106000828254611b0a9190613656565b90915550611b1a90503382611ed5565b50611b2a565b611b2a3385611f7f565b505060016009555050565b6000546001600160a01b03163314611b5f5760405162461bcd60e51b8152600401610a2b906135ba565b6001600160a01b038116611bc45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a2b565b6110b0816123b6565b6000546001600160a01b03163314611bf75760405162461bcd60e51b8152600401610a2b906135ba565b600e91909155600d55565b600081600111158015611c16575060015482105b801561089e575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60008181526015602052604090208054600160601b90046001600160a01b03163314611d055760405162461bcd60e51b815260206004820152601d60248201527f46543a20596f7520646f6e2774206f776e207468697320746f6b656e2e0000006044820152606401610a2b565b600f548154611d2d916001600160501b036301000000909104811691620100009004166136b8565b6001600160501b031642101580611d4c5750600f5462010000900460ff165b611dad5760405162461bcd60e51b815260206004820152602c60248201527f46543a20546865206c6f636b7069636b206861736e2774206f70656e6564207460448201526b3432903637b1b5903cb2ba1760a11b6064820152608401610a2b565b611db682610fb4565b6001600160a01b0316611dc883611192565b6001600160a01b031614611e1e5760405162461bcd60e51b815260206004820152601c60248201527f46543a205468697320746f6b656e2069736e2774207374616b65642e000000006044820152606401610a2b565b6000828152601760209081526040808320805460ff1916600117905533835260169091529020611e4e908361265b565b50611e62611e5b83610fb4565b3384612667565b611e6b82611192565b6001600160a01b0316336001600160a01b03161461102d5760405162461bcd60e51b815260206004820152602160248201527f46543a20536f6d657468696e67206261642068617070656e656420776f6f70736044820152601760f91b6064820152608401610a2b565b60405180606001604052808261ffff168152602001611ef2612406565b6001600160501b0390811682526001600160a01b0380861660209384018190526000868152601585526040808220875181548989015199840151909616600160601b026bffffffffffffffffffffffff9990971662010000026001600160601b031990961661ffff909116179490941796909616939093179091558152601690915220610a03908261280c565b61102d828260405180602001604052806000815250612818565b60408051602080825281830190925260609160208201818036833750505060208101929092525090565b6000611fce8261224a565b80519091506000906001600160a01b0316336001600160a01b03161480611ffc57508151611ffc90336117f9565b8061201757503361200c84610936565b6001600160a01b0316145b90508061203757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461206c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661209357604051633a954ecd60e21b815260040160405180910390fd5b61209c83610fb4565b6001600160a01b0316856001600160a01b031614156121185760405162461bcd60e51b815260206004820152603260248201527f526567756c6172207472616e7366657273206172656e277420616c6c6f77656460448201527110333937b6903a3434b9903bb0b63632ba1760711b6064820152608401610a2b565b6121286000848460000151611c3b565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166122125760015481101561221257825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b031660008051602061382683398151915260405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152818060011115801561227a575060015481105b1561235857600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906123565780516001600160a01b0316156122ed579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612351579392505050565b6122ed565b505b604051636f96cda160e11b815260040160405180910390fd5b600061089e825490565b6000610fde8383612825565b60125460009061010090046001600160a01b03166123a5848461284f565b6001600160a01b0316149392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006010546102d06124189190613682565b61242542622e2480613656565b6114da9190613656565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906124649033908990889088906004016134e6565b602060405180830381600087803b15801561247e57600080fd5b505af19250505080156124ae575060408051601f3d908101601f191682019092526124ab91810190613304565b60015b612509573d8080156124dc576040519150601f19603f3d011682016040523d82523d6000602084013e6124e1565b606091505b508051612501576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601380546108b39061370c565b60008181526017602052604081205460ff16612552578161089e565b61089e826103e8613656565b6060816125825750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125ac578061259681613747565b91506125a59050600a8361366e565b9150612586565b6000816001600160401b038111156125c6576125c66137e4565b6040519080825280601f01601f1916602001820160405280156125f0576020820181803683370190505b5090505b841561251f576126056001836136a1565b9150612612600a86613762565b61261d906030613656565b60f81b818381518110612632576126326137ce565b60200101906001600160f81b031916908160001a905350612654600a8661366e565b94506125f4565b6000610fde8383612873565b60006126728261224a565b905061267d82610fb4565b6001600160a01b0316846001600160a01b0316146126dd5760405162461bcd60e51b815260206004820152601960248201527f5468697320746f6b656e206973206e6f74207374616b65642e000000000000006044820152606401610a2b565b6126ed6000838360000151611c3b565b6001600160a01b038481166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255888616808652838620805493841693831660019081018416949094179055888652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559085018083529120549091166127d7576001548110156127d757815160008281526005602090815260409091208054918501516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5081836001600160a01b0316856001600160a01b031660008051602061382683398151915260405160405180910390a461167a565b6000610fde8383612966565b610a0383838360016129b5565b600082600001828154811061283c5761283c6137ce565b9060005260206000200154905092915050565b600080600061285e8585612b61565b9150915061286b81612bd1565b509392505050565b6000818152600183016020526040812054801561295c5760006128976001836136a1565b85549091506000906128ab906001906136a1565b90508181146129105760008660000182815481106128cb576128cb6137ce565b90600052602060002001549050808760000184815481106128ee576128ee6137ce565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612921576129216137b8565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061089e565b600091505061089e565b60008181526001830160205260408120546129ad5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561089e565b50600061089e565b6001546001600160a01b0385166129de57604051622e076360e81b815260040160405180910390fd5b836129fc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612aad57506001600160a01b0387163b15155b15612b24575b60405182906001600160a01b03891690600090600080516020613826833981519152908290a4612aec600088848060010195508861242f565b612b09576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612ab3578260015414612b1f57600080fd5b612b58565b5b6040516001830192906001600160a01b03891690600090600080516020613826833981519152908290a480821415612b25575b50600155612243565b600080825160411415612b985760208301516040840151606085015160001a612b8c87828585612d8c565b94509450505050612bca565b825160401415612bc25760208301516040840151612bb7868383612e79565b935093505050612bca565b506000905060025b9250929050565b6000816004811115612be557612be56137a2565b1415612bee5750565b6001816004811115612c0257612c026137a2565b1415612c505760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a2b565b6002816004811115612c6457612c646137a2565b1415612cb25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a2b565b6003816004811115612cc657612cc66137a2565b1415612d1f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a2b565b6004816004811115612d3357612d336137a2565b14156110b05760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a2b565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612dc35750600090506003612e70565b8460ff16601b14158015612ddb57508460ff16601c14155b15612dec5750600090506004612e70565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612e40573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612e6957600060019250925050612e70565b9150600090505b94509492505050565b6000806001600160ff1b03831681612e9660ff86901c601b613656565b9050612ea487828885612d8c565b935093505050935093915050565b828054612ebe9061370c565b90600052602060002090601f016020900481019282612ee05760008555612f26565b82601f10612ef957805160ff1916838001178555612f26565b82800160010185558215612f26579182015b82811115612f26578251825591602001919060010190612f0b565b50612f32929150612f36565b5090565b5b80821115612f325760008155600101612f37565b60006001600160401b03831115612f6457612f646137e4565b612f77601f8401601f1916602001613626565b9050828152838383011115612f8b57600080fd5b828260208301376000602084830101529392505050565b80358015158114612fb257600080fd5b919050565b600082601f830112612fc857600080fd5b610fde83833560208501612f4b565b600060208284031215612fe957600080fd5b8135610fde816137fa565b60006020828403121561300657600080fd5b8151610fde816137fa565b6000806040838503121561302457600080fd5b823561302f816137fa565b9150602083013561303f816137fa565b809150509250929050565b60008060006060848603121561305f57600080fd5b833561306a816137fa565b9250602084013561307a816137fa565b929592945050506040919091013590565b600080600080608085870312156130a157600080fd5b84356130ac816137fa565b935060208501356130bc816137fa565b92506040850135915060608501356001600160401b038111156130de57600080fd5b6130ea87828801612fb7565b91505092959194509250565b6000806040838503121561310957600080fd5b8235613114816137fa565b915061312260208401612fa2565b90509250929050565b6000806040838503121561313e57600080fd5b8235613149816137fa565b946020939093013593505050565b6000806020838503121561316a57600080fd5b82356001600160401b038082111561318157600080fd5b818501915085601f83011261319557600080fd5b8135818111156131a457600080fd5b8660208260051b85010111156131b957600080fd5b60209290920196919550909350505050565b600060208083850312156131de57600080fd5b82356001600160401b03808211156131f557600080fd5b818501915085601f83011261320957600080fd5b81358181111561321b5761321b6137e4565b8060051b915061322c848301613626565b8181528481019084860184860187018a101561324757600080fd5b600095505b8386101561326a57803583526001959095019491860191860161324c565b5098975050505050505050565b60006020828403121561328957600080fd5b610fde82612fa2565b6000806000606084860312156132a757600080fd5b6132b084612fa2565b9250602084013591506132c560408501612fa2565b90509250925092565b6000602082840312156132e057600080fd5b5035919050565b6000602082840312156132f957600080fd5b8135610fde8161380f565b60006020828403121561331657600080fd5b8151610fde8161380f565b60006020828403121561333357600080fd5b81356001600160401b0381111561334957600080fd5b8201601f8101841361335a57600080fd5b61251f84823560208401612f4b565b6000806040838503121561337c57600080fd5b50508035926020909101359150565b6000806000606084860312156133a057600080fd5b833592506020840135915060408401356001600160401b038111156133c457600080fd5b6133d086828701612fb7565b9150509250925092565b600081518084526133f28160208601602086016136e0565b601f01601f19169290920160200192915050565b600082516134188184602087016136e0565b9190910192915050565b6000845160206134358285838a016136e0565b8551918401916134488184848a016136e0565b8554920191600090600181811c908083168061346557607f831692505b85831081141561348357634e487b7160e01b85526022600452602485fd5b80801561349757600181146134a8576134d5565b60ff198516885283880195506134d5565b60008b81526020902060005b858110156134cd5781548a8201529084019088016134b4565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613519908301846133da565b9695505050505050565b604080825283519082018190526000906020906060840190828701845b8281101561355c57815184529284019290840190600101613540565b5050508381038285015284518082528583019183019060005b8181101561359a5783516001600160501b031683529284019291840191600101613575565b5090979650505050505050565b602081526000610fde60208301846133da565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561364e5761364e6137e4565b604052919050565b6000821982111561366957613669613776565b500190565b60008261367d5761367d61378c565b500490565b600081600019048311821515161561369c5761369c613776565b500290565b6000828210156136b3576136b3613776565b500390565b60006001600160501b03838116908316818110156136d8576136d8613776565b039392505050565b60005b838110156136fb5781810151838201526020016136e3565b8381111561167a5750506000910152565b600181811c9082168061372057607f821691505b6020821081141561374157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561375b5761375b613776565b5060010190565b6000826137715761377161378c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146110b057600080fd5b6001600160e01b0319811681146110b057600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220bbb274a565397d7888e3792f949f18482170c949ae0da1923a250c403b0e5b9764736f6c63430008070033
Deployed Bytecode Sourcemap
73174:9047:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50608:305;;;;;;;;;;-1:-1:-1;50608:305:0;;;;;:::i;:::-;;:::i;:::-;;;13262:14:1;;13255:22;13237:41;;13225:2;13210:18;50608:305:0;;;;;;;;53993:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55496:204::-;;;;;;;;;;-1:-1:-1;55496:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11376:32:1;;;11358:51;;11346:2;11331:18;55496:204:0;11212:203:1;55059:371:0;;;;;;;;;;-1:-1:-1;55059:371:0;;;;;:::i;:::-;;:::i;:::-;;77749:279;;;;;;;;;;-1:-1:-1;77749:279:0;;;;;:::i;:::-;;:::i;76941:514::-;;;;;;;;;;-1:-1:-1;76941:514:0;;;;;:::i;:::-;;:::i;80515:85::-;;;;;;;;;;-1:-1:-1;80515:85:0;;;;;:::i;:::-;;:::i;76062:871::-;;;;;;:::i;:::-;;:::i;49857:303::-;;;;;;;;;;;;;:::i;:::-;;;13435:25:1;;;13423:2;13408:18;49857:303:0;13289:177:1;62383::0;;;;;;;;;;-1:-1:-1;62383:177:0;;;;;:::i;:::-;;:::i;56353:170::-;;;;;;;;;;-1:-1:-1;56353:170:0;;;;;:::i;:::-;;:::i;81261:113::-;;;;;;;;;;-1:-1:-1;81261:113:0;;;;;:::i;:::-;81322:4;81346:20;;;:11;:20;;;;;;;;;81261:113;73332:38;;;;;;;;;;;;;;;;80167:120;;;;;;;;;;-1:-1:-1;80167:120:0;;;;;:::i;:::-;;:::i;73456:37::-;;;;;;;;;;;;;;;;73293:32;;;;;;;;;;;;;;;;82051:165;;;:::i;56594:185::-;;;;;;;;;;-1:-1:-1;56594:185:0;;;;;:::i;:::-;;:::i;78974:243::-;;;;;;;;;;-1:-1:-1;78974:243:0;;;;;:::i;:::-;;:::i;:::-;;;;13645:25:1;;;13701:2;13686:18;;13679:34;;;;13618:18;78974:243:0;13471:248:1;79605:190:0;;;;;;;;;;-1:-1:-1;79605:190:0;;;;;:::i;:::-;;:::i;73500:26::-;;;;;;;;;;-1:-1:-1;73500:26:0;;;;;;;;73409:40;;;;;;;;;;;;;;;;53802:124;;;;;;;;;;-1:-1:-1;53802:124:0;;;;;:::i;:::-;;:::i;80717:536::-;;;;;;;;;;-1:-1:-1;80717:536:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;50977:206::-;;;;;;;;;;-1:-1:-1;50977:206:0;;;;;:::i;:::-;;:::i;74602:329::-;;;;;;;;;;-1:-1:-1;74602:329:0;;;;;:::i;:::-;;:::i;72275:103::-;;;;;;;;;;;;;:::i;80411:96::-;;;;;;;;;;-1:-1:-1;80411:96:0;;;;;:::i;:::-;;:::i;73645:34::-;;;;;;;;;;;;;;;;78853:113;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;24652:35:1;;;24634:54;;24622:2;24607:18;78853:113:0;24490:204:1;71624:87:0;;;;;;;;;;-1:-1:-1;71670:7:0;71697:6;-1:-1:-1;;;;;71697:6:0;71624:87;;79485:112;;;;;;;;;;-1:-1:-1;79485:112:0;;;;;:::i;:::-;;:::i;54162:104::-;;;;;;;;;;;;;:::i;55772:279::-;;;;;;;;;;-1:-1:-1;55772:279:0;;;;;:::i;:::-;;:::i;79225:153::-;;;;;;;;;;-1:-1:-1;79225:153:0;;;;;:::i;:::-;;:::i;56850:369::-;;;;;;;;;;-1:-1:-1;56850:369:0;;;;;:::i;:::-;;:::i;79964:83::-;;;;;;;;;;-1:-1:-1;79964:83:0;;;;;:::i;:::-;;:::i;73597:39::-;;;;;;;;;;-1:-1:-1;73597:39:0;;;;;;;-1:-1:-1;;;;;73597:39:0;;;81540:503;;;;;;;;;;-1:-1:-1;81540:503:0;;;;;:::i;:::-;;:::i;73688:96::-;;;;;;;;;;;;;;;;79386:91;;;;;;;;;;-1:-1:-1;79386:91:0;;;;;:::i;:::-;;:::i;80055:104::-;;;;;;;;;;-1:-1:-1;80055:104:0;;;;;:::i;:::-;;:::i;56122:164::-;;;;;;;;;;-1:-1:-1;56122:164:0;;;;;:::i;:::-;;:::i;74939:1115::-;;;;;;:::i;:::-;;:::i;72533:201::-;;;;;;;;;;-1:-1:-1;72533:201:0;;;;;:::i;:::-;;:::i;73377:25::-;;;;;;;;;;;;;;;;79803:153;;;;;;;;;;-1:-1:-1;79803:153:0;;;;;:::i;:::-;;:::i;50608:305::-;50710:4;-1:-1:-1;;;;;;50747:40:0;;-1:-1:-1;;;50747:40:0;;:105;;-1:-1:-1;;;;;;;50804:48:0;;-1:-1:-1;;;50804:48:0;50747:105;:158;;;-1:-1:-1;;;;;;;;;;35660:40:0;;;50869:36;50727:178;50608:305;-1:-1:-1;;50608:305:0:o;53993:100::-;54047:13;54080:5;54073:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53993:100;:::o;55496:204::-;55564:7;55589:16;55597:7;55589;:16::i;:::-;55584:64;;55614:34;;-1:-1:-1;;;55614:34:0;;;;;;;;;;;55584:64;-1:-1:-1;55668:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;55668:24:0;;55496:204::o;55059:371::-;55132:13;55148:24;55164:7;55148:15;:24::i;:::-;55132:40;;55193:5;-1:-1:-1;;;;;55187:11:0;:2;-1:-1:-1;;;;;55187:11:0;;55183:48;;;55207:24;;-1:-1:-1;;;55207:24:0;;;;;;;;;;;55183:48;45988:10;-1:-1:-1;;;;;55248:21:0;;;;;;:63;;-1:-1:-1;55274:37:0;55291:5;45988:10;56122:164;:::i;55274:37::-;55273:38;55248:63;55244:138;;;55335:35;;-1:-1:-1;;;55335:35:0;;;;;;;;;;;55244:138;55394:28;55403:2;55407:7;55416:5;55394:8;:28::i;:::-;55121:309;55059:371;;:::o;77749:279::-;44282:1;44880:7;;:19;;44872:63;;;;-1:-1:-1;;;44872:63:0;;;;;;;:::i;:::-;;;;;;;;;44282:1;45013:7;:18;77836:6:::1;::::0;::::1;;77835:7;77827:42;;;::::0;-1:-1:-1;;;77827:42:0;;19761:2:1;77827:42:0::1;::::0;::::1;19743:21:1::0;19800:2;19780:18;;;19773:30;-1:-1:-1;;;19819:18:1;;;19812:52;19881:18;;77827:42:0::1;19559:346:1::0;77827:42:0::1;77901:8;:15;77882;;:34;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;77934:6:0::1;::::0;-1:-1:-1;77929:92:0::1;77950:8;:15;77946:1;:19;77929:92;;;77987:22;77997:8;78006:1;77997:11;;;;;;;;:::i;:::-;;;;;;;77987:9;:22::i;:::-;77967:3:::0;::::1;::::0;::::1;:::i;:::-;;;;77929:92;;;-1:-1:-1::0;;44238:1:0;45192:7;:22;77749:279::o;76941:514::-;77015:6;;;;77014:7;77006:42;;;;-1:-1:-1;;;77006:42:0;;19761:2:1;77006:42:0;;;19743:21:1;19800:2;19780:18;;;19773:30;-1:-1:-1;;;19819:18:1;;;19812:52;19881:18;;77006:42:0;19559:346:1;77006:42:0;77067:6;77063:338;77079:19;;;77063:338;;;77129:11;:24;77141:8;;77150:1;77141:11;;;;;;;:::i;:::-;;;;;;;;;;77129:24;;-1:-1:-1;77129:24:0;;;;;;;;-1:-1:-1;77129:24:0;;;;77128:25;77120:60;;;;-1:-1:-1;;;77120:60:0;;16031:2:1;77120:60:0;;;16013:21:1;16070:2;16050:18;;;16043:30;-1:-1:-1;;;16089:18:1;;;16082:52;16151:18;;77120:60:0;15829:346:1;77120:60:0;77197:138;77232:10;77261:29;77278:8;;77287:1;77278:11;;;;;;;:::i;:::-;;;;;;;77261:16;:29::i;:::-;77309:8;;77318:1;77309:11;;;;;;;:::i;:::-;;;;;;;77197:16;:138::i;:::-;77352:37;77365:10;77377:8;;77386:1;77377:11;;;;;;;:::i;:::-;;;;;;;77352:12;:37::i;:::-;77100:3;;;;:::i;:::-;;;;77063:338;;;;77432:8;;:15;;77413;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;76941:514:0:o;80515:85::-;71670:7;71697:6;-1:-1:-1;;;;;71697:6:0;45988:10;71844:23;71836:68;;;;-1:-1:-1;;;71836:68:0;;;;;;;:::i;:::-;80577:6:::1;:15:::0;;-1:-1:-1;;80577:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;80515:85::o;76062:871::-;44282:1;44880:7;;:19;;44872:63;;;;-1:-1:-1;;;44872:63:0;;;;;;;:::i;:::-;44282:1;45013:7;:18;76256:10:::1;::::0;76239:13:::1;:11;:13::i;:::-;76225:27;::::0;:11;:27:::1;:::i;:::-;:41;;76217:68;;;::::0;-1:-1:-1;;;76217:68:0;;22687:2:1;76217:68:0::1;::::0;::::1;22669:21:1::0;22726:2;22706:18;;;22699:30;-1:-1:-1;;;22745:18:1;;;22738:44;22799:18;;76217:68:0::1;22485:338:1::0;76217:68:0::1;76335:17;;76318:13;:11;:13::i;:::-;76304:27;::::0;:11;:27:::1;:::i;:::-;:48;;76296:83;;;::::0;-1:-1:-1;;;76296:83:0;;23449:2:1;76296:83:0::1;::::0;::::1;23431:21:1::0;23488:2;23468:18;;;23461:30;-1:-1:-1;;;23507:18:1;;;23500:52;23569:18;;76296:83:0::1;23247:346:1::0;76296:83:0::1;76395:14;::::0;::::1;;76392:89;;;76432:21;76446:6;76432:13;:21::i;:::-;76424:57;;;::::0;-1:-1:-1;;;76424:57:0;;18649:2:1;76424:57:0::1;::::0;::::1;18631:21:1::0;18688:2;18668:18;;;18661:30;18727:25;18707:18;;;18700:53;18770:18;;76424:57:0::1;18447:347:1::0;76424:57:0::1;76502:10;::::0;::::1;::::0;::::1;;;76494:48;;;::::0;-1:-1:-1;;;76494:48:0;;20889:2:1;76494:48:0::1;::::0;::::1;20871:21:1::0;20928:2;20908:18;;;20901:30;20967:27;20947:18;;;20940:55;21012:18;;76494:48:0::1;20687:349:1::0;76494:48:0::1;76575:1;76561:11;:15;76553:50;;;::::0;-1:-1:-1;;;76553:50:0;;17885:2:1;76553:50:0::1;::::0;::::1;17867:21:1::0;17924:2;17904:18;;;17897:30;-1:-1:-1;;;17943:18:1;;;17936:52;18005:18;;76553:50:0::1;17683:346:1::0;76553:50:0::1;76637:6;;76622:11;:21;;76614:67;;;::::0;-1:-1:-1;;;76614:67:0;;16736:2:1;76614:67:0::1;::::0;::::1;16718:21:1::0;16775:2;16755:18;;;16748:30;16814:34;16794:18;;;16787:62;-1:-1:-1;;;16865:18:1;;;16858:31;16906:19;;76614:67:0::1;16534:397:1::0;76614:67:0::1;76700:9;76713:10;76700:23;76692:54;;;::::0;-1:-1:-1;;;76692:54:0;;21243:2:1;76692:54:0::1;::::0;::::1;21225:21:1::0;21282:2;21262:18;;;21255:30;-1:-1:-1;;;21301:18:1;;;21294:49;21360:18;;76692:54:0::1;21041:343:1::0;76692:54:0::1;76766:6;::::0;::::1;;76765:7;76757:39;;;::::0;-1:-1:-1;;;76757:39:0;;21591:2:1;76757:39:0::1;::::0;::::1;21573:21:1::0;21630:2;21610:18;;;21603:30;-1:-1:-1;;;21649:18:1;;;21642:49;21708:18;;76757:39:0::1;21389:343:1::0;76757:39:0::1;76842:12;::::0;76828:26:::1;::::0;:11;:26:::1;:::i;:::-;76815:9;:39;;76807:69;;;::::0;-1:-1:-1;;;76807:69:0;;21939:2:1;76807:69:0::1;::::0;::::1;21921:21:1::0;21978:2;21958:18;;;21951:30;-1:-1:-1;;;21997:18:1;;;21990:47;22054:18;;76807:69:0::1;21737:341:1::0;76807:69:0::1;76891:34;76901:10;76913:11;76891:9;:34::i;49857:303::-:0;50111:12;;80700:1;50095:13;:28;-1:-1:-1;;50095:46:0;;49857:303::o;62383:177::-;62447:7;;62495:23;62503:14;:7;62513:4;62503:14;:::i;:::-;62495:7;:23::i;:::-;62484:46;;;;;;;;;;;;:::i;:::-;62467:63;62383:177;-1:-1:-1;;;62383:177:0:o;56353:170::-;56487:28;56497:4;56503:2;56507:7;56487:9;:28::i;80167:120::-;71670:7;71697:6;-1:-1:-1;;;;;71697:6:0;45988:10;71844:23;71836:68;;;;-1:-1:-1;;;71836:68:0;;;;;;;:::i;:::-;80251:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;80167:120:::0;:::o;82051:165::-;71670:7;71697:6;-1:-1:-1;;;;;71697:6:0;45988:10;71844:23;71836:68;;;;-1:-1:-1;;;71836:68:0;;;;;;;:::i;:::-;82126:58:::1;::::0;82108:12:::1;::::0;82134:10:::1;::::0;82158:21:::1;::::0;82108:12;82126:58;82108:12;82126:58;82158:21;82134:10;82126:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82107:77;;;82203:7;82195:16;;;::::0;::::1;;82096:120;82051:165::o:0;56594:185::-;56732:39;56749:4;56755:2;56759:7;56732:39;;;;;;;;;;;;:16;:39::i;78974:243::-;79037:7;79046;79066:20;79116:4;79099:22;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;79099:22:0;;;;;;79089:33;;79099:22;79089:33;;;;79151:42;;;8662:19:1;;;79182:10:0;8719:2:1;8715:15;-1:-1:-1;;;;;;8711:53:1;8697:12;;;8690:75;79151:42:0;;;;;;;;;8781:12:1;;;;79151:42:0;;;79141:53;;;;;;;;;79089:33;;-1:-1:-1;78974:243:0;-1:-1:-1;;;78974:243:0:o;79605:190::-;71670:7;71697:6;-1:-1:-1;;;;;71697:6:0;45988:10;71844:23;71836:68;;;;-1:-1:-1;;;71836:68:0;;;;;;;:::i;:::-;79701:10:::1;:19:::0;;-1:-1:-1;;79701:19:0::1;;::::0;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;;79731:12:::1;:21:::0;79763:14:::1;:24:::0;;-1:-1:-1;;79763:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;79605:190::o;53802:124::-;53866:7;53893:20;53905:7;53893:11;:20::i;:::-;:25;;53802:124;-1:-1:-1;;53802:124:0:o;80717:536::-;-1:-1:-1;;;;;80869:20:0;;80827:39;80869:20;;;:12;:20;;;;;80781:16;;;;80869:20;80943:18;80869:20;80943:16;:18::i;:::-;-1:-1:-1;;;;;80928:34:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;80928:34:0;;80900:62;;80973:21;81011:18;:9;:16;:18::i;:::-;-1:-1:-1;;;;;80997:33:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;80997:33:0;;80973:57;;81047:9;81043:166;81062:18;:9;:16;:18::i;:::-;81058:1;:22;81043:166;;;81116:15;:9;81129:1;81116:12;:15::i;:::-;81102:8;81111:1;81102:11;;;;;;;;:::i;:::-;;;;;;;;;;:29;81190:7;;;;;-1:-1:-1;;;;;81190:7:0;81157:6;:23;81164:15;:9;81177:1;81164:12;:15::i;:::-;81157:23;;;;;;;;;;;-1:-1:-1;81157:23:0;:30;:40;;;:30;;;-1:-1:-1;;;;;81157:30:0;:40;:::i;:::-;81146:5;81152:1;81146:8;;;;;;;;:::i;:::-;-1:-1:-1;;;;;81146:51:0;;;:8;;;;;;;;;;;:51;81082:3;;;;:::i;:::-;;;;81043:166;;;-1:-1:-1;81229:8:0;;81239:5;;-1:-1:-1;80717:536:0;-1:-1:-1;;;80717:536:0:o;50977:206::-;51041:7;-1:-1:-1;;;;;51065:19:0;;51061:60;;51093:28;;-1:-1:-1;;;51093:28:0;;;;;;;;;;;51061:60;-1:-1:-1;;;;;;51147:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;51147:27:0;;50977:206::o;74602:329::-;74773:48;;-1:-1:-1;;;;;;74790:10:0;8346:2:1;8342:15;8338:53;74773:48:0;;;8326:66:1;8408:12;;;8401:28;;;8445:12;;;8438:28;;;74702:4:0;;;;74734:89;;8482:12:1;;74773:48:0;;;;-1:-1:-1;;74773:48:0;;;;;;;;;74763:59;;74773:48;74763:59;;;;10859:66:1;23122:58:0;;;10847:79:1;10942:12;;;;10935:28;;;;23122:58:0;;;;;;;;;;10979:12:1;;;;23122:58:0;;;23112:69;;;;;;22920:269;74734:89;74839:14;;;;:8;:14;;;;;;74719:104;;-1:-1:-1;74839:14:0;;74836:44;;;74875:5;74868:12;;;;;74836:44;74900:23;74907:4;74913:9;74900:6;:23::i;:::-;74893:30;74602:329;-1:-1:-1;;;;;74602:329:0:o;72275:103::-;71670:7;71697:6;-1:-1:-1;;;;;71697:6:0;45988:10;71844:23;71836:68;;;;-1:-1:-1;;;71836:68:0;;;;;;;:::i;:::-;72340:30:::1;72367:1;72340:18;:30::i;:::-;72275:103::o:0;80411:96::-;71670:7;71697:6;-1:-1:-1;;;;;71697:6:0;45988:10;71844:23;71836:68;;;;-1:-1:-1;;;71836:68:0;;;;;;;:::i;:::-;80483:16;;::::1;::::0;:6:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;78853:113::-:0;78950:7;;78901:6;;78950:7;;;-1:-1:-1;;;;;78950:7:0;78934:13;:11;:13::i;:::-;:23;;;;:::i;:::-;78920:38;;78853:113;:::o;79485:112::-;71670:7;71697:6;-1:-1:-1;;;;;71697:6:0;45988:10;71844:23;71836:68;;;;-1:-1:-1;;;71836:68:0;;;;;;;:::i;:::-;79572:16:::1;:6:::0;79581:7:::1;79572:16;:::i;:::-;79555:7;;:34;;;;;-1:-1:-1::0;;;;;79555:34:0::1;;;;;-1:-1:-1::0;;;;;79555:34:0::1;;;;;;79485:112:::0;:::o;54162:104::-;54218:13;54251:7;54244:14;;;;;:::i;55772:279::-;-1:-1:-1;;;;;55863:24:0;;45988:10;55863:24;55859:54;;;55896:17;;-1:-1:-1;;;55896:17:0;;;;;;;;;;;55859:54;45988:10;55926:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;55926:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;55926:53:0;;;;;;;;;;55995:48;;13237:41:1;;;55926:42:0;;45988:10;55995:48;;13210:18:1;55995:48:0;;;;;;;55772:279;;:::o;79225:153::-;79284:4;79344:12;;79358:10;79327:42;;;;;;;;8662:19:1;;;8719:2;8715:15;-1:-1:-1;;;;;;8711:53:1;8706:2;8697:12;;8690:75;8790:2;8781:12;;8505:294;79327:42:0;;;;;;;;;;;;;79317:53;;;;;;79308:5;:62;79301:69;;79225:153;;;:::o;56850:369::-;57017:28;57027:4;57033:2;57037:7;57017:9;:28::i;:::-;-1:-1:-1;;;;;57060:13:0;;25763:19;:23;;57060:76;;;;;57080:56;57111:4;57117:2;57121:7;57130:5;57080:30;:56::i;:::-;57079:57;57060:76;57056:156;;;57160:40;;-1:-1:-1;;;57160:40:0;;;;;;;;;;;57056:156;56850:369;;;;:::o;79964:83::-;71670:7;71697:6;-1:-1:-1;;;;;71697:6:0;45988:10;71844:23;71836:68;;;;-1:-1:-1;;;71836:68:0;;;;;;;:::i;:::-;80026:6:::1;:13:::0;79964:83::o;81540:503::-;81658:13;81707:16;81715:7;81707;:16::i;:::-;81689:105;;;;-1:-1:-1;;;81689:105:0;;20473:2:1;81689:105:0;;;20455:21:1;20512:2;20492:18;;;20485:30;20551:34;20531:18;;;20524:62;-1:-1:-1;;;20602:18:1;;;20595:45;20657:19;;81689:105:0;20271:411:1;81689:105:0;81817:28;81848:10;:8;:10::i;:::-;81817:41;;81909:1;81884:14;81878:28;:32;:157;;;;;;;;;;;;;;;;;81950:14;81966:41;81983:23;81998:7;81983:14;:23::i;:::-;81966:16;:41::i;:::-;82009:6;81933:83;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81871:164;81540:503;-1:-1:-1;;;81540:503:0:o;79386:91::-;71670:7;71697:6;-1:-1:-1;;;;;71697:6:0;45988:10;71844:23;71836:68;;;;-1:-1:-1;;;71836:68:0;;;;;;;:::i;:::-;79449:11:::1;:20:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;79449:20:0;;::::1;::::0;;;::::1;::::0;;79386:91::o;80055:104::-;71670:7;71697:6;-1:-1:-1;;;;;71697:6:0;45988:10;71844:23;71836:68;;;;-1:-1:-1;;;71836:68:0;;;;;;;:::i;:::-;80127:17:::1;:24:::0;80055:104::o;56122:164::-;-1:-1:-1;;;;;56243:25:0;;;56219:4;56243:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;56122:164::o;74939:1115::-;44282:1;44880:7;;:19;;44872:63;;;;-1:-1:-1;;;44872:63:0;;;;;;;:::i;:::-;44282:1;45013:7;:18;75165:10:::1;::::0;75148:13:::1;:11;:13::i;:::-;75134:27;::::0;:11;:27:::1;:::i;:::-;:41;;75126:68;;;::::0;-1:-1:-1;;;75126:68:0;;22687:2:1;75126:68:0::1;::::0;::::1;22669:21:1::0;22726:2;22706:18;;;22699:30;-1:-1:-1;;;22745:18:1;;;22738:44;22799:18;;75126:68:0::1;22485:338:1::0;75126:68:0::1;75227:1;75213:11;:15;75205:50;;;::::0;-1:-1:-1;;;75205:50:0;;17885:2:1;75205:50:0::1;::::0;::::1;17867:21:1::0;17924:2;17904:18;;;17897:30;-1:-1:-1;;;17943:18:1;;;17936:52;18005:18;;75205:50:0::1;17683:346:1::0;75205:50:0::1;75276:9;75289:10;75276:23;75268:54;;;::::0;-1:-1:-1;;;75268:54:0;;21243:2:1;75268:54:0::1;::::0;::::1;21225:21:1::0;21282:2;21262:18;;;21255:30;-1:-1:-1;;;21301:18:1;;;21294:49;21360:18;;75268:54:0::1;21041:343:1::0;75268:54:0::1;75342:6;::::0;::::1;;75341:7;75333:39;;;::::0;-1:-1:-1;;;75333:39:0;;21591:2:1;75333:39:0::1;::::0;::::1;21573:21:1::0;21630:2;21610:18;;;21603:30;-1:-1:-1;;;21649:18:1;;;21642:49;21708:18;;75333:39:0::1;21389:343:1::0;75333:39:0::1;75418:8;::::0;75404:22:::1;::::0;:11;:22:::1;:::i;:::-;75391:9;:35;;75383:65;;;::::0;-1:-1:-1;;;75383:65:0;;21939:2:1;75383:65:0::1;::::0;::::1;21921:21:1::0;21978:2;21958:18;;;21951:30;-1:-1:-1;;;21997:18:1;;;21990:47;22054:18;;75383:65:0::1;21737:341:1::0;75383:65:0::1;75515:48;::::0;-1:-1:-1;;;;;;75532:10:0::1;8346:2:1::0;8342:15;8338:53;75515:48:0::1;::::0;::::1;8326:66:1::0;8408:12;;;8401:28;;;8445:12;;;8438:28;;;75461:12:0::1;::::0;75476:89:::1;::::0;8482:12:1;;75515:48:0::1;8141:359:1::0;75476:89:0::1;75587:14;::::0;;;:8:::1;:14;::::0;;;;;75461:104;;-1:-1:-1;75587:14:0::1;;75586:15;75578:49;;;::::0;-1:-1:-1;;;75578:49:0;;24160:2:1;75578:49:0::1;::::0;::::1;24142:21:1::0;24199:2;24179:18;;;24172:30;-1:-1:-1;;;24218:18:1;;;24211:51;24279:18;;75578:49:0::1;23958:345:1::0;75578:49:0::1;75646:23;75653:4;75659:9;75646:6;:23::i;:::-;75638:51;;;::::0;-1:-1:-1;;;75638:51:0;;17138:2:1;75638:51:0::1;::::0;::::1;17120:21:1::0;17177:2;17157:18;;;17150:30;-1:-1:-1;;;17196:18:1;;;17189:45;17251:18;;75638:51:0::1;16936:339:1::0;75638:51:0::1;75702:14;::::0;;;:8:::1;:14;::::0;;;;:21;;-1:-1:-1;;75702:21:0::1;75719:4;75702:21;::::0;;75739:8:::1;::::0;:13;:33;::::1;;;;75756:11;75771:1;75756:16;75739:33;75736:289;;;75789:10;75802:13;:11;:13::i;:::-;:17;::::0;75818:1:::1;75802:17;:::i;:::-;75789:30;;75834:34;75844:20;75861:2;75844:16;:20::i;:::-;75866:1;75834:9;:34::i;:::-;75902:1;75883:15;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;75918:28:0::1;::::0;-1:-1:-1;75931:10:0::1;75943:2:::0;75918:12:::1;:28::i;:::-;75774:184;75736:289;;;75979:34;75989:10;76001:11;75979:9;:34::i;:::-;-1:-1:-1::0;;44238:1:0;45192:7;:22;-1:-1:-1;;74939:1115:0:o;72533:201::-;71670:7;71697:6;-1:-1:-1;;;;;71697:6:0;45988:10;71844:23;71836:68;;;;-1:-1:-1;;;71836:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;72622:22:0;::::1;72614:73;;;::::0;-1:-1:-1;;;72614:73:0;;15624:2:1;72614:73:0::1;::::0;::::1;15606:21:1::0;15663:2;15643:18;;;15636:30;15702:34;15682:18;;;15675:62;-1:-1:-1;;;15753:18:1;;;15746:36;15799:19;;72614:73:0::1;15422:402:1::0;72614:73:0::1;72698:28;72717:8;72698:18;:28::i;79803:153::-:0;71670:7;71697:6;-1:-1:-1;;;;;71697:6:0;45988:10;71844:23;71836:68;;;;-1:-1:-1;;;71836:68:0;;;;;;;:::i;:::-;79891:8:::1;:19:::0;;;;79921:12:::1;:27:::0;79803:153::o;57474:187::-;57531:4;57574:7;80700:1;57555:26;;:53;;;;;57595:13;;57585:7;:23;57555:53;:98;;;;-1:-1:-1;;57626:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;57626:27:0;;;;57625:28;;57474:187::o;67578:196::-;67693:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;67693:29:0;-1:-1:-1;;;;;67693:29:0;;;;;;;;;67738:28;;67693:24;;67738:28;;;;;;;67578:196;;;:::o;78036:655::-;78092:19;78114:15;;;:6;:15;;;;;78148:11;;-1:-1:-1;;;78148:11:0;;-1:-1:-1;;;;;78148:11:0;78163:10;78148:25;78140:67;;;;-1:-1:-1;;;78140:67:0;;15266:2:1;78140:67:0;;;15248:21:1;15305:2;15285:18;;;15278:30;15344:31;15324:18;;;15317:59;15393:18;;78140:67:0;15064:353:1;78140:67:0;78261:7;;78246:12;;:22;;-1:-1:-1;;;;;78261:7:0;;;;;;;78246:12;;;;:22;:::i;:::-;-1:-1:-1;;;;;78226:43:0;:15;:43;;:58;;;-1:-1:-1;78273:11:0;;;;;;;78226:58;78218:115;;;;-1:-1:-1;;;78218:115:0;;18236:2:1;78218:115:0;;;18218:21:1;18275:2;18255:18;;;18248:30;18314:34;18294:18;;;18287:62;-1:-1:-1;;;18365:18:1;;;18358:42;18417:19;;78218:115:0;18034:408:1;78218:115:0;78372:25;78389:7;78372:16;:25::i;:::-;-1:-1:-1;;;;;78352:45:0;:16;78360:7;78352;:16::i;:::-;-1:-1:-1;;;;;78352:45:0;;78344:86;;;;-1:-1:-1;;;78344:86:0;;19001:2:1;78344:86:0;;;18983:21:1;19040:2;19020:18;;;19013:30;19079;19059:18;;;19052:58;19127:18;;78344:86:0;18799:352:1;78344:86:0;78443:20;;;;:11;:20;;;;;;;;:27;;-1:-1:-1;;78443:27:0;78466:4;78443:27;;;78494:10;78481:24;;:12;:24;;;;;:40;;78455:7;78481:31;:40::i;:::-;;78532:62;78547:25;78564:7;78547:16;:25::i;:::-;78574:10;78586:7;78532:14;:62::i;:::-;78629:16;78637:7;78629;:16::i;:::-;-1:-1:-1;;;;;78615:30:0;:10;-1:-1:-1;;;;;78615:30:0;;78607:76;;;;-1:-1:-1;;;78607:76:0;;22285:2:1;78607:76:0;;;22267:21:1;22324:2;22304:18;;;22297:30;22363:34;22343:18;;;22336:62;-1:-1:-1;;;22414:18:1;;;22407:31;22455:19;;78607:76:0;22083:397:1;77463:278:0;77558:129;;;;;;;;77595:7;77558:129;;;;;;77633:13;:11;:13::i;:::-;-1:-1:-1;;;;;77558:129:0;;;;;-1:-1:-1;;;;;77558:129:0;;;;;;;;;;-1:-1:-1;77540:15:0;;;:6;:15;;;;;;:147;;;;;;;;;;;;;;;-1:-1:-1;;;77540:147:0;;;;;;;;-1:-1:-1;;;;;;77540:147:0;;;;;;;;;;;;;;;;;;;;;;;77700:20;;:12;:20;;;;:33;;77547:7;77700:24;:33::i;57669:104::-;57738:27;57748:2;57752:8;57738:27;;;;;;;;;;;;:9;:27::i;62568:147::-;62650:13;;;62660:2;62650:13;;;;;;;;;62619:14;;62650:13;;;;;;;;-1:-1:-1;;;62699:2:0;62692:10;;62685:21;;;;-1:-1:-1;62692:10:0;62568:147::o;62969:2223::-;63084:35;63122:20;63134:7;63122:11;:20::i;:::-;63199:18;;63084:58;;-1:-1:-1;63157:22:0;;-1:-1:-1;;;;;63183:34:0;45988:10;-1:-1:-1;;;;;63183:34:0;;:101;;;-1:-1:-1;63251:18:0;;63234:50;;45988:10;56122:164;:::i;63234:50::-;63183:154;;;-1:-1:-1;45988:10:0;63301:20;63313:7;63301:11;:20::i;:::-;-1:-1:-1;;;;;63301:36:0;;63183:154;63157:181;;63356:17;63351:66;;63382:35;;-1:-1:-1;;;63382:35:0;;;;;;;;;;;63351:66;63454:4;-1:-1:-1;;;;;63432:26:0;:13;:18;;;-1:-1:-1;;;;;63432:26:0;;63428:67;;63467:28;;-1:-1:-1;;;63467:28:0;;;;;;;;;;;63428:67;-1:-1:-1;;;;;63510:16:0;;63506:52;;63535:23;;-1:-1:-1;;;63535:23:0;;;;;;;;;;;63506:52;63587:25;63604:7;63587:16;:25::i;:::-;-1:-1:-1;;;;;63579:33:0;:4;-1:-1:-1;;;;;63579:33:0;;;63571:96;;;;-1:-1:-1;;;63571:96:0;;23030:2:1;63571:96:0;;;23012:21:1;23069:2;23049:18;;;23042:30;23108:34;23088:18;;;23081:62;-1:-1:-1;;;23159:18:1;;;23152:48;23217:19;;63571:96:0;22828:414:1;63571:96:0;63788:49;63805:1;63809:7;63818:13;:18;;;63788:8;:49::i;:::-;-1:-1:-1;;;;;64133:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;64133:31:0;;;-1:-1:-1;;;;;64133:31:0;;;-1:-1:-1;;64133:31:0;;;;;;;64179:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;64179:29:0;;;;;;;;;;;64225:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;64270:61:0;;;;-1:-1:-1;;;64315:15:0;64270:61;;;;;;;;;;;64605:11;;;64635:24;;;;;:29;64605:11;;64635:29;64631:445;;64860:13;;64846:11;:27;64842:219;;;64930:18;;;64898:24;;;:11;:24;;;;;;;;:50;;65013:28;;;;-1:-1:-1;;;;;64971:70:0;-1:-1:-1;;;64971:70:0;-1:-1:-1;;;;;;64971:70:0;;;-1:-1:-1;;;;;64898:50:0;;;64971:70;;;;;;;64842:219;64108:979;65123:7;65119:2;-1:-1:-1;;;;;65104:27:0;65113:4;-1:-1:-1;;;;;65104:27:0;-1:-1:-1;;;;;;;;;;;65104:27:0;;;;;;;;;65142:42;63073:2119;;62969:2223;;;:::o;52632:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;52742:7:0;;80700:1;52791:23;;:47;;;;;52825:13;;52818:4;:20;52791:47;52787:886;;;52859:31;52893:17;;;:11;:17;;;;;;;;;52859:51;;;;;;;;;-1:-1:-1;;;;;52859:51:0;;;;-1:-1:-1;;;52859:51:0;;-1:-1:-1;;;;;52859:51:0;;;;;;;;-1:-1:-1;;;52859:51:0;;;;;;;;;;;;;;52929:729;;52979:14;;-1:-1:-1;;;;;52979:28:0;;52975:101;;53043:9;52632:1108;-1:-1:-1;;;52632:1108:0:o;52975:101::-;-1:-1:-1;;;53418:6:0;53463:17;;;;:11;:17;;;;;;;;;53451:29;;;;;;;;;-1:-1:-1;;;;;53451:29:0;;;;;-1:-1:-1;;;53451:29:0;;-1:-1:-1;;;;;53451:29:0;;;;;;;;-1:-1:-1;;;53451:29:0;;;;;;;;;;;;;53511:28;53507:109;;53579:9;52632:1108;-1:-1:-1;;;52632:1108:0:o;53507:109::-;53378:261;;;52840:833;52787:886;53701:31;;-1:-1:-1;;;53701:31:0;;;;;;;;;;;11152:114;11212:7;11239:19;11247:3;4181:18;;4098:109;11620:137;11691:7;11726:22;11730:3;11742:5;11726:3;:22::i;74445:149::-;74580:6;;74522:4;;74580:6;;;-1:-1:-1;;;;;74580:6:0;74546:30;74560:4;74566:9;74546:13;:30::i;:::-;-1:-1:-1;;;;;74546:40:0;;;74445:149;-1:-1:-1;;;74445:149:0:o;72894:191::-;72968:16;72987:6;;-1:-1:-1;;;;;73004:17:0;;;-1:-1:-1;;;;;;73004:17:0;;;;;;73037:40;;72987:6;;;;;;;73037:40;;72968:16;73037:40;72957:128;72894:191;:::o;78699:146::-;78745:6;78820:15;;78807:10;:28;;;;:::i;:::-;78778:25;:15;78796:7;78778:25;:::i;:::-;:58;;;;:::i;68266:667::-;68450:72;;-1:-1:-1;;;68450:72:0;;68429:4;;-1:-1:-1;;;;;68450:36:0;;;;;:72;;45988:10;;68501:4;;68507:7;;68516:5;;68450:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68450:72:0;;;;;;;;-1:-1:-1;;68450:72:0;;;;;;;;;;;;:::i;:::-;;;68446:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68684:13:0;;68680:235;;68730:40;;-1:-1:-1;;;68730:40:0;;;;;;;;;;;68680:235;68873:6;68867:13;68858:6;68854:2;68850:15;68843:38;68446:480;-1:-1:-1;;;;;;68569:55:0;-1:-1:-1;;;68569:55:0;;-1:-1:-1;68446:480:0;68266:667;;;;;;:::o;80296:107::-;80356:13;80386:12;80379:19;;;;;:::i;81382:148::-;81446:7;81346:20;;;:11;:20;;;;;;;;81473:49;;81515:7;81473:49;;;81498:14;:7;81508:4;81498:14;:::i;12942:723::-;12998:13;13219:10;13215:53;;-1:-1:-1;;13246:10:0;;;;;;;;;;;;-1:-1:-1;;;13246:10:0;;;;;12942:723::o;13215:53::-;13293:5;13278:12;13334:78;13341:9;;13334:78;;13367:8;;;;:::i;:::-;;-1:-1:-1;13390:10:0;;-1:-1:-1;13398:2:0;13390:10;;:::i;:::-;;;13334:78;;;13422:19;13454:6;-1:-1:-1;;;;;13444:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13444:17:0;;13422:39;;13472:154;13479:10;;13472:154;;13506:11;13516:1;13506:11;;:::i;:::-;;-1:-1:-1;13575:10:0;13583:2;13575:5;:10;:::i;:::-;13562:24;;:2;:24;:::i;:::-;13549:39;;13532:6;13539;13532:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;13532:56:0;;;;;;;;-1:-1:-1;13603:11:0;13612:2;13603:11;;:::i;:::-;;;13472:154;;10697:137;10767:4;10791:35;10799:3;10819:5;10791:7;:35::i;60587:1788::-;60708:35;60746:20;60758:7;60746:11;:20::i;:::-;60708:58;;60795:25;60812:7;60795:16;:25::i;:::-;-1:-1:-1;;;;;60787:33:0;:4;-1:-1:-1;;;;;60787:33:0;;60779:71;;;;-1:-1:-1;;;60779:71:0;;16382:2:1;60779:71:0;;;16364:21:1;16421:2;16401:18;;;16394:30;16460:27;16440:18;;;16433:55;16505:18;;60779:71:0;16180:349:1;60779:71:0;60971:49;60988:1;60992:7;61001:13;:18;;;60971:8;:49::i;:::-;-1:-1:-1;;;;;61316:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;61316:31:0;;;-1:-1:-1;;;;;61316:31:0;;;-1:-1:-1;;61316:31:0;;;;;;;61362:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;61362:29:0;;;;;;;;;;;61408:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;61453:61:0;;;;-1:-1:-1;;;61498:15:0;61453:61;;;;;;;;;;;61788:11;;;61818:24;;;;;:29;61788:11;;61818:29;61814:445;;62043:13;;62029:11;:27;62025:219;;;62113:18;;;62081:24;;;:11;:24;;;;;;;;:50;;62196:28;;;;-1:-1:-1;;;;;62154:70:0;-1:-1:-1;;;62154:70:0;-1:-1:-1;;;;;;62154:70:0;;;-1:-1:-1;;;;;62081:50:0;;;62154:70;;;;;;;62025:219;61291:979;62306:7;62302:2;-1:-1:-1;;;;;62287:27:0;62296:4;-1:-1:-1;;;;;62287:27:0;-1:-1:-1;;;;;;;;;;;62287:27:0;;;;;;;;;62325:42;56850:369;10390:131;10457:4;10481:32;10486:3;10506:5;10481:4;:32::i;58136:163::-;58259:32;58265:2;58269:8;58279:5;58286:4;58259:5;:32::i;4561:120::-;4628:7;4655:3;:11;;4667:5;4655:18;;;;;;;;:::i;:::-;;;;;;;;;4648:25;;4561:120;;;;:::o;19118:231::-;19196:7;19217:17;19236:18;19258:27;19269:4;19275:9;19258:10;:27::i;:::-;19216:69;;;;19296:18;19308:5;19296:11;:18::i;:::-;-1:-1:-1;19332:9:0;19118:231;-1:-1:-1;;;19118:231:0:o;2377:1420::-;2443:4;2582:19;;;:12;;;:19;;;;;;2618:15;;2614:1176;;2993:21;3017:14;3030:1;3017:10;:14;:::i;:::-;3066:18;;2993:38;;-1:-1:-1;3046:17:0;;3066:22;;3087:1;;3066:22;:::i;:::-;3046:42;;3122:13;3109:9;:26;3105:405;;3156:17;3176:3;:11;;3188:9;3176:22;;;;;;;;:::i;:::-;;;;;;;;;3156:42;;3330:9;3301:3;:11;;3313:13;3301:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;3415:23;;;:12;;;:23;;;;;:36;;;3105:405;3591:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3686:3;:12;;:19;3699:5;3686:19;;;;;;;;;;;3679:26;;;3729:4;3722:11;;;;;;;2614:1176;3773:5;3766:12;;;;;1787:414;1850:4;3980:19;;;:12;;;:19;;;;;;1867:327;;-1:-1:-1;1910:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;2093:18;;2071:19;;;:12;;;:19;;;;;;:40;;;;2126:11;;1867:327;-1:-1:-1;2177:5:0;2170:12;;58558:1775;58720:13;;-1:-1:-1;;;;;58748:16:0;;58744:48;;58773:19;;-1:-1:-1;;;58773:19:0;;;;;;;;;;;58744:48;58807:13;58803:44;;58829:18;;-1:-1:-1;;;58829:18:0;;;;;;;;;;;58803:44;-1:-1:-1;;;;;59198:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;59257:49:0;;-1:-1:-1;;;;;59198:44:0;;;;;;;59257:49;;;;-1:-1:-1;;59198:44:0;;;;;;59257:49;;;;;;;;;;;;;;;;59323:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;59373:66:0;;;;-1:-1:-1;;;59423:15:0;59373:66;;;;;;;;;;59323:25;59520:23;;;59564:4;:23;;;;-1:-1:-1;;;;;;59572:13:0;;25763:19;:23;;59572:15;59560:641;;;59608:314;59639:38;;59664:12;;-1:-1:-1;;;;;59639:38:0;;;59656:1;;-1:-1:-1;;;;;;;;;;;59639:38:0;59656:1;;59639:38;59705:69;59744:1;59748:2;59752:14;;;;;;59768:5;59705:30;:69::i;:::-;59700:174;;59810:40;;-1:-1:-1;;;59810:40:0;;;;;;;;;;;59700:174;59917:3;59901:12;:19;;59608:314;;60003:12;59986:13;;:29;59982:43;;60017:8;;;59982:43;59560:641;;;60066:120;60097:40;;60122:14;;;;;-1:-1:-1;;;;;60097:40:0;;;60114:1;;-1:-1:-1;;;;;;;;;;;60097:40:0;60114:1;;60097:40;60181:3;60165:12;:19;;60066:120;;59560:641;-1:-1:-1;60215:13:0;:28;60265:60;56850:369;17008:1308;17089:7;17098:12;17323:9;:16;17343:2;17323:22;17319:990;;;17619:4;17604:20;;17598:27;17669:4;17654:20;;17648:27;17727:4;17712:20;;17706:27;17362:9;17698:36;17770:25;17781:4;17698:36;17598:27;17648;17770:10;:25::i;:::-;17763:32;;;;;;;;;17319:990;17817:9;:16;17837:2;17817:22;17813:496;;;18092:4;18077:20;;18071:27;18143:4;18128:20;;18122:27;18185:23;18196:4;18071:27;18122;18185:10;:23::i;:::-;18178:30;;;;;;;;17813:496;-1:-1:-1;18257:1:0;;-1:-1:-1;18261:35:0;17813:496;17008:1308;;;;;:::o;15279:643::-;15357:20;15348:5;:29;;;;;;;;:::i;:::-;;15344:571;;;15279:643;:::o;15344:571::-;15455:29;15446:5;:38;;;;;;;;:::i;:::-;;15442:473;;;15501:34;;-1:-1:-1;;;15501:34:0;;14553:2:1;15501:34:0;;;14535:21:1;14592:2;14572:18;;;14565:30;14631:26;14611:18;;;14604:54;14675:18;;15501:34:0;14351:348:1;15442:473:0;15566:35;15557:5;:44;;;;;;;;:::i;:::-;;15553:362;;;15618:41;;-1:-1:-1;;;15618:41:0;;14906:2:1;15618:41:0;;;14888:21:1;14945:2;14925:18;;;14918:30;14984:33;14964:18;;;14957:61;15035:18;;15618:41:0;14704:355:1;15553:362:0;15690:30;15681:5;:39;;;;;;;;:::i;:::-;;15677:238;;;15737:44;;-1:-1:-1;;;15737:44:0;;17482:2:1;15737:44:0;;;17464:21:1;17521:2;17501:18;;;17494:30;17560:34;17540:18;;;17533:62;-1:-1:-1;;;17611:18:1;;;17604:32;17653:19;;15737:44:0;17280:398:1;15677:238:0;15812:30;15803:5;:39;;;;;;;;:::i;:::-;;15799:116;;;15859:44;;-1:-1:-1;;;15859:44:0;;19358:2:1;15859:44:0;;;19340:21:1;19397:2;19377:18;;;19370:30;19436:34;19416:18;;;19409:62;-1:-1:-1;;;19487:18:1;;;19480:32;19529:19;;15859:44:0;19156:398:1;20570:1632:0;20701:7;;21635:66;21622:79;;21618:163;;;-1:-1:-1;21734:1:0;;-1:-1:-1;21738:30:0;21718:51;;21618:163;21795:1;:7;;21800:2;21795:7;;:18;;;;;21806:1;:7;;21811:2;21806:7;;21795:18;21791:102;;;-1:-1:-1;21846:1:0;;-1:-1:-1;21850:30:0;21830:51;;21791:102;22007:24;;;21990:14;22007:24;;;;;;;;;13951:25:1;;;14024:4;14012:17;;13992:18;;;13985:45;;;;14046:18;;;14039:34;;;14089:18;;;14082:34;;;22007:24:0;;13923:19:1;;22007:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;22007:24:0;;-1:-1:-1;;22007:24:0;;;-1:-1:-1;;;;;;;22046:20:0;;22042:103;;22099:1;22103:29;22083:50;;;;;;;22042:103;22165:6;-1:-1:-1;22173:20:0;;-1:-1:-1;20570:1632:0;;;;;;;;:::o;19612:344::-;19726:7;;-1:-1:-1;;;;;19772:80:0;;19726:7;19879:25;19895:3;19880:18;;;19902:2;19879:25;:::i;:::-;19863:42;;19923:25;19934:4;19940:1;19943;19946;19923:10;:25::i;:::-;19916:32;;;;;;19612:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:160::-;490:20;;546:13;;539:21;529:32;;519:60;;575:1;572;565:12;519:60;425:160;;;:::o;590:220::-;632:5;685:3;678:4;670:6;666:17;662:27;652:55;;703:1;700;693:12;652:55;725:79;800:3;791:6;778:20;771:4;763:6;759:17;725:79;:::i;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;1067:259::-;1145:6;1198:2;1186:9;1177:7;1173:23;1169:32;1166:52;;;1214:1;1211;1204:12;1166:52;1246:9;1240:16;1265:31;1290:5;1265:31;:::i;1331:388::-;1399:6;1407;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;1515:9;1502:23;1534:31;1559:5;1534:31;:::i;:::-;1584:5;-1:-1:-1;1641:2:1;1626:18;;1613:32;1654:33;1613:32;1654:33;:::i;:::-;1706:7;1696:17;;;1331:388;;;;;:::o;1724:456::-;1801:6;1809;1817;1870:2;1858:9;1849:7;1845:23;1841:32;1838:52;;;1886:1;1883;1876:12;1838:52;1925:9;1912:23;1944:31;1969:5;1944:31;:::i;:::-;1994:5;-1:-1:-1;2051:2:1;2036:18;;2023:32;2064:33;2023:32;2064:33;:::i;:::-;1724:456;;2116:7;;-1:-1:-1;;;2170:2:1;2155:18;;;;2142:32;;1724:456::o;2185:665::-;2280:6;2288;2296;2304;2357:3;2345:9;2336:7;2332:23;2328:33;2325:53;;;2374:1;2371;2364:12;2325:53;2413:9;2400:23;2432:31;2457:5;2432:31;:::i;:::-;2482:5;-1:-1:-1;2539:2:1;2524:18;;2511:32;2552:33;2511:32;2552:33;:::i;:::-;2604:7;-1:-1:-1;2658:2:1;2643:18;;2630:32;;-1:-1:-1;2713:2:1;2698:18;;2685:32;-1:-1:-1;;;;;2729:30:1;;2726:50;;;2772:1;2769;2762:12;2726:50;2795:49;2836:7;2827:6;2816:9;2812:22;2795:49;:::i;:::-;2785:59;;;2185:665;;;;;;;:::o;2855:315::-;2920:6;2928;2981:2;2969:9;2960:7;2956:23;2952:32;2949:52;;;2997:1;2994;2987:12;2949:52;3036:9;3023:23;3055:31;3080:5;3055:31;:::i;:::-;3105:5;-1:-1:-1;3129:35:1;3160:2;3145:18;;3129:35;:::i;:::-;3119:45;;2855:315;;;;;:::o;3175:::-;3243:6;3251;3304:2;3292:9;3283:7;3279:23;3275:32;3272:52;;;3320:1;3317;3310:12;3272:52;3359:9;3346:23;3378:31;3403:5;3378:31;:::i;:::-;3428:5;3480:2;3465:18;;;;3452:32;;-1:-1:-1;;;3175:315:1:o;3495:615::-;3581:6;3589;3642:2;3630:9;3621:7;3617:23;3613:32;3610:52;;;3658:1;3655;3648:12;3610:52;3698:9;3685:23;-1:-1:-1;;;;;3768:2:1;3760:6;3757:14;3754:34;;;3784:1;3781;3774:12;3754:34;3822:6;3811:9;3807:22;3797:32;;3867:7;3860:4;3856:2;3852:13;3848:27;3838:55;;3889:1;3886;3879:12;3838:55;3929:2;3916:16;3955:2;3947:6;3944:14;3941:34;;;3971:1;3968;3961:12;3941:34;4024:7;4019:2;4009:6;4006:1;4002:14;3998:2;3994:23;3990:32;3987:45;3984:65;;;4045:1;4042;4035:12;3984:65;4076:2;4068:11;;;;;4098:6;;-1:-1:-1;3495:615:1;;-1:-1:-1;;;;3495:615:1:o;4115:957::-;4199:6;4230:2;4273;4261:9;4252:7;4248:23;4244:32;4241:52;;;4289:1;4286;4279:12;4241:52;4329:9;4316:23;-1:-1:-1;;;;;4399:2:1;4391:6;4388:14;4385:34;;;4415:1;4412;4405:12;4385:34;4453:6;4442:9;4438:22;4428:32;;4498:7;4491:4;4487:2;4483:13;4479:27;4469:55;;4520:1;4517;4510:12;4469:55;4556:2;4543:16;4578:2;4574;4571:10;4568:36;;;4584:18;;:::i;:::-;4630:2;4627:1;4623:10;4613:20;;4653:28;4677:2;4673;4669:11;4653:28;:::i;:::-;4715:15;;;4746:12;;;;4778:11;;;4808;;;4804:20;;4801:33;-1:-1:-1;4798:53:1;;;4847:1;4844;4837:12;4798:53;4869:1;4860:10;;4879:163;4893:2;4890:1;4887:9;4879:163;;;4950:17;;4938:30;;4911:1;4904:9;;;;;4988:12;;;;5020;;4879:163;;;-1:-1:-1;5061:5:1;4115:957;-1:-1:-1;;;;;;;;4115:957:1:o;5077:180::-;5133:6;5186:2;5174:9;5165:7;5161:23;5157:32;5154:52;;;5202:1;5199;5192:12;5154:52;5225:26;5241:9;5225:26;:::i;5262:316::-;5333:6;5341;5349;5402:2;5390:9;5381:7;5377:23;5373:32;5370:52;;;5418:1;5415;5408:12;5370:52;5441:26;5457:9;5441:26;:::i;:::-;5431:36;;5514:2;5503:9;5499:18;5486:32;5476:42;;5537:35;5568:2;5557:9;5553:18;5537:35;:::i;:::-;5527:45;;5262:316;;;;;:::o;5583:180::-;5642:6;5695:2;5683:9;5674:7;5670:23;5666:32;5663:52;;;5711:1;5708;5701:12;5663:52;-1:-1:-1;5734:23:1;;5583:180;-1:-1:-1;5583:180:1:o;5768:245::-;5826:6;5879:2;5867:9;5858:7;5854:23;5850:32;5847:52;;;5895:1;5892;5885:12;5847:52;5934:9;5921:23;5953:30;5977:5;5953:30;:::i;6018:249::-;6087:6;6140:2;6128:9;6119:7;6115:23;6111:32;6108:52;;;6156:1;6153;6146:12;6108:52;6188:9;6182:16;6207:30;6231:5;6207:30;:::i;6272:450::-;6341:6;6394:2;6382:9;6373:7;6369:23;6365:32;6362:52;;;6410:1;6407;6400:12;6362:52;6450:9;6437:23;-1:-1:-1;;;;;6475:6:1;6472:30;6469:50;;;6515:1;6512;6505:12;6469:50;6538:22;;6591:4;6583:13;;6579:27;-1:-1:-1;6569:55:1;;6620:1;6617;6610:12;6569:55;6643:73;6708:7;6703:2;6690:16;6685:2;6681;6677:11;6643:73;:::i;6912:248::-;6980:6;6988;7041:2;7029:9;7020:7;7016:23;7012:32;7009:52;;;7057:1;7054;7047:12;7009:52;-1:-1:-1;;7080:23:1;;;7150:2;7135:18;;;7122:32;;-1:-1:-1;6912:248:1:o;7418:456::-;7504:6;7512;7520;7573:2;7561:9;7552:7;7548:23;7544:32;7541:52;;;7589:1;7586;7579:12;7541:52;7625:9;7612:23;7602:33;;7682:2;7671:9;7667:18;7654:32;7644:42;;7737:2;7726:9;7722:18;7709:32;-1:-1:-1;;;;;7756:6:1;7753:30;7750:50;;;7796:1;7793;7786:12;7750:50;7819:49;7860:7;7851:6;7840:9;7836:22;7819:49;:::i;:::-;7809:59;;;7418:456;;;;;:::o;7879:257::-;7920:3;7958:5;7952:12;7985:6;7980:3;7973:19;8001:63;8057:6;8050:4;8045:3;8041:14;8034:4;8027:5;8023:16;8001:63;:::i;:::-;8118:2;8097:15;-1:-1:-1;;8093:29:1;8084:39;;;;8125:4;8080:50;;7879:257;-1:-1:-1;;7879:257:1:o;8804:276::-;8935:3;8973:6;8967:13;8989:53;9035:6;9030:3;9023:4;9015:6;9011:17;8989:53;:::i;:::-;9058:16;;;;;8804:276;-1:-1:-1;;8804:276:1:o;9085:1527::-;9309:3;9347:6;9341:13;9373:4;9386:51;9430:6;9425:3;9420:2;9412:6;9408:15;9386:51;:::i;:::-;9500:13;;9459:16;;;;9522:55;9500:13;9459:16;9544:15;;;9522:55;:::i;:::-;9666:13;;9599:20;;;9639:1;;9726;9748:18;;;;9801;;;;9828:93;;9906:4;9896:8;9892:19;9880:31;;9828:93;9969:2;9959:8;9956:16;9936:18;9933:40;9930:167;;;-1:-1:-1;;;9996:33:1;;10052:4;10049:1;10042:15;10082:4;10003:3;10070:17;9930:167;10113:18;10140:110;;;;10264:1;10259:328;;;;10106:481;;10140:110;-1:-1:-1;;10175:24:1;;10161:39;;10220:20;;;;-1:-1:-1;10140:110:1;;10259:328;25052:1;25045:14;;;25089:4;25076:18;;10354:1;10368:169;10382:8;10379:1;10376:15;10368:169;;;10464:14;;10449:13;;;10442:37;10507:16;;;;10399:10;;10368:169;;;10372:3;;10568:8;10561:5;10557:20;10550:27;;10106:481;-1:-1:-1;10603:3:1;;9085:1527;-1:-1:-1;;;;;;;;;;;9085:1527:1:o;11420:488::-;-1:-1:-1;;;;;11689:15:1;;;11671:34;;11741:15;;11736:2;11721:18;;11714:43;11788:2;11773:18;;11766:34;;;11836:3;11831:2;11816:18;;11809:31;;;11614:4;;11857:45;;11882:19;;11874:6;11857:45;:::i;:::-;11849:53;11420:488;-1:-1:-1;;;;;;11420:488:1:o;11913:1179::-;12179:2;12191:21;;;12261:13;;12164:18;;;12283:22;;;12131:4;;12358;;12336:2;12321:18;;;12385:15;;;12131:4;12428:169;12442:6;12439:1;12436:13;12428:169;;;12503:13;;12491:26;;12537:12;;;;12572:15;;;;12464:1;12457:9;12428:169;;;-1:-1:-1;;;12633:19:1;;;12613:18;;;12606:47;12703:13;;12725:21;;;12801:15;;;;12764:12;;;12836:1;12846:218;12862:8;12857:3;12854:17;12846:218;;;12935:15;;-1:-1:-1;;;;;12931:44:1;12917:59;;13037:17;;;;12998:14;;;;12890:1;12881:11;12846:218;;;-1:-1:-1;13081:5:1;;11913:1179;-1:-1:-1;;;;;;;11913:1179:1:o;14127:219::-;14276:2;14265:9;14258:21;14239:4;14296:44;14336:2;14325:9;14321:18;14313:6;14296:44;:::i;19910:356::-;20112:2;20094:21;;;20131:18;;;20124:30;20190:34;20185:2;20170:18;;20163:62;20257:2;20242:18;;19910:356::o;23598:355::-;23800:2;23782:21;;;23839:2;23819:18;;;23812:30;23878:33;23873:2;23858:18;;23851:61;23944:2;23929:18;;23598:355::o;24699:275::-;24770:2;24764:9;24835:2;24816:13;;-1:-1:-1;;24812:27:1;24800:40;;-1:-1:-1;;;;;24855:34:1;;24891:22;;;24852:62;24849:88;;;24917:18;;:::i;:::-;24953:2;24946:22;24699:275;;-1:-1:-1;24699:275:1:o;25105:128::-;25145:3;25176:1;25172:6;25169:1;25166:13;25163:39;;;25182:18;;:::i;:::-;-1:-1:-1;25218:9:1;;25105:128::o;25238:120::-;25278:1;25304;25294:35;;25309:18;;:::i;:::-;-1:-1:-1;25343:9:1;;25238:120::o;25363:168::-;25403:7;25469:1;25465;25461:6;25457:14;25454:1;25451:21;25446:1;25439:9;25432:17;25428:45;25425:71;;;25476:18;;:::i;:::-;-1:-1:-1;25516:9:1;;25363:168::o;25536:125::-;25576:4;25604:1;25601;25598:8;25595:34;;;25609:18;;:::i;:::-;-1:-1:-1;25646:9:1;;25536:125::o;25666:233::-;25705:4;-1:-1:-1;;;;;25806:10:1;;;;25776;;25828:12;;;25825:38;;;25843:18;;:::i;:::-;25880:13;;25666:233;-1:-1:-1;;;25666:233:1:o;25904:258::-;25976:1;25986:113;26000:6;25997:1;25994:13;25986:113;;;26076:11;;;26070:18;26057:11;;;26050:39;26022:2;26015:10;25986:113;;;26117:6;26114:1;26111:13;26108:48;;;-1:-1:-1;;26152:1:1;26134:16;;26127:27;25904:258::o;26167:380::-;26246:1;26242:12;;;;26289;;;26310:61;;26364:4;26356:6;26352:17;26342:27;;26310:61;26417:2;26409:6;26406:14;26386:18;26383:38;26380:161;;;26463:10;26458:3;26454:20;26451:1;26444:31;26498:4;26495:1;26488:15;26526:4;26523:1;26516:15;26380:161;;26167:380;;;:::o;26552:135::-;26591:3;-1:-1:-1;;26612:17:1;;26609:43;;;26632:18;;:::i;:::-;-1:-1:-1;26679:1:1;26668:13;;26552:135::o;26692:112::-;26724:1;26750;26740:35;;26755:18;;:::i;:::-;-1:-1:-1;26789:9:1;;26692:112::o;26809:127::-;26870:10;26865:3;26861:20;26858:1;26851:31;26901:4;26898:1;26891:15;26925:4;26922:1;26915:15;26941:127;27002:10;26997:3;26993:20;26990:1;26983:31;27033:4;27030:1;27023:15;27057:4;27054:1;27047:15;27073:127;27134:10;27129:3;27125:20;27122:1;27115:31;27165:4;27162:1;27155:15;27189:4;27186:1;27179:15;27205:127;27266:10;27261:3;27257:20;27254:1;27247:31;27297:4;27294:1;27287:15;27321:4;27318:1;27311:15;27337:127;27398:10;27393:3;27389:20;27386:1;27379:31;27429:4;27426:1;27419:15;27453:4;27450:1;27443:15;27469:127;27530:10;27525:3;27521:20;27518:1;27511:31;27561:4;27558:1;27551:15;27585:4;27582:1;27575:15;27601:131;-1:-1:-1;;;;;27676:31:1;;27666:42;;27656:70;;27722:1;27719;27712:12;27737:131;-1:-1:-1;;;;;;27811:32:1;;27801:43;;27791:71;;27858:1;27855;27848:12
Swarm Source
ipfs://bbb274a565397d7888e3792f949f18482170c949ae0da1923a250c403b0e5b97
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.