ERC-721
Overview
Max Total Supply
2,901 ASTROCRYPTIDS
Holders
440
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 ASTROCRYPTIDSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ASTROCRYPTIDS
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-05-25 */ // Thank you to BGAN Punks / https://bastardganpunks.club/ for this contract. // xo Ciel // File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Strings.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/EnumerableMap.sol pragma solidity ^0.8.0; /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping (bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({ _key: key, _value: value })); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require(map._entries.length > index, "EnumerableMap: index out of bounds"); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. */ function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) { uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key) return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {_tryGet}. */ function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element 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(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint160(uint256(value)))); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. * * _Available since v3.4._ */ function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) { (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key)); return (success, address(uint160(uint256(value)))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key))))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryGet}. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))); } } // File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/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; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. 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] = toDeleteIndex + 1; // All indexes are 1-based // 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) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // 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); } // 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)))); } // 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)); } } // File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/introspection/ERC165.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: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(type(IERC165).interfaceId); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/IERC721Receiver.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; } 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: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/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: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/introspection/IERC165.sol // File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/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 GSN 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // 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; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(type(IERC721).interfaceId); _registerInterface(type(IERC721Metadata).interfaceId); _registerInterface(type(IERC721Enumerable).interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view virtual returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); // internal owner _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(tokenId); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } function _approve(address to, uint256 tokenId) private { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } // File: http://github.com/OpenZeppelin/openzeppelin-contracts/contracts/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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/math/SafeMath.sol pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: astrocryptids_v3.sol pragma solidity ^0.8.0; contract ASTROCRYPTIDS is ERC721, Ownable { using SafeMath for uint256; uint public constant MAX_ASTROCRYPTIDS = 16180; bool public hasSaleStarted = false; // IPFS of all tokens will live here when all Astrocryptids are finalized. Thank you BGAN Punks. string public METADATA_PROVENANCE_HASH = ""; constructor() ERC721("ASTROCRYPTIDS","ASTROCRYPTIDS") { setBaseURI("https://astrocryptids.com/api/test/json/"); // Ciel _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 0); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 1); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 2); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 3); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 4); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 5); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 6); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 7); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 8); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 9); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 10); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 11); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 12); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 13); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 14); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 15); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 16); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 17); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 18); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 19); // Supported Astrocryptids _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 20); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 21); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 22); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 23); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 24); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 25); // Giveaway _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 26); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 27); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 28); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 29); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 30); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 31); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 32); _safeMint(address(0xc4Eab1eAaCbf628F0f9Aee4B7375bDE18dd173C4), 33); } function tokensOfOwner(address _owner) external view returns(uint256[] memory ) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { // Return an empty array return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 index; for (index = 0; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } } function calculatePrice() public view returns (uint256) { require(hasSaleStarted == true, "Sale hasn't started"); require(totalSupply() < MAX_ASTROCRYPTIDS, "Sale has already ended"); uint currentSupply = totalSupply(); if (currentSupply >= 6180) { return 20000000000000000; // 6180 - 16179: 0.02 ETH } else { return 10000000000000000; // 0 - 6179: 0.01 ETH } } function calculatePriceTest(uint _id) public view returns (uint256) { require(_id < MAX_ASTROCRYPTIDS, "Sale has already ended"); if (_id >= 6180) { return 20000000000000000; // 6180 - 16179: 0.02 ETH } else { return 10000000000000000; // 0 - 6179: 0.01 ETH } } function adoptASTROCRYPTID(uint256 numAstrocryptids) public payable { require(totalSupply() < MAX_ASTROCRYPTIDS, "Sale has already ended"); require(numAstrocryptids > 0 && numAstrocryptids <= 25, "You can adopt minimum 1, maximum 25 astrocryptids"); require(totalSupply().add(numAstrocryptids) <= MAX_ASTROCRYPTIDS, "Exceeds MAX_ASTROCRYPTIDS"); require(msg.value >= calculatePrice().mul(numAstrocryptids), "Ether value sent is below the price"); for (uint i = 0; i < numAstrocryptids; i++) { uint mintIndex = totalSupply(); _safeMint(msg.sender, mintIndex); } } // ONLYOWNER FUNCTIONS function setProvenanceHash(string memory _hash) public onlyOwner { METADATA_PROVENANCE_HASH = _hash; } function setBaseURI(string memory baseURI) public onlyOwner { _setBaseURI(baseURI); } function startDrop() public onlyOwner { hasSaleStarted = true; } function pauseDrop() public onlyOwner { hasSaleStarted = false; } function withdrawAll() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ASTROCRYPTIDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numAstrocryptids","type":"uint256"}],"name":"adoptASTROCRYPTID","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calculatePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"calculatePriceTest","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":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"pauseDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526000600a60146101000a81548160ff02191690831515021790555060405180602001604052806000815250600b90805190602001906200004692919062001025565b503480156200005457600080fd5b506040518060400160405280600d81526020017f415354524f4352595054494453000000000000000000000000000000000000008152506040518060400160405280600d81526020017f415354524f435259505449445300000000000000000000000000000000000000815250620000f27f01ffc9a700000000000000000000000000000000000000000000000000000000620007c860201b60201c565b81600690805190602001906200010a92919062001025565b5080600790805190602001906200012392919062001025565b50620001557f80ac58cd00000000000000000000000000000000000000000000000000000000620007c860201b60201c565b620001867f5b5e139f00000000000000000000000000000000000000000000000000000000620007c860201b60201c565b620001b77f780e9d6300000000000000000000000000000000000000000000000000000000620007c860201b60201c565b50506000620001cb620008a060201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200029460405180606001604052806028815260200162005a0160289139620008a860201b60201c565b620002bb73c4eab1eaacbf628f0f9aee4b7375bde18dd173c460006200094b60201b60201c565b620002e273c4eab1eaacbf628f0f9aee4b7375bde18dd173c460016200094b60201b60201c565b6200030973c4eab1eaacbf628f0f9aee4b7375bde18dd173c460026200094b60201b60201c565b6200033073c4eab1eaacbf628f0f9aee4b7375bde18dd173c460036200094b60201b60201c565b6200035773c4eab1eaacbf628f0f9aee4b7375bde18dd173c460046200094b60201b60201c565b6200037e73c4eab1eaacbf628f0f9aee4b7375bde18dd173c460056200094b60201b60201c565b620003a573c4eab1eaacbf628f0f9aee4b7375bde18dd173c460066200094b60201b60201c565b620003cc73c4eab1eaacbf628f0f9aee4b7375bde18dd173c460076200094b60201b60201c565b620003f373c4eab1eaacbf628f0f9aee4b7375bde18dd173c460086200094b60201b60201c565b6200041a73c4eab1eaacbf628f0f9aee4b7375bde18dd173c460096200094b60201b60201c565b6200044173c4eab1eaacbf628f0f9aee4b7375bde18dd173c4600a6200094b60201b60201c565b6200046873c4eab1eaacbf628f0f9aee4b7375bde18dd173c4600b6200094b60201b60201c565b6200048f73c4eab1eaacbf628f0f9aee4b7375bde18dd173c4600c6200094b60201b60201c565b620004b673c4eab1eaacbf628f0f9aee4b7375bde18dd173c4600d6200094b60201b60201c565b620004dd73c4eab1eaacbf628f0f9aee4b7375bde18dd173c4600e6200094b60201b60201c565b6200050473c4eab1eaacbf628f0f9aee4b7375bde18dd173c4600f6200094b60201b60201c565b6200052b73c4eab1eaacbf628f0f9aee4b7375bde18dd173c460106200094b60201b60201c565b6200055273c4eab1eaacbf628f0f9aee4b7375bde18dd173c460116200094b60201b60201c565b6200057973c4eab1eaacbf628f0f9aee4b7375bde18dd173c460126200094b60201b60201c565b620005a073c4eab1eaacbf628f0f9aee4b7375bde18dd173c460136200094b60201b60201c565b620005c773c4eab1eaacbf628f0f9aee4b7375bde18dd173c460146200094b60201b60201c565b620005ee73c4eab1eaacbf628f0f9aee4b7375bde18dd173c460156200094b60201b60201c565b6200061573c4eab1eaacbf628f0f9aee4b7375bde18dd173c460166200094b60201b60201c565b6200063c73c4eab1eaacbf628f0f9aee4b7375bde18dd173c460176200094b60201b60201c565b6200066373c4eab1eaacbf628f0f9aee4b7375bde18dd173c460186200094b60201b60201c565b6200068a73c4eab1eaacbf628f0f9aee4b7375bde18dd173c460196200094b60201b60201c565b620006b173c4eab1eaacbf628f0f9aee4b7375bde18dd173c4601a6200094b60201b60201c565b620006d873c4eab1eaacbf628f0f9aee4b7375bde18dd173c4601b6200094b60201b60201c565b620006ff73c4eab1eaacbf628f0f9aee4b7375bde18dd173c4601c6200094b60201b60201c565b6200072673c4eab1eaacbf628f0f9aee4b7375bde18dd173c4601d6200094b60201b60201c565b6200074d73c4eab1eaacbf628f0f9aee4b7375bde18dd173c4601e6200094b60201b60201c565b6200077473c4eab1eaacbf628f0f9aee4b7375bde18dd173c4601f6200094b60201b60201c565b6200079b73c4eab1eaacbf628f0f9aee4b7375bde18dd173c460206200094b60201b60201c565b620007c273c4eab1eaacbf628f0f9aee4b7375bde18dd173c460216200094b60201b60201c565b620015f6565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000834576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200082b90620012b4565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b620008b8620008a060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008de6200097160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000937576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200092e906200131a565b60405180910390fd5b62000948816200099b60201b60201c565b50565b6200096d828260405180602001604052806000815250620009b760201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8060099080519060200190620009b392919062001025565b5050565b620009c9838362000a2560201b60201c565b620009de600084848462000bd760201b60201c565b62000a20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a179062001292565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a8f90620012f8565b60405180910390fd5b62000aa98162000d9160201b60201c565b1562000aec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ae390620012d6565b60405180910390fd5b62000b006000838362000db560201b60201c565b62000b5881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002062000dba60201b62001c3e1790919060201c565b5062000b768183600262000ddc60201b62001c58179092919060201c565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600062000c058473ffffffffffffffffffffffffffffffffffffffff1662000e1960201b62001c8d1760201c565b1562000d84578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000c37620008a060201b60201c565b8786866040518563ffffffff1660e01b815260040162000c5b94939291906200123e565b602060405180830381600087803b15801562000c7657600080fd5b505af192505050801562000caa57506040513d601f19601f8201168201806040525081019062000ca79190620010ec565b60015b62000d33573d806000811462000cdd576040519150601f19603f3d011682016040523d82523d6000602084013e62000ce2565b606091505b5060008151141562000d2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d229062001292565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000d89565b600190505b949350505050565b600062000dae82600262000e2c60201b62001ca01790919060201c565b9050919050565b505050565b600062000dd4836000018360001b62000e4e60201b60201c565b905092915050565b600062000e10846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b62000ec860201b60201c565b90509392505050565b600080823b905060008111915050919050565b600062000e46836000018360001b62000fdf60201b60201c565b905092915050565b600062000e6283836200100260201b60201c565b62000ebd57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000ec2565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141562000f715784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505062000fd8565b828560000160018362000f85919062001369565b8154811062000fbd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054620010339062001444565b90600052602060002090601f016020900481019282620010575760008555620010a3565b82601f106200107257805160ff1916838001178555620010a3565b82800160010185558215620010a3579182015b82811115620010a257825182559160200191906001019062001085565b5b509050620010b29190620010b6565b5090565b5b80821115620010d1576000816000905550600101620010b7565b5090565b600081519050620010e681620015dc565b92915050565b600060208284031215620010ff57600080fd5b60006200110f84828501620010d5565b91505092915050565b6200112381620013a4565b82525050565b600062001136826200133c565b62001142818562001347565b9350620011548185602086016200140e565b6200115f81620014d8565b840191505092915050565b60006200117960328362001358565b91506200118682620014e9565b604082019050919050565b6000620011a0601c8362001358565b9150620011ad8262001538565b602082019050919050565b6000620011c7601c8362001358565b9150620011d48262001561565b602082019050919050565b6000620011ee60208362001358565b9150620011fb826200158a565b602082019050919050565b60006200121560208362001358565b91506200122282620015b3565b602082019050919050565b620012388162001404565b82525050565b600060808201905062001255600083018762001118565b62001264602083018662001118565b6200127360408301856200122d565b818103606083015262001287818462001129565b905095945050505050565b60006020820190508181036000830152620012ad816200116a565b9050919050565b60006020820190508181036000830152620012cf8162001191565b9050919050565b60006020820190508181036000830152620012f181620011b8565b9050919050565b600060208201905081810360008301526200131381620011df565b9050919050565b60006020820190508181036000830152620013358162001206565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620013768262001404565b9150620013838362001404565b9250828210156200139957620013986200147a565b5b828203905092915050565b6000620013b182620013e4565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200142e57808201518184015260208101905062001411565b838111156200143e576000848401525b50505050565b600060028204905060018216806200145d57607f821691505b60208210811415620014745762001473620014a9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433136353a20696e76616c696420696e7465726661636520696400000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620015e781620013b8565b8114620015f357600080fd5b50565b6143fb80620016066000396000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063d348b40911610064578063d348b409146106c4578063e985e9c5146106ef578063f0c9dc601461072c578063f2fde38b14610757576101e3565b8063a22cb4651461060a578063b88d4fde14610633578063c87b56dd1461065c578063d0e3685514610699576101e3565b80638462151c116100d15780638462151c1461056d578063853828b6146105aa5780638da5cb5b146105b457806395d89b41146105df576101e3565b80636352211e146104b15780636c0360eb146104ee57806370a0823114610519578063715018a614610556576101e3565b80632808c92c1161017a57806343b3bf0c1161014957806343b3bf0c146103f25780634f6ccce71461040e57806350d7c72d1461044b57806355f804b314610488576101e3565b80632808c92c1461035e5780632f745c591461037557806334d84c7b146103b257806342842e0e146103c9576101e3565b806310969523116101b657806310969523146102b657806318160ddd146102df5780631c8b232d1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613030565b610780565b60405161021c91906135f0565b60405180910390f35b34801561023157600080fd5b5061023a6107e7565b604051610247919061360b565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906130c3565b610879565b6040516102849190613567565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612ff4565b6108fe565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190613082565b610a16565b005b3480156102eb57600080fd5b506102f4610aac565b60405161030191906138ed565b60405180910390f35b34801561031657600080fd5b5061031f610abd565b60405161032c91906135f0565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612eee565b610ad0565b005b34801561036a57600080fd5b50610373610b30565b005b34801561038157600080fd5b5061039c60048036038101906103979190612ff4565b610bc9565b6040516103a991906138ed565b60405180910390f35b3480156103be57600080fd5b506103c7610c24565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190612eee565b610cbd565b005b61040c600480360381019061040791906130c3565b610cdd565b005b34801561041a57600080fd5b50610435600480360381019061043091906130c3565b610e6b565b60405161044291906138ed565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d91906130c3565b610e8e565b60405161047f91906138ed565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa9190613082565b610efc565b005b3480156104bd57600080fd5b506104d860048036038101906104d391906130c3565b610f84565b6040516104e59190613567565b60405180910390f35b3480156104fa57600080fd5b50610503610fbb565b604051610510919061360b565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b9190612e89565b61104d565b60405161054d91906138ed565b60405180910390f35b34801561056257600080fd5b5061056b61110c565b005b34801561057957600080fd5b50610594600480360381019061058f9190612e89565b611249565b6040516105a191906135ce565b60405180910390f35b6105b26113c5565b005b3480156105c057600080fd5b506105c9611481565b6040516105d69190613567565b60405180910390f35b3480156105eb57600080fd5b506105f46114ab565b604051610601919061360b565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190612fb8565b61153d565b005b34801561063f57600080fd5b5061065a60048036038101906106559190612f3d565b6116be565b005b34801561066857600080fd5b50610683600480360381019061067e91906130c3565b611720565b604051610690919061360b565b60405180910390f35b3480156106a557600080fd5b506106ae611893565b6040516106bb91906138ed565b60405180910390f35b3480156106d057600080fd5b506106d9611899565b6040516106e691906138ed565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190612eb2565b611970565b60405161072391906135f0565b60405180910390f35b34801561073857600080fd5b50610741611a04565b60405161074e919061360b565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190612e89565b611a92565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600680546107f690613bd6565b80601f016020809104026020016040519081016040528092919081815260200182805461082290613bd6565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b5050505050905090565b600061088482611cba565b6108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba906137cd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090982610f84565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561097a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109719061384d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610999611cd7565b73ffffffffffffffffffffffffffffffffffffffff1614806109c857506109c7816109c2611cd7565b611970565b5b610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe9061370d565b60405180910390fd5b610a118383611cdf565b505050565b610a1e611cd7565b73ffffffffffffffffffffffffffffffffffffffff16610a3c611481565b73ffffffffffffffffffffffffffffffffffffffff1614610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a89906137ed565b60405180910390fd5b80600b9080519060200190610aa8929190612cad565b5050565b6000610ab86002611d98565b905090565b600a60149054906101000a900460ff1681565b610ae1610adb611cd7565b82611dad565b610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b179061388d565b60405180910390fd5b610b2b838383611e8b565b505050565b610b38611cd7565b73ffffffffffffffffffffffffffffffffffffffff16610b56611481565b73ffffffffffffffffffffffffffffffffffffffff1614610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba3906137ed565b60405180910390fd5b6000600a60146101000a81548160ff021916908315150217905550565b6000610c1c82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206120a290919063ffffffff16565b905092915050565b610c2c611cd7565b73ffffffffffffffffffffffffffffffffffffffff16610c4a611481565b73ffffffffffffffffffffffffffffffffffffffff1614610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c97906137ed565b60405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b610cd8838383604051806020016040528060008152506116be565b505050565b613f34610ce8610aac565b10610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f9061386d565b60405180910390fd5b600081118015610d39575060198111155b610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f906137ad565b60405180910390fd5b613f34610d9582610d87610aac565b6120bc90919063ffffffff16565b1115610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd906138ad565b60405180910390fd5b610df081610de2611899565b6120d290919063ffffffff16565b341015610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e299061374d565b60405180910390fd5b60005b81811015610e67576000610e47610aac565b9050610e5333826120e8565b508080610e5f90613c39565b915050610e35565b5050565b600080610e8283600261210690919063ffffffff16565b50905080915050919050565b6000613f348210610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb9061386d565b60405180910390fd5b6118248210610eec5766470de4df8200009050610ef7565b662386f26fc1000090505b919050565b610f04611cd7565b73ffffffffffffffffffffffffffffffffffffffff16610f22611481565b73ffffffffffffffffffffffffffffffffffffffff1614610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f906137ed565b60405180910390fd5b610f8181612132565b50565b6000610fb48260405180606001604052806029815260200161439d60299139600261214c9092919063ffffffff16565b9050919050565b606060098054610fca90613bd6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff690613bd6565b80156110435780601f1061101857610100808354040283529160200191611043565b820191906000526020600020905b81548152906001019060200180831161102657829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b59061372d565b60405180910390fd5b611105600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061216b565b9050919050565b611114611cd7565b73ffffffffffffffffffffffffffffffffffffffff16611132611481565b73ffffffffffffffffffffffffffffffffffffffff1614611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f906137ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006112568361104d565b905060008114156112d957600067ffffffffffffffff8111156112a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112d05781602001602082028036833780820191505090505b509150506113c0565b60008167ffffffffffffffff81111561131b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156113495781602001602082028036833780820191505090505b50905060005b828110156113b9576113618582610bc9565b82828151811061139a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806113b190613c39565b91505061134f565b8193505050505b919050565b6113cd611cd7565b73ffffffffffffffffffffffffffffffffffffffff166113eb611481565b73ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906137ed565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061147f57600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546114ba90613bd6565b80601f01602080910402602001604051908101604052809291908181526020018280546114e690613bd6565b80156115335780601f1061150857610100808354040283529160200191611533565b820191906000526020600020905b81548152906001019060200180831161151657829003601f168201915b5050505050905090565b611545611cd7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa906136cd565b60405180910390fd5b80600560006115c0611cd7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661166d611cd7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b291906135f0565b60405180910390a35050565b6116cf6116c9611cd7565b83611dad565b61170e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117059061388d565b60405180910390fd5b61171a84848484612180565b50505050565b606061172b82611cba565b61176a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117619061382d565b60405180910390fd5b600060086000848152602001908152602001600020805461178a90613bd6565b80601f01602080910402602001604051908101604052809291908181526020018280546117b690613bd6565b80156118035780601f106117d857610100808354040283529160200191611803565b820191906000526020600020905b8154815290600101906020018083116117e657829003601f168201915b505050505090506000611814610fbb565b905060008151141561182a57819250505061188e565b60008251111561185f578082604051602001611847929190613543565b6040516020818303038152906040529250505061188e565b80611869856121dc565b60405160200161187a929190613543565b604051602081830303815290604052925050505b919050565b613f3481565b600060011515600a60149054906101000a900460ff161515146118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e8906138cd565b60405180910390fd5b613f346118fc610aac565b1061193c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119339061386d565b60405180910390fd5b6000611946610aac565b905061182481106119615766470de4df82000091505061196d565b662386f26fc100009150505b90565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b8054611a1190613bd6565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3d90613bd6565b8015611a8a5780601f10611a5f57610100808354040283529160200191611a8a565b820191906000526020600020905b815481529060010190602001808311611a6d57829003601f168201915b505050505081565b611a9a611cd7565b73ffffffffffffffffffffffffffffffffffffffff16611ab8611481565b73ffffffffffffffffffffffffffffffffffffffff1614611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b05906137ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b759061366d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611c50836000018360001b612389565b905092915050565b6000611c84846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6123f9565b90509392505050565b600080823b905060008111915050919050565b6000611cb2836000018360001b61250b565b905092915050565b6000611cd0826002611ca090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d5283610f84565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611da68260000161252e565b9050919050565b6000611db882611cba565b611df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dee906136ed565b60405180910390fd5b6000611e0283610f84565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7157508373ffffffffffffffffffffffffffffffffffffffff16611e5984610879565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e825750611e818185611970565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eab82610f84565b73ffffffffffffffffffffffffffffffffffffffff1614611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef89061380d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f68906136ad565b60405180910390fd5b611f7c83838361253f565b611f87600082611cdf565b611fd881600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061254490919063ffffffff16565b5061202a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611c3e90919063ffffffff16565b5061204181836002611c589092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006120b1836000018361255e565b60001c905092915050565b600081836120ca9190613a0b565b905092915050565b600081836120e09190613a92565b905092915050565b6121028282604051806020016040528060008152506125f8565b5050565b6000806000806121198660000186612653565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612148929190612cad565b5050565b600061215f846000018460001b84612703565b60001c90509392505050565b6000612179826000016127ca565b9050919050565b61218b848484611e8b565b612197848484846127db565b6121d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cd9061364d565b60405180910390fd5b50505050565b60606000821415612224576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612384565b600082905060005b6000821461225657808061223f90613c39565b915050600a8261224f9190613a61565b915061222c565b60008167ffffffffffffffff811115612298577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122ca5781602001600182028036833780820191505090505b5090505b6000851461237d576001826122e39190613aec565b9150600a856122f29190613c82565b60306122fe9190613a0b565b60f81b81838151811061233a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123769190613a61565b94506122ce565b8093505050505b919050565b60006123958383612972565b6123ee5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506123f3565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156124a057846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612504565b82856000016001836124b29190613aec565b815481106124e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b505050565b6000612556836000018360001b612995565b905092915050565b6000818360000180549050116125a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a09061362d565b60405180910390fd5b8260000182815481106125e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b6126028383612b1f565b61260f60008484846127db565b61264e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126459061364d565b60405180910390fd5b505050565b6000808284600001805490501161269f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126969061376d565b60405180910390fd5b60008460000184815481106126dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275c919061360b565b60405180910390fd5b50846000016001826127779190613aec565b815481106127ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006127fc8473ffffffffffffffffffffffffffffffffffffffff16611c8d565b15612965578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612825611cd7565b8786866040518563ffffffff1660e01b81526004016128479493929190613582565b602060405180830381600087803b15801561286157600080fd5b505af192505050801561289257506040513d601f19601f8201168201806040525081019061288f9190613059565b60015b612915573d80600081146128c2576040519150601f19603f3d011682016040523d82523d6000602084013e6128c7565b606091505b5060008151141561290d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129049061364d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061296a565b600190505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612b135760006001826129c79190613aec565b90506000600186600001805490506129df9190613aec565b90506000866000018281548110612a1f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612a69577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550600183612a849190613a0b565b8760010160008381526020019081526020016000208190555086600001805480612ad7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612b19565b60009150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b869061378d565b60405180910390fd5b612b9881611cba565b15612bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcf9061368d565b60405180910390fd5b612be46000838361253f565b612c3581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611c3e90919063ffffffff16565b50612c4c81836002611c589092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612cb990613bd6565b90600052602060002090601f016020900481019282612cdb5760008555612d22565b82601f10612cf457805160ff1916838001178555612d22565b82800160010185558215612d22579182015b82811115612d21578251825591602001919060010190612d06565b5b509050612d2f9190612d33565b5090565b5b80821115612d4c576000816000905550600101612d34565b5090565b6000612d63612d5e8461392d565b613908565b905082815260208101848484011115612d7b57600080fd5b612d86848285613b94565b509392505050565b6000612da1612d9c8461395e565b613908565b905082815260208101848484011115612db957600080fd5b612dc4848285613b94565b509392505050565b600081359050612ddb81614340565b92915050565b600081359050612df081614357565b92915050565b600081359050612e058161436e565b92915050565b600081519050612e1a8161436e565b92915050565b600082601f830112612e3157600080fd5b8135612e41848260208601612d50565b91505092915050565b600082601f830112612e5b57600080fd5b8135612e6b848260208601612d8e565b91505092915050565b600081359050612e8381614385565b92915050565b600060208284031215612e9b57600080fd5b6000612ea984828501612dcc565b91505092915050565b60008060408385031215612ec557600080fd5b6000612ed385828601612dcc565b9250506020612ee485828601612dcc565b9150509250929050565b600080600060608486031215612f0357600080fd5b6000612f1186828701612dcc565b9350506020612f2286828701612dcc565b9250506040612f3386828701612e74565b9150509250925092565b60008060008060808587031215612f5357600080fd5b6000612f6187828801612dcc565b9450506020612f7287828801612dcc565b9350506040612f8387828801612e74565b925050606085013567ffffffffffffffff811115612fa057600080fd5b612fac87828801612e20565b91505092959194509250565b60008060408385031215612fcb57600080fd5b6000612fd985828601612dcc565b9250506020612fea85828601612de1565b9150509250929050565b6000806040838503121561300757600080fd5b600061301585828601612dcc565b925050602061302685828601612e74565b9150509250929050565b60006020828403121561304257600080fd5b600061305084828501612df6565b91505092915050565b60006020828403121561306b57600080fd5b600061307984828501612e0b565b91505092915050565b60006020828403121561309457600080fd5b600082013567ffffffffffffffff8111156130ae57600080fd5b6130ba84828501612e4a565b91505092915050565b6000602082840312156130d557600080fd5b60006130e384828501612e74565b91505092915050565b60006130f88383613525565b60208301905092915050565b61310d81613b20565b82525050565b600061311e8261399f565b61312881856139cd565b93506131338361398f565b8060005b8381101561316457815161314b88826130ec565b9750613156836139c0565b925050600181019050613137565b5085935050505092915050565b61317a81613b32565b82525050565b600061318b826139aa565b61319581856139de565b93506131a5818560208601613ba3565b6131ae81613d6f565b840191505092915050565b60006131c4826139b5565b6131ce81856139ef565b93506131de818560208601613ba3565b6131e781613d6f565b840191505092915050565b60006131fd826139b5565b6132078185613a00565b9350613217818560208601613ba3565b80840191505092915050565b60006132306022836139ef565b915061323b82613d80565b604082019050919050565b60006132536032836139ef565b915061325e82613dcf565b604082019050919050565b60006132766026836139ef565b915061328182613e1e565b604082019050919050565b6000613299601c836139ef565b91506132a482613e6d565b602082019050919050565b60006132bc6024836139ef565b91506132c782613e96565b604082019050919050565b60006132df6019836139ef565b91506132ea82613ee5565b602082019050919050565b6000613302602c836139ef565b915061330d82613f0e565b604082019050919050565b60006133256038836139ef565b915061333082613f5d565b604082019050919050565b6000613348602a836139ef565b915061335382613fac565b604082019050919050565b600061336b6023836139ef565b915061337682613ffb565b604082019050919050565b600061338e6022836139ef565b91506133998261404a565b604082019050919050565b60006133b16020836139ef565b91506133bc82614099565b602082019050919050565b60006133d46031836139ef565b91506133df826140c2565b604082019050919050565b60006133f7602c836139ef565b915061340282614111565b604082019050919050565b600061341a6020836139ef565b915061342582614160565b602082019050919050565b600061343d6029836139ef565b915061344882614189565b604082019050919050565b6000613460602f836139ef565b915061346b826141d8565b604082019050919050565b60006134836021836139ef565b915061348e82614227565b604082019050919050565b60006134a66016836139ef565b91506134b182614276565b602082019050919050565b60006134c96031836139ef565b91506134d48261429f565b604082019050919050565b60006134ec6019836139ef565b91506134f7826142ee565b602082019050919050565b600061350f6013836139ef565b915061351a82614317565b602082019050919050565b61352e81613b8a565b82525050565b61353d81613b8a565b82525050565b600061354f82856131f2565b915061355b82846131f2565b91508190509392505050565b600060208201905061357c6000830184613104565b92915050565b60006080820190506135976000830187613104565b6135a46020830186613104565b6135b16040830185613534565b81810360608301526135c38184613180565b905095945050505050565b600060208201905081810360008301526135e88184613113565b905092915050565b60006020820190506136056000830184613171565b92915050565b6000602082019050818103600083015261362581846131b9565b905092915050565b6000602082019050818103600083015261364681613223565b9050919050565b6000602082019050818103600083015261366681613246565b9050919050565b6000602082019050818103600083015261368681613269565b9050919050565b600060208201905081810360008301526136a68161328c565b9050919050565b600060208201905081810360008301526136c6816132af565b9050919050565b600060208201905081810360008301526136e6816132d2565b9050919050565b60006020820190508181036000830152613706816132f5565b9050919050565b6000602082019050818103600083015261372681613318565b9050919050565b600060208201905081810360008301526137468161333b565b9050919050565b600060208201905081810360008301526137668161335e565b9050919050565b6000602082019050818103600083015261378681613381565b9050919050565b600060208201905081810360008301526137a6816133a4565b9050919050565b600060208201905081810360008301526137c6816133c7565b9050919050565b600060208201905081810360008301526137e6816133ea565b9050919050565b600060208201905081810360008301526138068161340d565b9050919050565b6000602082019050818103600083015261382681613430565b9050919050565b6000602082019050818103600083015261384681613453565b9050919050565b6000602082019050818103600083015261386681613476565b9050919050565b6000602082019050818103600083015261388681613499565b9050919050565b600060208201905081810360008301526138a6816134bc565b9050919050565b600060208201905081810360008301526138c6816134df565b9050919050565b600060208201905081810360008301526138e681613502565b9050919050565b60006020820190506139026000830184613534565b92915050565b6000613912613923565b905061391e8282613c08565b919050565b6000604051905090565b600067ffffffffffffffff82111561394857613947613d40565b5b61395182613d6f565b9050602081019050919050565b600067ffffffffffffffff82111561397957613978613d40565b5b61398282613d6f565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a1682613b8a565b9150613a2183613b8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a5657613a55613cb3565b5b828201905092915050565b6000613a6c82613b8a565b9150613a7783613b8a565b925082613a8757613a86613ce2565b5b828204905092915050565b6000613a9d82613b8a565b9150613aa883613b8a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ae157613ae0613cb3565b5b828202905092915050565b6000613af782613b8a565b9150613b0283613b8a565b925082821015613b1557613b14613cb3565b5b828203905092915050565b6000613b2b82613b6a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613bc1578082015181840152602081019050613ba6565b83811115613bd0576000848401525b50505050565b60006002820490506001821680613bee57607f821691505b60208210811415613c0257613c01613d11565b5b50919050565b613c1182613d6f565b810181811067ffffffffffffffff82111715613c3057613c2f613d40565b5b80604052505050565b6000613c4482613b8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c7757613c76613cb3565b5b600182019050919050565b6000613c8d82613b8a565b9150613c9883613b8a565b925082613ca857613ca7613ce2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f752063616e2061646f7074206d696e696d756d20312c206d6178696d756d60008201527f20323520617374726f6372797074696473000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920656e64656400000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473204d41585f415354524f435259505449445300000000000000600082015250565b7f53616c65206861736e2774207374617274656400000000000000000000000000600082015250565b61434981613b20565b811461435457600080fd5b50565b61436081613b32565b811461436b57600080fd5b50565b61437781613b3e565b811461438257600080fd5b50565b61438e81613b8a565b811461439957600080fd5b5056fe4552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122078e447c0cd16c3266eb36916fb0d0807eac0f9bc1b4698daa0fa970132af832464736f6c6343000801003368747470733a2f2f617374726f63727970746964732e636f6d2f6170692f746573742f6a736f6e2f
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063d348b40911610064578063d348b409146106c4578063e985e9c5146106ef578063f0c9dc601461072c578063f2fde38b14610757576101e3565b8063a22cb4651461060a578063b88d4fde14610633578063c87b56dd1461065c578063d0e3685514610699576101e3565b80638462151c116100d15780638462151c1461056d578063853828b6146105aa5780638da5cb5b146105b457806395d89b41146105df576101e3565b80636352211e146104b15780636c0360eb146104ee57806370a0823114610519578063715018a614610556576101e3565b80632808c92c1161017a57806343b3bf0c1161014957806343b3bf0c146103f25780634f6ccce71461040e57806350d7c72d1461044b57806355f804b314610488576101e3565b80632808c92c1461035e5780632f745c591461037557806334d84c7b146103b257806342842e0e146103c9576101e3565b806310969523116101b657806310969523146102b657806318160ddd146102df5780631c8b232d1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613030565b610780565b60405161021c91906135f0565b60405180910390f35b34801561023157600080fd5b5061023a6107e7565b604051610247919061360b565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906130c3565b610879565b6040516102849190613567565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612ff4565b6108fe565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190613082565b610a16565b005b3480156102eb57600080fd5b506102f4610aac565b60405161030191906138ed565b60405180910390f35b34801561031657600080fd5b5061031f610abd565b60405161032c91906135f0565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612eee565b610ad0565b005b34801561036a57600080fd5b50610373610b30565b005b34801561038157600080fd5b5061039c60048036038101906103979190612ff4565b610bc9565b6040516103a991906138ed565b60405180910390f35b3480156103be57600080fd5b506103c7610c24565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190612eee565b610cbd565b005b61040c600480360381019061040791906130c3565b610cdd565b005b34801561041a57600080fd5b50610435600480360381019061043091906130c3565b610e6b565b60405161044291906138ed565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d91906130c3565b610e8e565b60405161047f91906138ed565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa9190613082565b610efc565b005b3480156104bd57600080fd5b506104d860048036038101906104d391906130c3565b610f84565b6040516104e59190613567565b60405180910390f35b3480156104fa57600080fd5b50610503610fbb565b604051610510919061360b565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b9190612e89565b61104d565b60405161054d91906138ed565b60405180910390f35b34801561056257600080fd5b5061056b61110c565b005b34801561057957600080fd5b50610594600480360381019061058f9190612e89565b611249565b6040516105a191906135ce565b60405180910390f35b6105b26113c5565b005b3480156105c057600080fd5b506105c9611481565b6040516105d69190613567565b60405180910390f35b3480156105eb57600080fd5b506105f46114ab565b604051610601919061360b565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190612fb8565b61153d565b005b34801561063f57600080fd5b5061065a60048036038101906106559190612f3d565b6116be565b005b34801561066857600080fd5b50610683600480360381019061067e91906130c3565b611720565b604051610690919061360b565b60405180910390f35b3480156106a557600080fd5b506106ae611893565b6040516106bb91906138ed565b60405180910390f35b3480156106d057600080fd5b506106d9611899565b6040516106e691906138ed565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190612eb2565b611970565b60405161072391906135f0565b60405180910390f35b34801561073857600080fd5b50610741611a04565b60405161074e919061360b565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190612e89565b611a92565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600680546107f690613bd6565b80601f016020809104026020016040519081016040528092919081815260200182805461082290613bd6565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b5050505050905090565b600061088482611cba565b6108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba906137cd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090982610f84565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561097a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109719061384d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610999611cd7565b73ffffffffffffffffffffffffffffffffffffffff1614806109c857506109c7816109c2611cd7565b611970565b5b610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe9061370d565b60405180910390fd5b610a118383611cdf565b505050565b610a1e611cd7565b73ffffffffffffffffffffffffffffffffffffffff16610a3c611481565b73ffffffffffffffffffffffffffffffffffffffff1614610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a89906137ed565b60405180910390fd5b80600b9080519060200190610aa8929190612cad565b5050565b6000610ab86002611d98565b905090565b600a60149054906101000a900460ff1681565b610ae1610adb611cd7565b82611dad565b610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b179061388d565b60405180910390fd5b610b2b838383611e8b565b505050565b610b38611cd7565b73ffffffffffffffffffffffffffffffffffffffff16610b56611481565b73ffffffffffffffffffffffffffffffffffffffff1614610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba3906137ed565b60405180910390fd5b6000600a60146101000a81548160ff021916908315150217905550565b6000610c1c82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206120a290919063ffffffff16565b905092915050565b610c2c611cd7565b73ffffffffffffffffffffffffffffffffffffffff16610c4a611481565b73ffffffffffffffffffffffffffffffffffffffff1614610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c97906137ed565b60405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b610cd8838383604051806020016040528060008152506116be565b505050565b613f34610ce8610aac565b10610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f9061386d565b60405180910390fd5b600081118015610d39575060198111155b610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f906137ad565b60405180910390fd5b613f34610d9582610d87610aac565b6120bc90919063ffffffff16565b1115610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd906138ad565b60405180910390fd5b610df081610de2611899565b6120d290919063ffffffff16565b341015610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e299061374d565b60405180910390fd5b60005b81811015610e67576000610e47610aac565b9050610e5333826120e8565b508080610e5f90613c39565b915050610e35565b5050565b600080610e8283600261210690919063ffffffff16565b50905080915050919050565b6000613f348210610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb9061386d565b60405180910390fd5b6118248210610eec5766470de4df8200009050610ef7565b662386f26fc1000090505b919050565b610f04611cd7565b73ffffffffffffffffffffffffffffffffffffffff16610f22611481565b73ffffffffffffffffffffffffffffffffffffffff1614610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f906137ed565b60405180910390fd5b610f8181612132565b50565b6000610fb48260405180606001604052806029815260200161439d60299139600261214c9092919063ffffffff16565b9050919050565b606060098054610fca90613bd6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff690613bd6565b80156110435780601f1061101857610100808354040283529160200191611043565b820191906000526020600020905b81548152906001019060200180831161102657829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b59061372d565b60405180910390fd5b611105600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061216b565b9050919050565b611114611cd7565b73ffffffffffffffffffffffffffffffffffffffff16611132611481565b73ffffffffffffffffffffffffffffffffffffffff1614611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f906137ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006112568361104d565b905060008114156112d957600067ffffffffffffffff8111156112a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112d05781602001602082028036833780820191505090505b509150506113c0565b60008167ffffffffffffffff81111561131b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156113495781602001602082028036833780820191505090505b50905060005b828110156113b9576113618582610bc9565b82828151811061139a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806113b190613c39565b91505061134f565b8193505050505b919050565b6113cd611cd7565b73ffffffffffffffffffffffffffffffffffffffff166113eb611481565b73ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906137ed565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061147f57600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546114ba90613bd6565b80601f01602080910402602001604051908101604052809291908181526020018280546114e690613bd6565b80156115335780601f1061150857610100808354040283529160200191611533565b820191906000526020600020905b81548152906001019060200180831161151657829003601f168201915b5050505050905090565b611545611cd7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa906136cd565b60405180910390fd5b80600560006115c0611cd7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661166d611cd7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b291906135f0565b60405180910390a35050565b6116cf6116c9611cd7565b83611dad565b61170e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117059061388d565b60405180910390fd5b61171a84848484612180565b50505050565b606061172b82611cba565b61176a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117619061382d565b60405180910390fd5b600060086000848152602001908152602001600020805461178a90613bd6565b80601f01602080910402602001604051908101604052809291908181526020018280546117b690613bd6565b80156118035780601f106117d857610100808354040283529160200191611803565b820191906000526020600020905b8154815290600101906020018083116117e657829003601f168201915b505050505090506000611814610fbb565b905060008151141561182a57819250505061188e565b60008251111561185f578082604051602001611847929190613543565b6040516020818303038152906040529250505061188e565b80611869856121dc565b60405160200161187a929190613543565b604051602081830303815290604052925050505b919050565b613f3481565b600060011515600a60149054906101000a900460ff161515146118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e8906138cd565b60405180910390fd5b613f346118fc610aac565b1061193c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119339061386d565b60405180910390fd5b6000611946610aac565b905061182481106119615766470de4df82000091505061196d565b662386f26fc100009150505b90565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b8054611a1190613bd6565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3d90613bd6565b8015611a8a5780601f10611a5f57610100808354040283529160200191611a8a565b820191906000526020600020905b815481529060010190602001808311611a6d57829003601f168201915b505050505081565b611a9a611cd7565b73ffffffffffffffffffffffffffffffffffffffff16611ab8611481565b73ffffffffffffffffffffffffffffffffffffffff1614611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b05906137ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b759061366d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611c50836000018360001b612389565b905092915050565b6000611c84846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6123f9565b90509392505050565b600080823b905060008111915050919050565b6000611cb2836000018360001b61250b565b905092915050565b6000611cd0826002611ca090919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d5283610f84565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611da68260000161252e565b9050919050565b6000611db882611cba565b611df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dee906136ed565b60405180910390fd5b6000611e0283610f84565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7157508373ffffffffffffffffffffffffffffffffffffffff16611e5984610879565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e825750611e818185611970565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eab82610f84565b73ffffffffffffffffffffffffffffffffffffffff1614611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef89061380d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f68906136ad565b60405180910390fd5b611f7c83838361253f565b611f87600082611cdf565b611fd881600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061254490919063ffffffff16565b5061202a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611c3e90919063ffffffff16565b5061204181836002611c589092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006120b1836000018361255e565b60001c905092915050565b600081836120ca9190613a0b565b905092915050565b600081836120e09190613a92565b905092915050565b6121028282604051806020016040528060008152506125f8565b5050565b6000806000806121198660000186612653565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612148929190612cad565b5050565b600061215f846000018460001b84612703565b60001c90509392505050565b6000612179826000016127ca565b9050919050565b61218b848484611e8b565b612197848484846127db565b6121d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cd9061364d565b60405180910390fd5b50505050565b60606000821415612224576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612384565b600082905060005b6000821461225657808061223f90613c39565b915050600a8261224f9190613a61565b915061222c565b60008167ffffffffffffffff811115612298577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122ca5781602001600182028036833780820191505090505b5090505b6000851461237d576001826122e39190613aec565b9150600a856122f29190613c82565b60306122fe9190613a0b565b60f81b81838151811061233a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123769190613a61565b94506122ce565b8093505050505b919050565b60006123958383612972565b6123ee5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506123f3565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156124a057846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612504565b82856000016001836124b29190613aec565b815481106124e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b505050565b6000612556836000018360001b612995565b905092915050565b6000818360000180549050116125a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a09061362d565b60405180910390fd5b8260000182815481106125e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b6126028383612b1f565b61260f60008484846127db565b61264e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126459061364d565b60405180910390fd5b505050565b6000808284600001805490501161269f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126969061376d565b60405180910390fd5b60008460000184815481106126dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275c919061360b565b60405180910390fd5b50846000016001826127779190613aec565b815481106127ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006127fc8473ffffffffffffffffffffffffffffffffffffffff16611c8d565b15612965578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612825611cd7565b8786866040518563ffffffff1660e01b81526004016128479493929190613582565b602060405180830381600087803b15801561286157600080fd5b505af192505050801561289257506040513d601f19601f8201168201806040525081019061288f9190613059565b60015b612915573d80600081146128c2576040519150601f19603f3d011682016040523d82523d6000602084013e6128c7565b606091505b5060008151141561290d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129049061364d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061296a565b600190505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612b135760006001826129c79190613aec565b90506000600186600001805490506129df9190613aec565b90506000866000018281548110612a1f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612a69577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550600183612a849190613a0b565b8760010160008381526020019081526020016000208190555086600001805480612ad7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612b19565b60009150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b869061378d565b60405180910390fd5b612b9881611cba565b15612bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcf9061368d565b60405180910390fd5b612be46000838361253f565b612c3581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611c3e90919063ffffffff16565b50612c4c81836002611c589092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612cb990613bd6565b90600052602060002090601f016020900481019282612cdb5760008555612d22565b82601f10612cf457805160ff1916838001178555612d22565b82800160010185558215612d22579182015b82811115612d21578251825591602001919060010190612d06565b5b509050612d2f9190612d33565b5090565b5b80821115612d4c576000816000905550600101612d34565b5090565b6000612d63612d5e8461392d565b613908565b905082815260208101848484011115612d7b57600080fd5b612d86848285613b94565b509392505050565b6000612da1612d9c8461395e565b613908565b905082815260208101848484011115612db957600080fd5b612dc4848285613b94565b509392505050565b600081359050612ddb81614340565b92915050565b600081359050612df081614357565b92915050565b600081359050612e058161436e565b92915050565b600081519050612e1a8161436e565b92915050565b600082601f830112612e3157600080fd5b8135612e41848260208601612d50565b91505092915050565b600082601f830112612e5b57600080fd5b8135612e6b848260208601612d8e565b91505092915050565b600081359050612e8381614385565b92915050565b600060208284031215612e9b57600080fd5b6000612ea984828501612dcc565b91505092915050565b60008060408385031215612ec557600080fd5b6000612ed385828601612dcc565b9250506020612ee485828601612dcc565b9150509250929050565b600080600060608486031215612f0357600080fd5b6000612f1186828701612dcc565b9350506020612f2286828701612dcc565b9250506040612f3386828701612e74565b9150509250925092565b60008060008060808587031215612f5357600080fd5b6000612f6187828801612dcc565b9450506020612f7287828801612dcc565b9350506040612f8387828801612e74565b925050606085013567ffffffffffffffff811115612fa057600080fd5b612fac87828801612e20565b91505092959194509250565b60008060408385031215612fcb57600080fd5b6000612fd985828601612dcc565b9250506020612fea85828601612de1565b9150509250929050565b6000806040838503121561300757600080fd5b600061301585828601612dcc565b925050602061302685828601612e74565b9150509250929050565b60006020828403121561304257600080fd5b600061305084828501612df6565b91505092915050565b60006020828403121561306b57600080fd5b600061307984828501612e0b565b91505092915050565b60006020828403121561309457600080fd5b600082013567ffffffffffffffff8111156130ae57600080fd5b6130ba84828501612e4a565b91505092915050565b6000602082840312156130d557600080fd5b60006130e384828501612e74565b91505092915050565b60006130f88383613525565b60208301905092915050565b61310d81613b20565b82525050565b600061311e8261399f565b61312881856139cd565b93506131338361398f565b8060005b8381101561316457815161314b88826130ec565b9750613156836139c0565b925050600181019050613137565b5085935050505092915050565b61317a81613b32565b82525050565b600061318b826139aa565b61319581856139de565b93506131a5818560208601613ba3565b6131ae81613d6f565b840191505092915050565b60006131c4826139b5565b6131ce81856139ef565b93506131de818560208601613ba3565b6131e781613d6f565b840191505092915050565b60006131fd826139b5565b6132078185613a00565b9350613217818560208601613ba3565b80840191505092915050565b60006132306022836139ef565b915061323b82613d80565b604082019050919050565b60006132536032836139ef565b915061325e82613dcf565b604082019050919050565b60006132766026836139ef565b915061328182613e1e565b604082019050919050565b6000613299601c836139ef565b91506132a482613e6d565b602082019050919050565b60006132bc6024836139ef565b91506132c782613e96565b604082019050919050565b60006132df6019836139ef565b91506132ea82613ee5565b602082019050919050565b6000613302602c836139ef565b915061330d82613f0e565b604082019050919050565b60006133256038836139ef565b915061333082613f5d565b604082019050919050565b6000613348602a836139ef565b915061335382613fac565b604082019050919050565b600061336b6023836139ef565b915061337682613ffb565b604082019050919050565b600061338e6022836139ef565b91506133998261404a565b604082019050919050565b60006133b16020836139ef565b91506133bc82614099565b602082019050919050565b60006133d46031836139ef565b91506133df826140c2565b604082019050919050565b60006133f7602c836139ef565b915061340282614111565b604082019050919050565b600061341a6020836139ef565b915061342582614160565b602082019050919050565b600061343d6029836139ef565b915061344882614189565b604082019050919050565b6000613460602f836139ef565b915061346b826141d8565b604082019050919050565b60006134836021836139ef565b915061348e82614227565b604082019050919050565b60006134a66016836139ef565b91506134b182614276565b602082019050919050565b60006134c96031836139ef565b91506134d48261429f565b604082019050919050565b60006134ec6019836139ef565b91506134f7826142ee565b602082019050919050565b600061350f6013836139ef565b915061351a82614317565b602082019050919050565b61352e81613b8a565b82525050565b61353d81613b8a565b82525050565b600061354f82856131f2565b915061355b82846131f2565b91508190509392505050565b600060208201905061357c6000830184613104565b92915050565b60006080820190506135976000830187613104565b6135a46020830186613104565b6135b16040830185613534565b81810360608301526135c38184613180565b905095945050505050565b600060208201905081810360008301526135e88184613113565b905092915050565b60006020820190506136056000830184613171565b92915050565b6000602082019050818103600083015261362581846131b9565b905092915050565b6000602082019050818103600083015261364681613223565b9050919050565b6000602082019050818103600083015261366681613246565b9050919050565b6000602082019050818103600083015261368681613269565b9050919050565b600060208201905081810360008301526136a68161328c565b9050919050565b600060208201905081810360008301526136c6816132af565b9050919050565b600060208201905081810360008301526136e6816132d2565b9050919050565b60006020820190508181036000830152613706816132f5565b9050919050565b6000602082019050818103600083015261372681613318565b9050919050565b600060208201905081810360008301526137468161333b565b9050919050565b600060208201905081810360008301526137668161335e565b9050919050565b6000602082019050818103600083015261378681613381565b9050919050565b600060208201905081810360008301526137a6816133a4565b9050919050565b600060208201905081810360008301526137c6816133c7565b9050919050565b600060208201905081810360008301526137e6816133ea565b9050919050565b600060208201905081810360008301526138068161340d565b9050919050565b6000602082019050818103600083015261382681613430565b9050919050565b6000602082019050818103600083015261384681613453565b9050919050565b6000602082019050818103600083015261386681613476565b9050919050565b6000602082019050818103600083015261388681613499565b9050919050565b600060208201905081810360008301526138a6816134bc565b9050919050565b600060208201905081810360008301526138c6816134df565b9050919050565b600060208201905081810360008301526138e681613502565b9050919050565b60006020820190506139026000830184613534565b92915050565b6000613912613923565b905061391e8282613c08565b919050565b6000604051905090565b600067ffffffffffffffff82111561394857613947613d40565b5b61395182613d6f565b9050602081019050919050565b600067ffffffffffffffff82111561397957613978613d40565b5b61398282613d6f565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a1682613b8a565b9150613a2183613b8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a5657613a55613cb3565b5b828201905092915050565b6000613a6c82613b8a565b9150613a7783613b8a565b925082613a8757613a86613ce2565b5b828204905092915050565b6000613a9d82613b8a565b9150613aa883613b8a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ae157613ae0613cb3565b5b828202905092915050565b6000613af782613b8a565b9150613b0283613b8a565b925082821015613b1557613b14613cb3565b5b828203905092915050565b6000613b2b82613b6a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613bc1578082015181840152602081019050613ba6565b83811115613bd0576000848401525b50505050565b60006002820490506001821680613bee57607f821691505b60208210811415613c0257613c01613d11565b5b50919050565b613c1182613d6f565b810181811067ffffffffffffffff82111715613c3057613c2f613d40565b5b80604052505050565b6000613c4482613b8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c7757613c76613cb3565b5b600182019050919050565b6000613c8d82613b8a565b9150613c9883613b8a565b925082613ca857613ca7613ce2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f752063616e2061646f7074206d696e696d756d20312c206d6178696d756d60008201527f20323520617374726f6372797074696473000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920656e64656400000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473204d41585f415354524f435259505449445300000000000000600082015250565b7f53616c65206861736e2774207374617274656400000000000000000000000000600082015250565b61434981613b20565b811461435457600080fd5b50565b61436081613b32565b811461436b57600080fd5b50565b61437781613b3e565b811461438257600080fd5b50565b61438e81613b8a565b811461439957600080fd5b5056fe4552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122078e447c0cd16c3266eb36916fb0d0807eac0f9bc1b4698daa0fa970132af832464736f6c63430008010033
Deployed Bytecode Sourcemap
66177:5852:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31875:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43563:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46349:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45879:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71473:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45357:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66312:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47239:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71796:79;;;;;;;;;;;;;:::i;:::-;;45119:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71712:78;;;;;;;;;;;;;:::i;:::-;;47615:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70776:651;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45645:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70421:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71601:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43319:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44938:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43024:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58422:148;;;;;;;;;;;;;:::i;:::-;;69396:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71893:123;;;:::i;:::-;;57771:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43732:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46642:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47837:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43907:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66259:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69948:460;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47008:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66461:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58725:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31875:150;31960:4;31984:20;:33;32005:11;31984:33;;;;;;;;;;;;;;;;;;;;;;;;;;;31977:40;;31875:150;;;:::o;43563:100::-;43617:13;43650:5;43643:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43563:100;:::o;46349:221::-;46425:7;46453:16;46461:7;46453;:16::i;:::-;46445:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46538:15;:24;46554:7;46538:24;;;;;;;;;;;;;;;;;;;;;46531:31;;46349:221;;;:::o;45879:404::-;45960:13;45976:23;45991:7;45976:14;:23::i;:::-;45960:39;;46024:5;46018:11;;:2;:11;;;;46010:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46104:5;46088:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;46113:44;46137:5;46144:12;:10;:12::i;:::-;46113:23;:44::i;:::-;46088:69;46080:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;46254:21;46263:2;46267:7;46254:8;:21::i;:::-;45879:404;;;:::o;71473:116::-;58002:12;:10;:12::i;:::-;57991:23;;:7;:5;:7::i;:::-;:23;;;57983:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71576:5:::1;71549:24;:32;;;;;;;;;;;;:::i;:::-;;71473:116:::0;:::o;45357:211::-;45418:7;45539:21;:12;:19;:21::i;:::-;45532:28;;45357:211;:::o;66312:34::-;;;;;;;;;;;;;:::o;47239:305::-;47400:41;47419:12;:10;:12::i;:::-;47433:7;47400:18;:41::i;:::-;47392:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;47508:28;47518:4;47524:2;47528:7;47508:9;:28::i;:::-;47239:305;;;:::o;71796:79::-;58002:12;:10;:12::i;:::-;57991:23;;:7;:5;:7::i;:::-;:23;;;57983:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71862:5:::1;71845:14;;:22;;;;;;;;;;;;;;;;;;71796:79::o:0;45119:162::-;45216:7;45243:30;45267:5;45243:13;:20;45257:5;45243:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;45236:37;;45119:162;;;;:::o;71712:78::-;58002:12;:10;:12::i;:::-;57991:23;;:7;:5;:7::i;:::-;:23;;;57983:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71778:4:::1;71761:14;;:21;;;;;;;;;;;;;;;;;;71712:78::o:0;47615:151::-;47719:39;47736:4;47742:2;47746:7;47719:39;;;;;;;;;;;;:16;:39::i;:::-;47615:151;;;:::o;70776:651::-;66300:5;70863:13;:11;:13::i;:::-;:33;70855:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70961:1;70942:16;:20;:46;;;;;70986:2;70966:16;:22;;70942:46;70934:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;66300:5;71061:35;71079:16;71061:13;:11;:13::i;:::-;:17;;:35;;;;:::i;:::-;:56;;71053:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;71179:38;71200:16;71179;:14;:16::i;:::-;:20;;:38;;;;:::i;:::-;71166:9;:51;;71158:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;71275:6;71270:148;71291:16;71287:1;:20;71270:148;;;71329:14;71346:13;:11;:13::i;:::-;71329:30;;71374:32;71384:10;71396:9;71374;:32::i;:::-;71270:148;71309:3;;;;;:::i;:::-;;;;71270:148;;;;70776:651;:::o;45645:172::-;45720:7;45741:15;45762:22;45778:5;45762:12;:15;;:22;;;;:::i;:::-;45740:44;;;45802:7;45795:14;;;45645:172;;;:::o;70421:344::-;70480:7;66300:5;70512:3;:23;70504:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;70586:4;70579:3;:11;70575:173;;70614:17;70607:24;;;;70575:173;70697:17;70690:24;;70421:344;;;;:::o;71601:99::-;58002:12;:10;:12::i;:::-;57991:23;;:7;:5;:7::i;:::-;:23;;;57983:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71672:20:::1;71684:7;71672:11;:20::i;:::-;71601:99:::0;:::o;43319:177::-;43391:7;43418:70;43435:7;43418:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;43411:77;;43319:177;;;:::o;44938:97::-;44986:13;45019:8;45012:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44938:97;:::o;43024:221::-;43096:7;43141:1;43124:19;;:5;:19;;;;43116:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;43208:29;:13;:20;43222:5;43208:20;;;;;;;;;;;;;;;:27;:29::i;:::-;43201:36;;43024:221;;;:::o;58422:148::-;58002:12;:10;:12::i;:::-;57991:23;;:7;:5;:7::i;:::-;:23;;;57983:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58529:1:::1;58492:40;;58513:6;;;;;;;;;;;58492:40;;;;;;;;;;;;58560:1;58543:6;;:19;;;;;;;;;;;;;;;;;;58422:148::o:0;69396:540::-;69457:16;69487:18;69508:17;69518:6;69508:9;:17::i;:::-;69487:38;;69554:1;69540:10;:15;69536:393;;;69631:1;69617:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69610:23;;;;;69536:393;69666:23;69706:10;69692:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69666:51;;69732:13;69760:130;69784:10;69776:5;:18;69760:130;;;69840:34;69860:6;69868:5;69840:19;:34::i;:::-;69824:6;69831:5;69824:13;;;;;;;;;;;;;;;;;;;;;:50;;;;;69796:7;;;;;:::i;:::-;;;;69760:130;;;69911:6;69904:13;;;;;69396:540;;;;:::o;71893:123::-;58002:12;:10;:12::i;:::-;57991:23;;:7;:5;:7::i;:::-;:23;;;57983:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71968:10:::1;71960:24;;:47;71985:21;71960:47;;;;;;;;;;;;;;;;;;;;;;;71952:56;;;::::0;::::1;;71893:123::o:0;57771:87::-;57817:7;57844:6;;;;;;;;;;;57837:13;;57771:87;:::o;43732:104::-;43788:13;43821:7;43814:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43732:104;:::o;46642:295::-;46757:12;:10;:12::i;:::-;46745:24;;:8;:24;;;;46737:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;46857:8;46812:18;:32;46831:12;:10;:12::i;:::-;46812:32;;;;;;;;;;;;;;;:42;46845:8;46812:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46910:8;46881:48;;46896:12;:10;:12::i;:::-;46881:48;;;46920:8;46881:48;;;;;;:::i;:::-;;;;;;;;46642:295;;:::o;47837:285::-;47969:41;47988:12;:10;:12::i;:::-;48002:7;47969:18;:41::i;:::-;47961:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;48075:39;48089:4;48095:2;48099:7;48108:5;48075:13;:39::i;:::-;47837:285;;;;:::o;43907:792::-;43980:13;44014:16;44022:7;44014;:16::i;:::-;44006:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44095:23;44121:10;:19;44132:7;44121:19;;;;;;;;;;;44095:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44151:18;44172:9;:7;:9::i;:::-;44151:30;;44279:1;44263:4;44257:18;:23;44253:72;;;44304:9;44297:16;;;;;;44253:72;44455:1;44435:9;44429:23;:27;44425:108;;;44504:4;44510:9;44487:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44473:48;;;;;;44425:108;44665:4;44671:18;:7;:16;:18::i;:::-;44648:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44634:57;;;;43907:792;;;;:::o;66259:46::-;66300:5;66259:46;:::o;69948:460::-;69995:7;70041:4;70023:22;;:14;;;;;;;;;;;:22;;;70015:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;66300:5;70090:13;:11;:13::i;:::-;:33;70082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70163:18;70184:13;:11;:13::i;:::-;70163:34;;70229:4;70212:13;:21;70208:183;;70257:17;70250:24;;;;;70208:183;70340:17;70333:24;;;69948:460;;:::o;47008:164::-;47105:4;47129:18;:25;47148:5;47129:25;;;;;;;;;;;;;;;:35;47155:8;47129:35;;;;;;;;;;;;;;;;;;;;;;;;;47122:42;;47008:164;;;;:::o;66461:43::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58725:244::-;58002:12;:10;:12::i;:::-;57991:23;;:7;:5;:7::i;:::-;:23;;;57983:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58834:1:::1;58814:22;;:8;:22;;;;58806:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58924:8;58895:38;;58916:6;;;;;;;;;;;58895:38;;;;;;;;;;;;58953:8;58944:6;;:17;;;;;;;;;;;;;;;;;;58725:244:::0;:::o;20686:131::-;20753:4;20777:32;20782:3;:10;;20802:5;20794:14;;20777:4;:32::i;:::-;20770:39;;20686:131;;;;:::o;9516:185::-;9605:4;9629:64;9634:3;:10;;9654:3;9646:12;;9684:5;9668:23;;9660:32;;9629:4;:64::i;:::-;9622:71;;9516:185;;;;;:::o;22858:422::-;22918:4;23126:12;23237:7;23225:20;23217:28;;23271:1;23264:4;:8;23257:15;;;22858:422;;;:::o;10093:151::-;10177:4;10201:35;10211:3;:10;;10231:3;10223:12;;10201:9;:35::i;:::-;10194:42;;10093:151;;;;:::o;49589:127::-;49654:4;49678:30;49700:7;49678:12;:21;;:30;;;;:::i;:::-;49671:37;;49589:127;;;:::o;40806:98::-;40859:7;40886:10;40879:17;;40806:98;:::o;55735:183::-;55828:2;55801:15;:24;55817:7;55801:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;55884:7;55880:2;55846:46;;55855:23;55870:7;55855:14;:23::i;:::-;55846:46;;;;;;;;;;;;55735:183;;:::o;10332:123::-;10401:7;10428:19;10436:3;:10;;10428:7;:19::i;:::-;10421:26;;10332:123;;;:::o;49883:355::-;49976:4;50001:16;50009:7;50001;:16::i;:::-;49993:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50077:13;50093:23;50108:7;50093:14;:23::i;:::-;50077:39;;50146:5;50135:16;;:7;:16;;;:51;;;;50179:7;50155:31;;:20;50167:7;50155:11;:20::i;:::-;:31;;;50135:51;:94;;;;50190:39;50214:5;50221:7;50190:23;:39::i;:::-;50135:94;50127:103;;;49883:355;;;;:::o;53019:599::-;53144:4;53117:31;;:23;53132:7;53117:14;:23::i;:::-;:31;;;53109:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;53245:1;53231:16;;:2;:16;;;;53223:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;53301:39;53322:4;53328:2;53332:7;53301:20;:39::i;:::-;53405:29;53422:1;53426:7;53405:8;:29::i;:::-;53447:35;53474:7;53447:13;:19;53461:4;53447:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;53493:30;53515:7;53493:13;:17;53507:2;53493:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;53536:29;53553:7;53562:2;53536:12;:16;;:29;;;;;:::i;:::-;;53602:7;53598:2;53583:27;;53592:4;53583:27;;;;;;;;;;;;53019:599;;;:::o;21906:137::-;21977:7;22012:22;22016:3;:10;;22028:5;22012:3;:22::i;:::-;22004:31;;21997:38;;21906:137;;;;:::o;61811:98::-;61869:7;61900:1;61896;:5;;;;:::i;:::-;61889:12;;61811:98;;;;:::o;62549:::-;62607:7;62638:1;62634;:5;;;;:::i;:::-;62627:12;;62549:98;;;;:::o;50581:110::-;50657:26;50667:2;50671:7;50657:26;;;;;;;;;;;;:9;:26::i;:::-;50581:110;;:::o;10794:236::-;10874:7;10883;10904:11;10917:13;10934:22;10938:3;:10;;10950:5;10934:3;:22::i;:::-;10903:53;;;;10983:3;10975:12;;11013:5;11005:14;;10967:55;;;;;;10794:236;;;;;:::o;54219:100::-;54303:8;54292;:19;;;;;;;;;;;;:::i;:::-;;54219:100;:::o;12080:213::-;12187:7;12238:44;12243:3;:10;;12263:3;12255:12;;12269;12238:4;:44::i;:::-;12230:53;;12207:78;;12080:213;;;;;:::o;21448:114::-;21508:7;21535:19;21543:3;:10;;21535:7;:19::i;:::-;21528:26;;21448:114;;;:::o;49004:272::-;49118:28;49128:4;49134:2;49138:7;49118:9;:28::i;:::-;49165:48;49188:4;49194:2;49198:7;49207:5;49165:22;:48::i;:::-;49157:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;49004:272;;;;:::o;476:723::-;532:13;762:1;753:5;:10;749:53;;;780:10;;;;;;;;;;;;;;;;;;;;;749:53;812:12;827:5;812:20;;843:14;868:78;883:1;875:4;:9;868:78;;901:8;;;;;:::i;:::-;;;;932:2;924:10;;;;;:::i;:::-;;;868:78;;;956:19;988:6;978:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;956:39;;1006:154;1022:1;1013:5;:10;1006:154;;1050:1;1040:11;;;;;:::i;:::-;;;1117:2;1109:5;:10;;;;:::i;:::-;1096:2;:24;;;;:::i;:::-;1083:39;;1066:6;1073;1066:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1146:2;1137:11;;;;;:::i;:::-;;;1006:154;;;1184:6;1170:21;;;;;476:723;;;;:::o;14056:414::-;14119:4;14141:21;14151:3;14156:5;14141:9;:21::i;:::-;14136:327;;14179:3;:11;;14196:5;14179:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14362:3;:11;;:18;;;;14340:3;:12;;:19;14353:5;14340:19;;;;;;;;;;;:40;;;;14402:4;14395:11;;;;14136:327;14446:5;14439:12;;14056:414;;;;;:::o;4191:692::-;4267:4;4383:16;4402:3;:12;;:17;4415:3;4402:17;;;;;;;;;;;;4383:36;;4448:1;4436:8;:13;4432:444;;;4503:3;:12;;4521:38;;;;;;;;4538:3;4521:38;;;;4551:5;4521:38;;;4503:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4718:3;:12;;:19;;;;4698:3;:12;;:17;4711:3;4698:17;;;;;;;;;;;:39;;;;4759:4;4752:11;;;;;4432:444;4832:5;4796:3;:12;;4820:1;4809:8;:12;;;;:::i;:::-;4796:26;;;;;;;;;;;;;;;;;;;;;;;;;;:33;;:41;;;;4859:5;4852:12;;;4191:692;;;;;;:::o;6691:125::-;6762:4;6807:1;6786:3;:12;;:17;6799:3;6786:17;;;;;;;;;;;;:22;;6779:29;;6691:125;;;;:::o;6911:110::-;6967:7;6994:3;:12;;:19;;;;6987:26;;6911:110;;;:::o;56531:93::-;;;;:::o;20993:137::-;21063:4;21087:35;21095:3;:10;;21115:5;21107:14;;21087:7;:35::i;:::-;21080:42;;20993:137;;;;:::o;16944:204::-;17011:7;17060:5;17039:3;:11;;:18;;;;:26;17031:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17122:3;:11;;17134:5;17122:18;;;;;;;;;;;;;;;;;;;;;;;;17115:25;;16944:204;;;;:::o;50918:250::-;51014:18;51020:2;51024:7;51014:5;:18::i;:::-;51051:54;51082:1;51086:2;51090:7;51099:5;51051:22;:54::i;:::-;51043:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;50918:250;;;:::o;7376:279::-;7443:7;7452;7502:5;7480:3;:12;;:19;;;;:27;7472:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7559:22;7584:3;:12;;7597:5;7584:19;;;;;;;;;;;;;;;;;;;;;;;;;;7559:44;;7622:5;:10;;;7634:5;:12;;;7614:33;;;;;7376:279;;;;;:::o;8873:319::-;8967:7;8987:16;9006:3;:12;;:17;9019:3;9006:17;;;;;;;;;;;;8987:36;;9054:1;9042:8;:13;;9057:12;9034:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;9124:3;:12;;9148:1;9137:8;:12;;;;:::i;:::-;9124:26;;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;9117:40;;;8873:319;;;;;:::o;16491:109::-;16547:7;16574:3;:11;;:18;;;;16567:25;;16491:109;;;:::o;54884:843::-;55005:4;55031:15;:2;:13;;;:15::i;:::-;55027:693;;;55083:2;55067:36;;;55104:12;:10;:12::i;:::-;55118:4;55124:7;55133:5;55067:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55063:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55330:1;55313:6;:13;:18;55309:341;;;55356:60;;;;;;;;;;:::i;:::-;;;;;;;;55309:341;55600:6;55594:13;55585:6;55581:2;55577:15;55570:38;55063:602;55200:45;;;55190:55;;;:6;:55;;;;55183:62;;;;;55027:693;55704:4;55697:11;;54884:843;;;;;;;:::o;16276:129::-;16349:4;16396:1;16373:3;:12;;:19;16386:5;16373:19;;;;;;;;;;;;:24;;16366:31;;16276:129;;;;:::o;14646:1544::-;14712:4;14830:18;14851:3;:12;;:19;14864:5;14851:19;;;;;;;;;;;;14830:40;;14901:1;14887:10;:15;14883:1300;;15249:21;15286:1;15273:10;:14;;;;:::i;:::-;15249:38;;15302:17;15343:1;15322:3;:11;;:18;;;;:22;;;;:::i;:::-;15302:42;;15589:17;15609:3;:11;;15621:9;15609:22;;;;;;;;;;;;;;;;;;;;;;;;15589:42;;15755:9;15726:3;:11;;15738:13;15726:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;15874:1;15858:13;:17;;;;:::i;:::-;15832:3;:12;;:23;15845:9;15832:23;;;;;;;;;;;:43;;;;15984:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16079:3;:12;;:19;16092:5;16079:19;;;;;;;;;;;16072:26;;;16122:4;16115:11;;;;;;;;14883:1300;16166:5;16159:12;;;14646:1544;;;;;:::o;51504:404::-;51598:1;51584:16;;:2;:16;;;;51576:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;51657:16;51665:7;51657;:16::i;:::-;51656:17;51648:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;51719:45;51748:1;51752:2;51756:7;51719:20;:45::i;:::-;51777:30;51799:7;51777:13;:17;51791:2;51777:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;51820:29;51837:7;51846:2;51820:12;:16;;:29;;;;;:::i;:::-;;51892:7;51888:2;51867:33;;51884:1;51867:33;;;;;;;;;;;;51504:404;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;;;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;;;;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;;;;;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;;;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;;;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:179::-;;6176:46;6218:3;6210:6;6176:46;:::i;:::-;6254:4;6249:3;6245:14;6231:28;;6166:99;;;;:::o;6271:118::-;6358:24;6376:5;6358:24;:::i;:::-;6353:3;6346:37;6336:53;;:::o;6425:732::-;;6573:54;6621:5;6573:54;:::i;:::-;6643:86;6722:6;6717:3;6643:86;:::i;:::-;6636:93;;6753:56;6803:5;6753:56;:::i;:::-;6832:7;6863:1;6848:284;6873:6;6870:1;6867:13;6848:284;;;6949:6;6943:13;6976:63;7035:3;7020:13;6976:63;:::i;:::-;6969:70;;7062:60;7115:6;7062:60;:::i;:::-;7052:70;;6908:224;6895:1;6892;6888:9;6883:14;;6848:284;;;6852:14;7148:3;7141:10;;6549:608;;;;;;;:::o;7163:109::-;7244:21;7259:5;7244:21;:::i;:::-;7239:3;7232:34;7222:50;;:::o;7278:360::-;;7392:38;7424:5;7392:38;:::i;:::-;7446:70;7509:6;7504:3;7446:70;:::i;:::-;7439:77;;7525:52;7570:6;7565:3;7558:4;7551:5;7547:16;7525:52;:::i;:::-;7602:29;7624:6;7602:29;:::i;:::-;7597:3;7593:39;7586:46;;7368:270;;;;;:::o;7644:364::-;;7760:39;7793:5;7760:39;:::i;:::-;7815:71;7879:6;7874:3;7815:71;:::i;:::-;7808:78;;7895:52;7940:6;7935:3;7928:4;7921:5;7917:16;7895:52;:::i;:::-;7972:29;7994:6;7972:29;:::i;:::-;7967:3;7963:39;7956:46;;7736:272;;;;;:::o;8014:377::-;;8148:39;8181:5;8148:39;:::i;:::-;8203:89;8285:6;8280:3;8203:89;:::i;:::-;8196:96;;8301:52;8346:6;8341:3;8334:4;8327:5;8323:16;8301:52;:::i;:::-;8378:6;8373:3;8369:16;8362:23;;8124:267;;;;;:::o;8397:366::-;;8560:67;8624:2;8619:3;8560:67;:::i;:::-;8553:74;;8636:93;8725:3;8636:93;:::i;:::-;8754:2;8749:3;8745:12;8738:19;;8543:220;;;:::o;8769:366::-;;8932:67;8996:2;8991:3;8932:67;:::i;:::-;8925:74;;9008:93;9097:3;9008:93;:::i;:::-;9126:2;9121:3;9117:12;9110:19;;8915:220;;;:::o;9141:366::-;;9304:67;9368:2;9363:3;9304:67;:::i;:::-;9297:74;;9380:93;9469:3;9380:93;:::i;:::-;9498:2;9493:3;9489:12;9482:19;;9287:220;;;:::o;9513:366::-;;9676:67;9740:2;9735:3;9676:67;:::i;:::-;9669:74;;9752:93;9841:3;9752:93;:::i;:::-;9870:2;9865:3;9861:12;9854:19;;9659:220;;;:::o;9885:366::-;;10048:67;10112:2;10107:3;10048:67;:::i;:::-;10041:74;;10124:93;10213:3;10124:93;:::i;:::-;10242:2;10237:3;10233:12;10226:19;;10031:220;;;:::o;10257:366::-;;10420:67;10484:2;10479:3;10420:67;:::i;:::-;10413:74;;10496:93;10585:3;10496:93;:::i;:::-;10614:2;10609:3;10605:12;10598:19;;10403:220;;;:::o;10629:366::-;;10792:67;10856:2;10851:3;10792:67;:::i;:::-;10785:74;;10868:93;10957:3;10868:93;:::i;:::-;10986:2;10981:3;10977:12;10970:19;;10775:220;;;:::o;11001:366::-;;11164:67;11228:2;11223:3;11164:67;:::i;:::-;11157:74;;11240:93;11329:3;11240:93;:::i;:::-;11358:2;11353:3;11349:12;11342:19;;11147:220;;;:::o;11373:366::-;;11536:67;11600:2;11595:3;11536:67;:::i;:::-;11529:74;;11612:93;11701:3;11612:93;:::i;:::-;11730:2;11725:3;11721:12;11714:19;;11519:220;;;:::o;11745:366::-;;11908:67;11972:2;11967:3;11908:67;:::i;:::-;11901:74;;11984:93;12073:3;11984:93;:::i;:::-;12102:2;12097:3;12093:12;12086:19;;11891:220;;;:::o;12117:366::-;;12280:67;12344:2;12339:3;12280:67;:::i;:::-;12273:74;;12356:93;12445:3;12356:93;:::i;:::-;12474:2;12469:3;12465:12;12458:19;;12263:220;;;:::o;12489:366::-;;12652:67;12716:2;12711:3;12652:67;:::i;:::-;12645:74;;12728:93;12817:3;12728:93;:::i;:::-;12846:2;12841:3;12837:12;12830:19;;12635:220;;;:::o;12861:366::-;;13024:67;13088:2;13083:3;13024:67;:::i;:::-;13017:74;;13100:93;13189:3;13100:93;:::i;:::-;13218:2;13213:3;13209:12;13202:19;;13007:220;;;:::o;13233:366::-;;13396:67;13460:2;13455:3;13396:67;:::i;:::-;13389:74;;13472:93;13561:3;13472:93;:::i;:::-;13590:2;13585:3;13581:12;13574:19;;13379:220;;;:::o;13605:366::-;;13768:67;13832:2;13827:3;13768:67;:::i;:::-;13761:74;;13844:93;13933:3;13844:93;:::i;:::-;13962:2;13957:3;13953:12;13946:19;;13751:220;;;:::o;13977:366::-;;14140:67;14204:2;14199:3;14140:67;:::i;:::-;14133:74;;14216:93;14305:3;14216:93;:::i;:::-;14334:2;14329:3;14325:12;14318:19;;14123:220;;;:::o;14349:366::-;;14512:67;14576:2;14571:3;14512:67;:::i;:::-;14505:74;;14588:93;14677:3;14588:93;:::i;:::-;14706:2;14701:3;14697:12;14690:19;;14495:220;;;:::o;14721:366::-;;14884:67;14948:2;14943:3;14884:67;:::i;:::-;14877:74;;14960:93;15049:3;14960:93;:::i;:::-;15078:2;15073:3;15069:12;15062:19;;14867:220;;;:::o;15093:366::-;;15256:67;15320:2;15315:3;15256:67;:::i;:::-;15249:74;;15332:93;15421:3;15332:93;:::i;:::-;15450:2;15445:3;15441:12;15434:19;;15239:220;;;:::o;15465:366::-;;15628:67;15692:2;15687:3;15628:67;:::i;:::-;15621:74;;15704:93;15793:3;15704:93;:::i;:::-;15822:2;15817:3;15813:12;15806:19;;15611:220;;;:::o;15837:366::-;;16000:67;16064:2;16059:3;16000:67;:::i;:::-;15993:74;;16076:93;16165:3;16076:93;:::i;:::-;16194:2;16189:3;16185:12;16178:19;;15983:220;;;:::o;16209:366::-;;16372:67;16436:2;16431:3;16372:67;:::i;:::-;16365:74;;16448:93;16537:3;16448:93;:::i;:::-;16566:2;16561:3;16557:12;16550:19;;16355:220;;;:::o;16581:108::-;16658:24;16676:5;16658:24;:::i;:::-;16653:3;16646:37;16636:53;;:::o;16695:118::-;16782:24;16800:5;16782:24;:::i;:::-;16777:3;16770:37;16760:53;;:::o;16819:435::-;;17021:95;17112:3;17103:6;17021:95;:::i;:::-;17014:102;;17133:95;17224:3;17215:6;17133:95;:::i;:::-;17126:102;;17245:3;17238:10;;17003:251;;;;;:::o;17260:222::-;;17391:2;17380:9;17376:18;17368:26;;17404:71;17472:1;17461:9;17457:17;17448:6;17404:71;:::i;:::-;17358:124;;;;:::o;17488:640::-;;17721:3;17710:9;17706:19;17698:27;;17735:71;17803:1;17792:9;17788:17;17779:6;17735:71;:::i;:::-;17816:72;17884:2;17873:9;17869:18;17860:6;17816:72;:::i;:::-;17898;17966:2;17955:9;17951:18;17942:6;17898:72;:::i;:::-;18017:9;18011:4;18007:20;18002:2;17991:9;17987:18;17980:48;18045:76;18116:4;18107:6;18045:76;:::i;:::-;18037:84;;17688:440;;;;;;;:::o;18134:373::-;;18315:2;18304:9;18300:18;18292:26;;18364:9;18358:4;18354:20;18350:1;18339:9;18335:17;18328:47;18392:108;18495:4;18486:6;18392:108;:::i;:::-;18384:116;;18282:225;;;;:::o;18513:210::-;;18638:2;18627:9;18623:18;18615:26;;18651:65;18713:1;18702:9;18698:17;18689:6;18651:65;:::i;:::-;18605:118;;;;:::o;18729:313::-;;18880:2;18869:9;18865:18;18857:26;;18929:9;18923:4;18919:20;18915:1;18904:9;18900:17;18893:47;18957:78;19030:4;19021:6;18957:78;:::i;:::-;18949:86;;18847:195;;;;:::o;19048:419::-;;19252:2;19241:9;19237:18;19229:26;;19301:9;19295:4;19291:20;19287:1;19276:9;19272:17;19265:47;19329:131;19455:4;19329:131;:::i;:::-;19321:139;;19219:248;;;:::o;19473:419::-;;19677:2;19666:9;19662:18;19654:26;;19726:9;19720:4;19716:20;19712:1;19701:9;19697:17;19690:47;19754:131;19880:4;19754:131;:::i;:::-;19746:139;;19644:248;;;:::o;19898:419::-;;20102:2;20091:9;20087:18;20079:26;;20151:9;20145:4;20141:20;20137:1;20126:9;20122:17;20115:47;20179:131;20305:4;20179:131;:::i;:::-;20171:139;;20069:248;;;:::o;20323:419::-;;20527:2;20516:9;20512:18;20504:26;;20576:9;20570:4;20566:20;20562:1;20551:9;20547:17;20540:47;20604:131;20730:4;20604:131;:::i;:::-;20596:139;;20494:248;;;:::o;20748:419::-;;20952:2;20941:9;20937:18;20929:26;;21001:9;20995:4;20991:20;20987:1;20976:9;20972:17;20965:47;21029:131;21155:4;21029:131;:::i;:::-;21021:139;;20919:248;;;:::o;21173:419::-;;21377:2;21366:9;21362:18;21354:26;;21426:9;21420:4;21416:20;21412:1;21401:9;21397:17;21390:47;21454:131;21580:4;21454:131;:::i;:::-;21446:139;;21344:248;;;:::o;21598:419::-;;21802:2;21791:9;21787:18;21779:26;;21851:9;21845:4;21841:20;21837:1;21826:9;21822:17;21815:47;21879:131;22005:4;21879:131;:::i;:::-;21871:139;;21769:248;;;:::o;22023:419::-;;22227:2;22216:9;22212:18;22204:26;;22276:9;22270:4;22266:20;22262:1;22251:9;22247:17;22240:47;22304:131;22430:4;22304:131;:::i;:::-;22296:139;;22194:248;;;:::o;22448:419::-;;22652:2;22641:9;22637:18;22629:26;;22701:9;22695:4;22691:20;22687:1;22676:9;22672:17;22665:47;22729:131;22855:4;22729:131;:::i;:::-;22721:139;;22619:248;;;:::o;22873:419::-;;23077:2;23066:9;23062:18;23054:26;;23126:9;23120:4;23116:20;23112:1;23101:9;23097:17;23090:47;23154:131;23280:4;23154:131;:::i;:::-;23146:139;;23044:248;;;:::o;23298:419::-;;23502:2;23491:9;23487:18;23479:26;;23551:9;23545:4;23541:20;23537:1;23526:9;23522:17;23515:47;23579:131;23705:4;23579:131;:::i;:::-;23571:139;;23469:248;;;:::o;23723:419::-;;23927:2;23916:9;23912:18;23904:26;;23976:9;23970:4;23966:20;23962:1;23951:9;23947:17;23940:47;24004:131;24130:4;24004:131;:::i;:::-;23996:139;;23894:248;;;:::o;24148:419::-;;24352:2;24341:9;24337:18;24329:26;;24401:9;24395:4;24391:20;24387:1;24376:9;24372:17;24365:47;24429:131;24555:4;24429:131;:::i;:::-;24421:139;;24319:248;;;:::o;24573:419::-;;24777:2;24766:9;24762:18;24754:26;;24826:9;24820:4;24816:20;24812:1;24801:9;24797:17;24790:47;24854:131;24980:4;24854:131;:::i;:::-;24846:139;;24744:248;;;:::o;24998:419::-;;25202:2;25191:9;25187:18;25179:26;;25251:9;25245:4;25241:20;25237:1;25226:9;25222:17;25215:47;25279:131;25405:4;25279:131;:::i;:::-;25271:139;;25169:248;;;:::o;25423:419::-;;25627:2;25616:9;25612:18;25604:26;;25676:9;25670:4;25666:20;25662:1;25651:9;25647:17;25640:47;25704:131;25830:4;25704:131;:::i;:::-;25696:139;;25594:248;;;:::o;25848:419::-;;26052:2;26041:9;26037:18;26029:26;;26101:9;26095:4;26091:20;26087:1;26076:9;26072:17;26065:47;26129:131;26255:4;26129:131;:::i;:::-;26121:139;;26019:248;;;:::o;26273:419::-;;26477:2;26466:9;26462:18;26454:26;;26526:9;26520:4;26516:20;26512:1;26501:9;26497:17;26490:47;26554:131;26680:4;26554:131;:::i;:::-;26546:139;;26444:248;;;:::o;26698:419::-;;26902:2;26891:9;26887:18;26879:26;;26951:9;26945:4;26941:20;26937:1;26926:9;26922:17;26915:47;26979:131;27105:4;26979:131;:::i;:::-;26971:139;;26869:248;;;:::o;27123:419::-;;27327:2;27316:9;27312:18;27304:26;;27376:9;27370:4;27366:20;27362:1;27351:9;27347:17;27340:47;27404:131;27530:4;27404:131;:::i;:::-;27396:139;;27294:248;;;:::o;27548:419::-;;27752:2;27741:9;27737:18;27729:26;;27801:9;27795:4;27791:20;27787:1;27776:9;27772:17;27765:47;27829:131;27955:4;27829:131;:::i;:::-;27821:139;;27719:248;;;:::o;27973:419::-;;28177:2;28166:9;28162:18;28154:26;;28226:9;28220:4;28216:20;28212:1;28201:9;28197:17;28190:47;28254:131;28380:4;28254:131;:::i;:::-;28246:139;;28144:248;;;:::o;28398:222::-;;28529:2;28518:9;28514:18;28506:26;;28542:71;28610:1;28599:9;28595:17;28586:6;28542:71;:::i;:::-;28496:124;;;;:::o;28626:129::-;;28687:20;;:::i;:::-;28677:30;;28716:33;28744:4;28736:6;28716:33;:::i;:::-;28667:88;;;:::o;28761:75::-;;28827:2;28821:9;28811:19;;28801:35;:::o;28842:307::-;;28993:18;28985:6;28982:30;28979:2;;;29015:18;;:::i;:::-;28979:2;29053:29;29075:6;29053:29;:::i;:::-;29045:37;;29137:4;29131;29127:15;29119:23;;28908:241;;;:::o;29155:308::-;;29307:18;29299:6;29296:30;29293:2;;;29329:18;;:::i;:::-;29293:2;29367:29;29389:6;29367:29;:::i;:::-;29359:37;;29451:4;29445;29441:15;29433:23;;29222:241;;;:::o;29469:132::-;;29559:3;29551:11;;29589:4;29584:3;29580:14;29572:22;;29541:60;;;:::o;29607:114::-;;29708:5;29702:12;29692:22;;29681:40;;;:::o;29727:98::-;;29812:5;29806:12;29796:22;;29785:40;;;:::o;29831:99::-;;29917:5;29911:12;29901:22;;29890:40;;;:::o;29936:113::-;;30038:4;30033:3;30029:14;30021:22;;30011:38;;;:::o;30055:184::-;;30188:6;30183:3;30176:19;30228:4;30223:3;30219:14;30204:29;;30166:73;;;;:::o;30245:168::-;;30362:6;30357:3;30350:19;30402:4;30397:3;30393:14;30378:29;;30340:73;;;;:::o;30419:169::-;;30537:6;30532:3;30525:19;30577:4;30572:3;30568:14;30553:29;;30515:73;;;;:::o;30594:148::-;;30733:3;30718:18;;30708:34;;;;:::o;30748:305::-;;30807:20;30825:1;30807:20;:::i;:::-;30802:25;;30841:20;30859:1;30841:20;:::i;:::-;30836:25;;30995:1;30927:66;30923:74;30920:1;30917:81;30914:2;;;31001:18;;:::i;:::-;30914:2;31045:1;31042;31038:9;31031:16;;30792:261;;;;:::o;31059:185::-;;31116:20;31134:1;31116:20;:::i;:::-;31111:25;;31150:20;31168:1;31150:20;:::i;:::-;31145:25;;31189:1;31179:2;;31194:18;;:::i;:::-;31179:2;31236:1;31233;31229:9;31224:14;;31101:143;;;;:::o;31250:348::-;;31313:20;31331:1;31313:20;:::i;:::-;31308:25;;31347:20;31365:1;31347:20;:::i;:::-;31342:25;;31535:1;31467:66;31463:74;31460:1;31457:81;31452:1;31445:9;31438:17;31434:105;31431:2;;;31542:18;;:::i;:::-;31431:2;31590:1;31587;31583:9;31572:20;;31298:300;;;;:::o;31604:191::-;;31664:20;31682:1;31664:20;:::i;:::-;31659:25;;31698:20;31716:1;31698:20;:::i;:::-;31693:25;;31737:1;31734;31731:8;31728:2;;;31742:18;;:::i;:::-;31728:2;31787:1;31784;31780:9;31772:17;;31649:146;;;;:::o;31801:96::-;;31867:24;31885:5;31867:24;:::i;:::-;31856:35;;31846:51;;;:::o;31903:90::-;;31980:5;31973:13;31966:21;31955:32;;31945:48;;;:::o;31999:149::-;;32075:66;32068:5;32064:78;32053:89;;32043:105;;;:::o;32154:126::-;;32231:42;32224:5;32220:54;32209:65;;32199:81;;;:::o;32286:77::-;;32352:5;32341:16;;32331:32;;;:::o;32369:154::-;32453:6;32448:3;32443;32430:30;32515:1;32506:6;32501:3;32497:16;32490:27;32420:103;;;:::o;32529:307::-;32597:1;32607:113;32621:6;32618:1;32615:13;32607:113;;;32706:1;32701:3;32697:11;32691:18;32687:1;32682:3;32678:11;32671:39;32643:2;32640:1;32636:10;32631:15;;32607:113;;;32738:6;32735:1;32732:13;32729:2;;;32818:1;32809:6;32804:3;32800:16;32793:27;32729:2;32578:258;;;;:::o;32842:320::-;;32923:1;32917:4;32913:12;32903:22;;32970:1;32964:4;32960:12;32991:18;32981:2;;33047:4;33039:6;33035:17;33025:27;;32981:2;33109;33101:6;33098:14;33078:18;33075:38;33072:2;;;33128:18;;:::i;:::-;33072:2;32893:269;;;;:::o;33168:281::-;33251:27;33273:4;33251:27;:::i;:::-;33243:6;33239:40;33381:6;33369:10;33366:22;33345:18;33333:10;33330:34;33327:62;33324:2;;;33392:18;;:::i;:::-;33324:2;33432:10;33428:2;33421:22;33211:238;;;:::o;33455:233::-;;33517:24;33535:5;33517:24;:::i;:::-;33508:33;;33563:66;33556:5;33553:77;33550:2;;;33633:18;;:::i;:::-;33550:2;33680:1;33673:5;33669:13;33662:20;;33498:190;;;:::o;33694:176::-;;33743:20;33761:1;33743:20;:::i;:::-;33738:25;;33777:20;33795:1;33777:20;:::i;:::-;33772:25;;33816:1;33806:2;;33821:18;;:::i;:::-;33806:2;33862:1;33859;33855:9;33850:14;;33728:142;;;;:::o;33876:180::-;33924:77;33921:1;33914:88;34021:4;34018:1;34011:15;34045:4;34042:1;34035:15;34062:180;34110:77;34107:1;34100:88;34207:4;34204:1;34197:15;34231:4;34228:1;34221:15;34248:180;34296:77;34293:1;34286:88;34393:4;34390:1;34383:15;34417:4;34414:1;34407:15;34434:180;34482:77;34479:1;34472:88;34579:4;34576:1;34569:15;34603:4;34600:1;34593:15;34620:102;;34712:2;34708:7;34703:2;34696:5;34692:14;34688:28;34678:38;;34668:54;;;:::o;34728:221::-;34868:34;34864:1;34856:6;34852:14;34845:58;34937:4;34932:2;34924:6;34920:15;34913:29;34834:115;:::o;34955:237::-;35095:34;35091:1;35083:6;35079:14;35072:58;35164:20;35159:2;35151:6;35147:15;35140:45;35061:131;:::o;35198:225::-;35338:34;35334:1;35326:6;35322:14;35315:58;35407:8;35402:2;35394:6;35390:15;35383:33;35304:119;:::o;35429:178::-;35569:30;35565:1;35557:6;35553:14;35546:54;35535:72;:::o;35613:223::-;35753:34;35749:1;35741:6;35737:14;35730:58;35822:6;35817:2;35809:6;35805:15;35798:31;35719:117;:::o;35842:175::-;35982:27;35978:1;35970:6;35966:14;35959:51;35948:69;:::o;36023:231::-;36163:34;36159:1;36151:6;36147:14;36140:58;36232:14;36227:2;36219:6;36215:15;36208:39;36129:125;:::o;36260:243::-;36400:34;36396:1;36388:6;36384:14;36377:58;36469:26;36464:2;36456:6;36452:15;36445:51;36366:137;:::o;36509:229::-;36649:34;36645:1;36637:6;36633:14;36626:58;36718:12;36713:2;36705:6;36701:15;36694:37;36615:123;:::o;36744:222::-;36884:34;36880:1;36872:6;36868:14;36861:58;36953:5;36948:2;36940:6;36936:15;36929:30;36850:116;:::o;36972:221::-;37112:34;37108:1;37100:6;37096:14;37089:58;37181:4;37176:2;37168:6;37164:15;37157:29;37078:115;:::o;37199:182::-;37339:34;37335:1;37327:6;37323:14;37316:58;37305:76;:::o;37387:236::-;37527:34;37523:1;37515:6;37511:14;37504:58;37596:19;37591:2;37583:6;37579:15;37572:44;37493:130;:::o;37629:231::-;37769:34;37765:1;37757:6;37753:14;37746:58;37838:14;37833:2;37825:6;37821:15;37814:39;37735:125;:::o;37866:182::-;38006:34;38002:1;37994:6;37990:14;37983:58;37972:76;:::o;38054:228::-;38194:34;38190:1;38182:6;38178:14;38171:58;38263:11;38258:2;38250:6;38246:15;38239:36;38160:122;:::o;38288:234::-;38428:34;38424:1;38416:6;38412:14;38405:58;38497:17;38492:2;38484:6;38480:15;38473:42;38394:128;:::o;38528:220::-;38668:34;38664:1;38656:6;38652:14;38645:58;38737:3;38732:2;38724:6;38720:15;38713:28;38634:114;:::o;38754:172::-;38894:24;38890:1;38882:6;38878:14;38871:48;38860:66;:::o;38932:236::-;39072:34;39068:1;39060:6;39056:14;39049:58;39141:19;39136:2;39128:6;39124:15;39117:44;39038:130;:::o;39174:175::-;39314:27;39310:1;39302:6;39298:14;39291:51;39280:69;:::o;39355:169::-;39495:21;39491:1;39483:6;39479:14;39472:45;39461:63;:::o;39530:122::-;39603:24;39621:5;39603:24;:::i;:::-;39596:5;39593:35;39583:2;;39642:1;39639;39632:12;39583:2;39573:79;:::o;39658:116::-;39728:21;39743:5;39728:21;:::i;:::-;39721:5;39718:32;39708:2;;39764:1;39761;39754:12;39708:2;39698:76;:::o;39780:120::-;39852:23;39869:5;39852:23;:::i;:::-;39845:5;39842:34;39832:2;;39890:1;39887;39880:12;39832:2;39822:78;:::o;39906:122::-;39979:24;39997:5;39979:24;:::i;:::-;39972:5;39969:35;39959:2;;40018:1;40015;40008:12;39959:2;39949:79;:::o
Swarm Source
ipfs://78e447c0cd16c3266eb36916fb0d0807eac0f9bc1b4698daa0fa970132af8324
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.