ERC-721
Overview
Max Total Supply
244 TITANS
Holders
105
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TITANSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LiquidTitans
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-31 */ // SPDX-License-Identifier: MIT /* .____ .__ .__ .___ | | |__| ________ __|__| __| _/ | | | |/ ____/ | \ |/ __ | | |___| < <_| | | / / /_/ | |_______ \__|\__ |____/|__\____ | \/ |__| \/ ___________.__ __ \__ ___/|__|/ |______ ____ ______ | | | \ __\__ \ / \ / ___/ | | | || | / __ \| | \\___ \ |____| |__||__| (____ /___| /____ > \/ \/ \/ */ // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged( bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole ); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted( bytes32 indexed role, address indexed account, address indexed sender ); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked( bytes32 indexed role, address indexed account, address indexed sender ); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole( bytes32 role, address account ) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } 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); } pragma solidity ^0.8.0; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember( bytes32 role, uint256 index ) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); } pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains( Set storage set, bytes32 value ) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at( Set storage set, uint256 index ) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add( Bytes32Set storage set, bytes32 value ) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove( Bytes32Set storage set, bytes32 value ) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains( Bytes32Set storage set, bytes32 value ) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at( Bytes32Set storage set, uint256 index ) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values( Bytes32Set storage set ) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add( AddressSet storage set, address value ) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove( AddressSet storage set, address value ) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains( AddressSet storage set, address value ) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at( AddressSet storage set, uint256 index ) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values( AddressSet storage set ) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove( UintSet storage set, uint256 value ) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains( UintSet storage set, uint256 value ) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at( UintSet storage set, uint256 index ) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values( UintSet storage set ) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } } 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 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); } 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); } 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); } pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data ) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data ) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data ) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString( uint256 value, uint256 length ) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf( address owner ) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf( uint256 tokenId ) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI( uint256 tokenId ) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved( uint256 tokenId ) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll( address operator, bool approved ) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll( address owner, address operator ) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner( address spender, uint256 tokenId ) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole( bytes32 role, address account ) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin( bytes32 role ) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole( bytes32 role, address account ) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole( bytes32 role, address account ) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole( bytes32 role, address account ) public virtual override { require( account == _msgSender(), "AccessControl: can only renounce roles for self" ); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex( address owner, uint256 index ) public view virtual override returns (uint256) { require( index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds" ); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex( uint256 index ) public view virtual override returns (uint256) { require( index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds" ); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration( address from, uint256 tokenId ) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember( bytes32 role, uint256 index ) public view virtual override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount( bytes32 role ) public view virtual override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {_grantRole} to track enumerable memberships */ function _grantRole( bytes32 role, address account ) internal virtual override { super._grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {_revokeRole} to track enumerable memberships */ function _revokeRole( bytes32 role, address account ) internal virtual override { super._revokeRole(role, account); _roleMembers[role].remove(account); } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf( uint256 tokenId ) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI( uint256 tokenId ) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved( uint256 tokenId ) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll( address operator, bool approved ) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll( address owner, address operator ) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if ( to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data) ) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if ( !_checkContractOnERC721Received( address(0), to, updatedIndex++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId, address owner) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn( token, abi.encodeWithSelector(token.transfer.selector, to, value) ); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn( token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value) ); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn( token, abi.encodeWithSelector(token.approve.selector, spender, value) ); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn( token, abi.encodeWithSelector( token.approve.selector, spender, newAllowance ) ); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require( oldAllowance >= value, "SafeERC20: decreased allowance below zero" ); uint256 newAllowance = oldAllowance - value; _callOptionalReturn( token, abi.encodeWithSelector( token.approve.selector, spender, newAllowance ) ); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall( data, "SafeERC20: low-level call failed" ); if (returndata.length > 0) { // Return data is optional require( abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed" ); } } } pragma solidity ^0.8.0; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased( IERC20 indexed token, address to, uint256 amount ); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require( payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch" ); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released( IERC20 token, address account ) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + totalReleased(); uint256 payment = _pendingPayment( account, totalReceived, released(account) ); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); uint256 payment = _pendingPayment( account, totalReceived, released(token, account) ); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require( account != address(0), "PaymentSplitter: account is the zero address" ); require(shares_ > 0, "PaymentSplitter: shares are 0"); require( _shares[account] == 0, "PaymentSplitter: account already has shares" ); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } } pragma solidity ^0.8.0; interface IOperatorFilterRegistry { function isOperatorAllowed( address registrant, address operator ) external view returns (bool); function register(address registrant) external; function registerAndSubscribe( address registrant, address subscription ) external; function registerAndCopyEntries( address registrant, address registrantToCopy ) external; function unregister(address addr) external; function updateOperator( address registrant, address operator, bool filtered ) external; function updateOperators( address registrant, address[] calldata operators, bool filtered ) external; function updateCodeHash( address registrant, bytes32 codehash, bool filtered ) external; function updateCodeHashes( address registrant, bytes32[] calldata codeHashes, bool filtered ) external; function subscribe( address registrant, address registrantToSubscribe ) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers( address registrant ) external returns (address[] memory); function subscriberAt( address registrant, uint256 index ) external returns (address); function copyEntriesOf( address registrant, address registrantToCopy ) external; function isOperatorFiltered( address registrant, address operator ) external returns (bool); function isCodeHashOfFiltered( address registrant, address operatorWithCode ) external returns (bool); function isCodeHashFiltered( address registrant, bytes32 codeHash ) external returns (bool); function filteredOperators( address addr ) external returns (address[] memory); function filteredCodeHashes( address addr ) external returns (bytes32[] memory); function filteredOperatorAt( address registrant, uint256 index ) external returns (address); function filteredCodeHashAt( address registrant, uint256 index ) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe( address(this), subscriptionOrRegistrantToCopy ); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries( address(this), subscriptionOrRegistrantToCopy ); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !OPERATOR_FILTER_REGISTRY.isOperatorAllowed( address(this), msg.sender ) ) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if ( !OPERATOR_FILTER_REGISTRY.isOperatorAllowed( address(this), operator ) ) { revert OperatorNotAllowed(operator); } } _; } } /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle( address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value ); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll( address indexed account, address indexed operator, bool approved ); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf( address account, uint256 id ) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch( address[] calldata accounts, uint256[] calldata ids ) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll( address account, address operator ) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; } /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // Burn Artifact using this code. interface IMythicArtifacts { function burnArtifacts( address tokenOwner, uint256 tokenId, uint256 totalToBurn ) external; } contract LiquidTitans is ERC721A, ReentrancyGuard, Ownable, DefaultOperatorFilterer { // Setup all the crazy contracts, variables, and other abstracted nonsense // we need to burn, destroy, transfer, and spend METL on so we can mint ERC721A public erc721Token; IERC20 public erc20Token; // Minting Variables uint256 public mintPrice = 142; uint256 public maxPurchase = 42; uint256 public maxSupply = 420; address public DEAD = 0x000000000000000000000000000000000000dEaD; address public Legends = 0x372405A6d95628Ad14518BfE05165D397f43dE1D; address public Invaders = 0x2f3A9adc5301600Cd9205eF7657cF0733fF71D04; address public Artifacts = 0xf85906f89aecA56aff6D34790677595aF6B4FBD7; address public LiquidDeployer = 0x866cfDa1B7cD90Cd250485cd8b700211480845D7; // Liquid METL -- bang your head as you read this line of code address public METLToken = 0xFcbE615dEf610E806BB64427574A2c5c1fB55510; // Specify the IERC20 interface to the METL Token IERC20 METLTokenAddress = IERC20(address(METLToken)); // Sale Status bool public saleIsActive = true; bool public airdropIsActive = true; mapping(address => uint256) public addressesThatMinted; // Metadata string _baseTokenURI = "https://apeliquid.io/titans/json/"; bool public locked; // Events event SaleActivation(bool isActive); event AirdropActivation(bool isActive); constructor() ERC721A("Liquid Titans", "TITANS") {} function airdrop( uint256[] calldata _counts, address[] calldata _list ) external onlyOwner { require(airdropIsActive, "AIRDROP NOT ACTIVE"); for (uint256 i = 0; i < _list.length; i++) { require(totalSupply() + _counts[i] <= maxSupply, "SOLD OUT"); _safeMint(_list[i], _counts[i]); } } // ----------------------------------------------------------------------------------- // Minting and other primary functions (burn, mint, rinse, repeat, ignore, block, fud) // ----------------------------------------------------------------------------------- function SendMETL() public { // Transfer METL uint256 metlAmount = mintPrice * 1 ether; // Call the transfer function of the token contract require( METLTokenAddress.allowance(msg.sender, address(this)) >= metlAmount, "Error: Transfer not approved" ); //bool success = AcceptMETL(metlRequired); METLTokenAddress.transferFrom(msg.sender, address(this), metlAmount); } // This requires an approval for the contract and token before it will work // Go to the original contract and "Approve All" instead of each token id // to save gas over the long term function sendNFTToDead(address nftContractAddress, uint256 tokenId) public { require(tokenId > 0, "Invalid token ID"); // Create an instance of the IERC721 interface IERC721 nftContract = IERC721(nftContractAddress); // Make sure the caller is the owner of the NFT require( nftContract.ownerOf(tokenId) == msg.sender, "Not the owner of the NFT" ); // Approve the contract to manage the NFT on behalf of the owner require( nftContract.getApproved(tokenId) == address(this), "Not approved to manage NFT" ); // Transfer the NFT to the dead address nftContract.safeTransferFrom(msg.sender, DEAD, tokenId); } function DepositMETL(uint256 amount) public { require(amount >= mintPrice, "Insufficient ERC20 deposit"); erc20Token.transferFrom(msg.sender, address(this), amount); } event TitanMinted( address indexed owner, uint256 legendId, uint256 invader1, uint256 invader2, uint256 invader3, uint256 timestamp ); function mintTitan( uint256 legendId, uint256 invader1, uint256 invader2, uint256 invader3 ) public nonReentrant { require(saleIsActive, "Sale not active"); // Burn the required NFTs sendNFTToDead(Legends, legendId); sendNFTToDead(Invaders, invader1); sendNFTToDead(Invaders, invader2); sendNFTToDead(Invaders, invader3); // Transfer METL SendMETL(); // Mint the Titan NFT uint256 tokenId = totalSupply() + 1; require(tokenId <= maxSupply, "SOLD OUT"); _safeMint(msg.sender, 1); // Emit the TitanMinted event emit TitanMinted( msg.sender, legendId, invader1, invader2, invader3, block.timestamp ); } // ---------------------------------------------------------------------------- // All the owner functions, which are pretty heavy-handed and to be used with // extreme caution // ---------------------------------------------------------------------------- function toggleSaleStatus() external onlyOwner { saleIsActive = !saleIsActive; emit SaleActivation(saleIsActive); } function toggleAirdropStatus() external onlyOwner { airdropIsActive = !airdropIsActive; emit AirdropActivation(airdropIsActive); } function setMintPrice(uint256 _mintPrice) external onlyOwner { mintPrice = _mintPrice; } function setMaxPurchase(uint256 _maxPurchase) external onlyOwner { maxPurchase = _maxPurchase; } function setMaxSupply(uint256 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function lockMetadata() external onlyOwner { locked = true; } function getTotalSupply() external view returns (uint256) { return totalSupply(); } function setBaseURI(string memory baseURI) external onlyOwner { require(!locked, "METADATA_LOCKED"); _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI( uint256 tokenId ) public view override returns (string memory) { return string(abi.encodePacked(super.tokenURI(tokenId), ".json")); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function getWalletOfOwner(address owner) external view returns (uint256[] memory) { unchecked { uint256[] memory a = new uint256[](balanceOf(owner)); uint256 end = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; for (uint256 i; i < end; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { a[tokenIdsIdx++] = i; } } return a; } } // OpenSea's new bullshit requirements, which violate my moral code, but // are nonetheless necessary to make this all work properly. function setApprovalForAll( address operator, bool approved ) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } // Take my love, take my land, Take me where I cannot stand. // I don't care, I'm still free, You can't take the sky from me. // function removeAllMETL() public onlyOwner { uint256 balance = METLTokenAddress.balanceOf(address(this)); METLTokenAddress.transfer(LiquidDeployer, balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"AirdropActivation","type":"event"},{"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":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"SaleActivation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"legendId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"invader1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"invader2","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"invader3","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TitanMinted","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":"Artifacts","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DepositMETL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Invaders","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Legends","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LiquidDeployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METLToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SendMETL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressesThatMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_counts","type":"uint256[]"},{"internalType":"address[]","name":"_list","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"erc20Token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"erc721Token","outputs":[{"internalType":"contract ERC721A","name":"","type":"address"}],"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":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getWalletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"legendId","type":"uint256"},{"internalType":"uint256","name":"invader1","type":"uint256"},{"internalType":"uint256","name":"invader2","type":"uint256"},{"internalType":"uint256","name":"invader3","type":"uint256"}],"name":"mintTitan","outputs":[],"stateMutability":"nonpayable","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":"removeAllMETL","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nftContractAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"sendNFTToDead","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPurchase","type":"uint256"}],"name":"setMaxPurchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleAirdropStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]
Contract Creation Code
6080604052608e600c55602a600d556101a4600e5561dead600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073372405a6d95628ad14518bfe05165d397f43de1d601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732f3a9adc5301600cd9205ef7657cf0733ff71d04601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f85906f89aeca56aff6d34790677595af6b4fbd7601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073866cfda1b7cd90cd250485cd8b700211480845d7601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fcbe615def610e806bb64427574a2c5c1fb55510601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601560146101000a81548160ff02191690831515021790555060016015806101000a81548160ff021916908315150217905550604051806060016040528060218152602001620059a66021913960179081620002c2919062000906565b50348015620002d057600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020017f4c697175696420546974616e73000000000000000000000000000000000000008152506040518060400160405280600681526020017f544954414e530000000000000000000000000000000000000000000000000000815250816002908162000365919062000906565b50806003908162000377919062000906565b5062000388620005b560201b60201c565b60008190555050506001600881905550620003b8620003ac620005be60201b60201c565b620005c660201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620005ad57801562000473576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200043992919062000a32565b600060405180830381600087803b1580156200045457600080fd5b505af115801562000469573d6000803e3d6000fd5b50505050620005ac565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200052d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620004f392919062000a32565b600060405180830381600087803b1580156200050e57600080fd5b505af115801562000523573d6000803e3d6000fd5b50505050620005ab565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000576919062000a5f565b600060405180830381600087803b1580156200059157600080fd5b505af1158015620005a6573d6000803e3d6000fd5b505050505b5b5b505062000a7c565b60006001905090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200070e57607f821691505b602082108103620007245762000723620006c6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200078e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200074f565b6200079a86836200074f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007e7620007e1620007db84620007b2565b620007bc565b620007b2565b9050919050565b6000819050919050565b6200080383620007c6565b6200081b6200081282620007ee565b8484546200075c565b825550505050565b600090565b6200083262000823565b6200083f818484620007f8565b505050565b5b8181101562000867576200085b60008262000828565b60018101905062000845565b5050565b601f821115620008b65762000880816200072a565b6200088b846200073f565b810160208510156200089b578190505b620008b3620008aa856200073f565b83018262000844565b50505b505050565b600082821c905092915050565b6000620008db60001984600802620008bb565b1980831691505092915050565b6000620008f68383620008c8565b9150826002028217905092915050565b62000911826200068c565b67ffffffffffffffff8111156200092d576200092c62000697565b5b620009398254620006f5565b620009468282856200086b565b600060209050601f8311600181146200097e576000841562000969578287015190505b620009758582620008e8565b865550620009e5565b601f1984166200098e866200072a565b60005b82811015620009b85784890151825560018201915060208501945060208101905062000991565b86831015620009d85784890151620009d4601f891682620008c8565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a1a82620009ed565b9050919050565b62000a2c8162000a0d565b82525050565b600060408201905062000a49600083018562000a21565b62000a58602083018462000a21565b9392505050565b600060208201905062000a76600083018462000a21565b92915050565b614f1a8062000a8c6000396000f3fe608060405234801561001057600080fd5b50600436106102a05760003560e01c80638a13eea711610167578063c55adb1a116100ce578063e985e9c511610087578063e985e9c5146107a7578063eb8d2444146107d7578063ef6d4927146107f5578063f2fde38b146107ff578063f4a0a5281461081b578063f83e092a14610837576102a0565b8063c55adb1a146106f7578063c6ca4e4b14610713578063c87b56dd1461071d578063cf3090121461074d578063d3444b7b1461076b578063d5abeb0114610789576102a0565b8063a22cb46511610120578063a22cb46514610637578063aa3f395514610653578063ab2fdb0c14610671578063b88d4fde146106a1578063b9f2fd69146106bd578063c4e41b22146106d9576102a0565b80638a13eea7146105975780638da5cb5b146105b557806395d89b41146105d3578063977b055b146105f1578063989bdbb61461060f578063a0cbd24e14610619576102a0565b806342842e0e1161020b5780636673c4c2116101c45780636673c4c2146104eb5780636817c76c146105075780636f8b44b01461052557806370a08231146105415780637118974214610571578063715018a61461058d576102a0565b806342842e0e1461041757806354b139fe1461043357806355f804b3146104515780635f2d6bcd1461046d578063627fdeab1461048b5780636352211e146104bb576102a0565b806318160ddd1161025d57806318160ddd1461036757806323b872dd146103855780632566ed8f146103a157806326506ba4146103bf57806336409a41146103dd57806341f43434146103f9576102a0565b806301ffc9a7146102a557806303fd2a45146102d5578063049c5c49146102f357806306fdde03146102fd578063081812fc1461031b578063095ea7b31461034b575b600080fd5b6102bf60048036038101906102ba91906137fe565b610841565b6040516102cc9190613846565b60405180910390f35b6102dd610923565b6040516102ea91906138a2565b60405180910390f35b6102fb610949565b005b610305610a37565b604051610312919061394d565b60405180910390f35b610335600480360381019061033091906139a5565b610ac9565b60405161034291906138a2565b60405180910390f35b610365600480360381019061036091906139fe565b610b45565b005b61036f610c4f565b60405161037c9190613a4d565b60405180910390f35b61039f600480360381019061039a9190613a68565b610c66565b005b6103a9610c76565b6040516103b691906138a2565b60405180910390f35b6103c7610c9c565b6040516103d491906138a2565b60405180910390f35b6103f760048036038101906103f29190613abb565b610cc2565b005b610401610ee3565b60405161040e9190613b81565b60405180910390f35b610431600480360381019061042c9190613a68565b610ef5565b005b61043b610f15565b60405161044891906138a2565b60405180910390f35b61046b60048036038101906104669190613cd1565b610f3b565b005b61047561101a565b6040516104829190613d3b565b60405180910390f35b6104a560048036038101906104a09190613d56565b611040565b6040516104b29190613e41565b60405180910390f35b6104d560048036038101906104d091906139a5565b611236565b6040516104e291906138a2565b60405180910390f35b61050560048036038101906105009190613f19565b61124c565b005b61050f6113f7565b60405161051c9190613a4d565b60405180910390f35b61053f600480360381019061053a91906139a5565b6113fd565b005b61055b60048036038101906105569190613d56565b611483565b6040516105689190613a4d565b60405180910390f35b61058b600480360381019061058691906139a5565b611552565b005b6105956115d8565b005b61059f611660565b6040516105ac9190613fbb565b60405180910390f35b6105bd611686565b6040516105ca91906138a2565b60405180910390f35b6105db6116b0565b6040516105e8919061394d565b60405180910390f35b6105f9611742565b6040516106069190613a4d565b60405180910390f35b610617611748565b005b6106216117e1565b60405161062e91906138a2565b60405180910390f35b610651600480360381019061064c9190614002565b611807565b005b61065b611911565b6040516106689190613846565b60405180910390f35b61068b60048036038101906106869190613d56565b611922565b6040516106989190613a4d565b60405180910390f35b6106bb60048036038101906106b691906140e3565b61193a565b005b6106d760048036038101906106d291906139fe565b6119b6565b005b6106e1611c62565b6040516106ee9190613a4d565b60405180910390f35b610711600480360381019061070c91906139a5565b611c71565b005b61071b611d5c565b005b610737600480360381019061073291906139a5565b611efc565b604051610744919061394d565b60405180910390f35b610755611f2d565b6040516107629190613846565b60405180910390f35b610773611f40565b60405161078091906138a2565b60405180910390f35b610791611f66565b60405161079e9190613a4d565b60405180910390f35b6107c160048036038101906107bc9190614166565b611f6c565b6040516107ce9190613846565b60405180910390f35b6107df612000565b6040516107ec9190613846565b60405180910390f35b6107fd612013565b005b61081960048036038101906108149190613d56565b6120fc565b005b610835600480360381019061083091906139a5565b6121f3565b005b61083f612279565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061091c575061091b8261245b565b5b9050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109516124c5565b73ffffffffffffffffffffffffffffffffffffffff1661096f611686565b73ffffffffffffffffffffffffffffffffffffffff16146109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc906141f2565b60405180910390fd5b601560149054906101000a900460ff1615601560146101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f601560149054906101000a900460ff16604051610a2d9190613846565b60405180910390a1565b606060028054610a4690614241565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7290614241565b8015610abf5780601f10610a9457610100808354040283529160200191610abf565b820191906000526020600020905b815481529060010190602001808311610aa257829003601f168201915b5050505050905090565b6000610ad4826124cd565b610b0a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5082611236565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd66124c5565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c085750610c0681610c016124c5565b611f6c565b155b15610c3f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c4a83838361251b565b505050565b6000610c596125cd565b6001546000540303905090565b610c718383836125d6565b505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260085403610d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfe906142be565b60405180910390fd5b6002600881905550601560149054906101000a900460ff16610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d559061432a565b60405180910390fd5b610d8a601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856119b6565b610db6601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846119b6565b610de2601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836119b6565b610e0e601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826119b6565b610e16611d5c565b60006001610e22610c4f565b610e2c9190614379565b9050600e54811115610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a906143f9565b60405180910390fd5b610e7e336001612a8a565b3373ffffffffffffffffffffffffffffffffffffffff167f73cc5d598b64d00567050ea1579ab6eeb902f389b6e37d016691d80e2f7d62ab8686868642604051610ecc959493929190614419565b60405180910390a250600160088190555050505050565b6daaeb6d7670e522a718067333cd4e81565b610f108383836040518060200160405280600081525061193a565b505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f436124c5565b73ffffffffffffffffffffffffffffffffffffffff16610f61611686565b73ffffffffffffffffffffffffffffffffffffffff1614610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae906141f2565b60405180910390fd5b601860009054906101000a900460ff1615611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe906144b8565b60405180910390fd5b8060179081611016919061467a565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600061104d83611483565b67ffffffffffffffff81111561106657611065613ba6565b5b6040519080825280602002602001820160405280156110945781602001602082028036833780820191505090505b50905060008054905060008060005b83811015611229576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115611180575061121c565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111c057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361121a578186858060010196508151811061120d5761120c61474c565b5b6020026020010181815250505b505b80806001019150506110a3565b5083945050505050919050565b600061124182612aa8565b600001519050919050565b6112546124c5565b73ffffffffffffffffffffffffffffffffffffffff16611272611686565b73ffffffffffffffffffffffffffffffffffffffff16146112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf906141f2565b60405180910390fd5b60158054906101000a900460ff16611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c906147c7565b60405180910390fd5b60005b828290508110156113f057600e548585838181106113395761133861474c565b5b90506020020135611348610c4f565b6113529190614379565b1115611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a906143f9565b60405180910390fd5b6113dd8383838181106113a9576113a861474c565b5b90506020020160208101906113be9190613d56565b8686848181106113d1576113d061474c565b5b90506020020135612a8a565b80806113e8906147e7565b915050611318565b5050505050565b600c5481565b6114056124c5565b73ffffffffffffffffffffffffffffffffffffffff16611423611686565b73ffffffffffffffffffffffffffffffffffffffff1614611479576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611470906141f2565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ea576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61155a6124c5565b73ffffffffffffffffffffffffffffffffffffffff16611578611686565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c5906141f2565b60405180910390fd5b80600d8190555050565b6115e06124c5565b73ffffffffffffffffffffffffffffffffffffffff166115fe611686565b73ffffffffffffffffffffffffffffffffffffffff1614611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b906141f2565b60405180910390fd5b61165e6000612d37565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116bf90614241565b80601f01602080910402602001604051908101604052809291908181526020018280546116eb90614241565b80156117385780601f1061170d57610100808354040283529160200191611738565b820191906000526020600020905b81548152906001019060200180831161171b57829003601f168201915b5050505050905090565b600d5481565b6117506124c5565b73ffffffffffffffffffffffffffffffffffffffff1661176e611686565b73ffffffffffffffffffffffffffffffffffffffff16146117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb906141f2565b60405180910390fd5b6001601860006101000a81548160ff021916908315150217905550565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611902576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161187f92919061482f565b602060405180830381865afa15801561189c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118c0919061486d565b61190157806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016118f891906138a2565b60405180910390fd5b5b61190c8383612dfd565b505050565b60158054906101000a900460ff1681565b60166020528060005260406000206000915090505481565b6119458484846125d6565b6119648373ffffffffffffffffffffffffffffffffffffffff16612f74565b8015611979575061197784848484612f87565b155b156119b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600081116119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f0906148e6565b60405180910390fd5b60008290503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401611a4e9190613a4d565b602060405180830381865afa158015611a6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a8f919061491b565b73ffffffffffffffffffffffffffffffffffffffff1614611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc90614994565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663081812fc846040518263ffffffff1660e01b8152600401611b359190613a4d565b602060405180830381865afa158015611b52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b76919061491b565b73ffffffffffffffffffffffffffffffffffffffff1614611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc390614a00565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166342842e0e33600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518463ffffffff1660e01b8152600401611c2b93929190614a20565b600060405180830381600087803b158015611c4557600080fd5b505af1158015611c59573d6000803e3d6000fd5b50505050505050565b6000611c6c610c4f565b905090565b600c54811015611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad90614aa3565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401611d1593929190614a20565b6020604051808303816000875af1158015611d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d58919061486d565b5050565b6000670de0b6b3a7640000600c54611d749190614ac3565b905080601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401611dd492919061482f565b602060405180830381865afa158015611df1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e159190614b1a565b1015611e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4d90614b93565b60405180910390fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401611eb593929190614a20565b6020604051808303816000875af1158015611ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef8919061486d565b5050565b6060611f07826130d7565b604051602001611f179190614c3b565b6040516020818303038152906040529050919050565b601860009054906101000a900460ff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601560149054906101000a900460ff1681565b61201b6124c5565b73ffffffffffffffffffffffffffffffffffffffff16612039611686565b73ffffffffffffffffffffffffffffffffffffffff161461208f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612086906141f2565b60405180910390fd5b60158054906101000a900460ff16156015806101000a81548160ff0219169083151502179055507f1727dc7b28fffc84b95ca0e64637ec1614ea28c6bc7e9efa20b6df6b2e65fe8760158054906101000a900460ff166040516120f29190613846565b60405180910390a1565b6121046124c5565b73ffffffffffffffffffffffffffffffffffffffff16612122611686565b73ffffffffffffffffffffffffffffffffffffffff1614612178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216f906141f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036121e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121de90614ccf565b60405180910390fd5b6121f081612d37565b50565b6121fb6124c5565b73ffffffffffffffffffffffffffffffffffffffff16612219611686565b73ffffffffffffffffffffffffffffffffffffffff161461226f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612266906141f2565b60405180910390fd5b80600c8190555050565b6122816124c5565b73ffffffffffffffffffffffffffffffffffffffff1661229f611686565b73ffffffffffffffffffffffffffffffffffffffff16146122f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ec906141f2565b60405180910390fd5b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161235291906138a2565b602060405180830381865afa15801561236f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123939190614b1a565b9050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401612414929190614cef565b6020604051808303816000875af1158015612433573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612457919061486d565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816124d86125cd565b111580156124e7575060005482105b8015612514575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006125e182612aa8565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461264c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661266d6124c5565b73ffffffffffffffffffffffffffffffffffffffff16148061269c575061269b856126966124c5565b611f6c565b5b806126e157506126aa6124c5565b73ffffffffffffffffffffffffffffffffffffffff166126c984610ac9565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061271a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612780576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61278d8585856001613175565b6127996000848761251b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612a18576000548214612a1757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a83858585600161317b565b5050505050565b612aa4828260405180602001604052806000815250613181565b5050565b612ab061374f565b600082905080612abe6125cd565b11158015612acd575060005481105b15612d00576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612cfe57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612be2578092505050612d32565b5b600115612cfd57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cf8578092505050612d32565b612be3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e056124c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e69576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612e766124c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612f236124c5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f689190613846565b60405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fad6124c5565b8786866040518563ffffffff1660e01b8152600401612fcf9493929190614d6d565b6020604051808303816000875af192505050801561300b57506040513d601f19601f820116820180604052508101906130089190614dce565b60015b613084573d806000811461303b576040519150601f19603f3d011682016040523d82523d6000602084013e613040565b606091505b50600081510361307c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606130e2826124cd565b613118576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000613122613193565b90506000815103613142576040518060200160405280600081525061316d565b8061314c84613225565b60405160200161315d929190614dfb565b6040516020818303038152906040525b915050919050565b50505050565b50505050565b61318e8383836001613385565b505050565b6060601780546131a290614241565b80601f01602080910402602001604051908101604052809291908181526020018280546131ce90614241565b801561321b5780601f106131f05761010080835404028352916020019161321b565b820191906000526020600020905b8154815290600101906020018083116131fe57829003601f168201915b5050505050905090565b60606000820361326c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613380565b600082905060005b6000821461329e578080613287906147e7565b915050600a826132979190614e4e565b9150613274565b60008167ffffffffffffffff8111156132ba576132b9613ba6565b5b6040519080825280601f01601f1916602001820160405280156132ec5781602001600182028036833780820191505090505b5090505b60008514613379576001826133059190614e7f565b9150600a856133149190614eb3565b60306133209190614379565b60f81b8183815181106133365761333561474c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133729190614e4e565b94506132f0565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036133f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361342b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134386000868387613175565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561360257506136018773ffffffffffffffffffffffffffffffffffffffff16612f74565b5b156136c7575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136776000888480600101955088612f87565b6136ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036136085782600054146136c257600080fd5b613732565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036136c8575b816000819055505050613748600086838761317b565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137db816137a6565b81146137e657600080fd5b50565b6000813590506137f8816137d2565b92915050565b6000602082840312156138145761381361379c565b5b6000613822848285016137e9565b91505092915050565b60008115159050919050565b6138408161382b565b82525050565b600060208201905061385b6000830184613837565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061388c82613861565b9050919050565b61389c81613881565b82525050565b60006020820190506138b76000830184613893565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138f75780820151818401526020810190506138dc565b60008484015250505050565b6000601f19601f8301169050919050565b600061391f826138bd565b61392981856138c8565b93506139398185602086016138d9565b61394281613903565b840191505092915050565b600060208201905081810360008301526139678184613914565b905092915050565b6000819050919050565b6139828161396f565b811461398d57600080fd5b50565b60008135905061399f81613979565b92915050565b6000602082840312156139bb576139ba61379c565b5b60006139c984828501613990565b91505092915050565b6139db81613881565b81146139e657600080fd5b50565b6000813590506139f8816139d2565b92915050565b60008060408385031215613a1557613a1461379c565b5b6000613a23858286016139e9565b9250506020613a3485828601613990565b9150509250929050565b613a478161396f565b82525050565b6000602082019050613a626000830184613a3e565b92915050565b600080600060608486031215613a8157613a8061379c565b5b6000613a8f868287016139e9565b9350506020613aa0868287016139e9565b9250506040613ab186828701613990565b9150509250925092565b60008060008060808587031215613ad557613ad461379c565b5b6000613ae387828801613990565b9450506020613af487828801613990565b9350506040613b0587828801613990565b9250506060613b1687828801613990565b91505092959194509250565b6000819050919050565b6000613b47613b42613b3d84613861565b613b22565b613861565b9050919050565b6000613b5982613b2c565b9050919050565b6000613b6b82613b4e565b9050919050565b613b7b81613b60565b82525050565b6000602082019050613b966000830184613b72565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bde82613903565b810181811067ffffffffffffffff82111715613bfd57613bfc613ba6565b5b80604052505050565b6000613c10613792565b9050613c1c8282613bd5565b919050565b600067ffffffffffffffff821115613c3c57613c3b613ba6565b5b613c4582613903565b9050602081019050919050565b82818337600083830152505050565b6000613c74613c6f84613c21565b613c06565b905082815260208101848484011115613c9057613c8f613ba1565b5b613c9b848285613c52565b509392505050565b600082601f830112613cb857613cb7613b9c565b5b8135613cc8848260208601613c61565b91505092915050565b600060208284031215613ce757613ce661379c565b5b600082013567ffffffffffffffff811115613d0557613d046137a1565b5b613d1184828501613ca3565b91505092915050565b6000613d2582613b4e565b9050919050565b613d3581613d1a565b82525050565b6000602082019050613d506000830184613d2c565b92915050565b600060208284031215613d6c57613d6b61379c565b5b6000613d7a848285016139e9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613db88161396f565b82525050565b6000613dca8383613daf565b60208301905092915050565b6000602082019050919050565b6000613dee82613d83565b613df88185613d8e565b9350613e0383613d9f565b8060005b83811015613e34578151613e1b8882613dbe565b9750613e2683613dd6565b925050600181019050613e07565b5085935050505092915050565b60006020820190508181036000830152613e5b8184613de3565b905092915050565b600080fd5b600080fd5b60008083601f840112613e8357613e82613b9c565b5b8235905067ffffffffffffffff811115613ea057613e9f613e63565b5b602083019150836020820283011115613ebc57613ebb613e68565b5b9250929050565b60008083601f840112613ed957613ed8613b9c565b5b8235905067ffffffffffffffff811115613ef657613ef5613e63565b5b602083019150836020820283011115613f1257613f11613e68565b5b9250929050565b60008060008060408587031215613f3357613f3261379c565b5b600085013567ffffffffffffffff811115613f5157613f506137a1565b5b613f5d87828801613e6d565b9450945050602085013567ffffffffffffffff811115613f8057613f7f6137a1565b5b613f8c87828801613ec3565b925092505092959194509250565b6000613fa582613b4e565b9050919050565b613fb581613f9a565b82525050565b6000602082019050613fd06000830184613fac565b92915050565b613fdf8161382b565b8114613fea57600080fd5b50565b600081359050613ffc81613fd6565b92915050565b600080604083850312156140195761401861379c565b5b6000614027858286016139e9565b925050602061403885828601613fed565b9150509250929050565b600067ffffffffffffffff82111561405d5761405c613ba6565b5b61406682613903565b9050602081019050919050565b600061408661408184614042565b613c06565b9050828152602081018484840111156140a2576140a1613ba1565b5b6140ad848285613c52565b509392505050565b600082601f8301126140ca576140c9613b9c565b5b81356140da848260208601614073565b91505092915050565b600080600080608085870312156140fd576140fc61379c565b5b600061410b878288016139e9565b945050602061411c878288016139e9565b935050604061412d87828801613990565b925050606085013567ffffffffffffffff81111561414e5761414d6137a1565b5b61415a878288016140b5565b91505092959194509250565b6000806040838503121561417d5761417c61379c565b5b600061418b858286016139e9565b925050602061419c858286016139e9565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141dc6020836138c8565b91506141e7826141a6565b602082019050919050565b6000602082019050818103600083015261420b816141cf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061425957607f821691505b60208210810361426c5761426b614212565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006142a8601f836138c8565b91506142b382614272565b602082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b6000614314600f836138c8565b915061431f826142de565b602082019050919050565b6000602082019050818103600083015261434381614307565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143848261396f565b915061438f8361396f565b92508282019050808211156143a7576143a661434a565b5b92915050565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b60006143e36008836138c8565b91506143ee826143ad565b602082019050919050565b60006020820190508181036000830152614412816143d6565b9050919050565b600060a08201905061442e6000830188613a3e565b61443b6020830187613a3e565b6144486040830186613a3e565b6144556060830185613a3e565b6144626080830184613a3e565b9695505050505050565b7f4d455441444154415f4c4f434b45440000000000000000000000000000000000600082015250565b60006144a2600f836138c8565b91506144ad8261446c565b602082019050919050565b600060208201905081810360008301526144d181614495565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261453a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826144fd565b61454486836144fd565b95508019841693508086168417925050509392505050565b600061457761457261456d8461396f565b613b22565b61396f565b9050919050565b6000819050919050565b6145918361455c565b6145a561459d8261457e565b84845461450a565b825550505050565b600090565b6145ba6145ad565b6145c5818484614588565b505050565b5b818110156145e9576145de6000826145b2565b6001810190506145cb565b5050565b601f82111561462e576145ff816144d8565b614608846144ed565b81016020851015614617578190505b61462b614623856144ed565b8301826145ca565b50505b505050565b600082821c905092915050565b600061465160001984600802614633565b1980831691505092915050565b600061466a8383614640565b9150826002028217905092915050565b614683826138bd565b67ffffffffffffffff81111561469c5761469b613ba6565b5b6146a68254614241565b6146b18282856145ed565b600060209050601f8311600181146146e457600084156146d2578287015190505b6146dc858261465e565b865550614744565b601f1984166146f2866144d8565b60005b8281101561471a578489015182556001820191506020850194506020810190506146f5565b868310156147375784890151614733601f891682614640565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f41495244524f50204e4f54204143544956450000000000000000000000000000600082015250565b60006147b16012836138c8565b91506147bc8261477b565b602082019050919050565b600060208201905081810360008301526147e0816147a4565b9050919050565b60006147f28261396f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036148245761482361434a565b5b600182019050919050565b60006040820190506148446000830185613893565b6148516020830184613893565b9392505050565b60008151905061486781613fd6565b92915050565b6000602082840312156148835761488261379c565b5b600061489184828501614858565b91505092915050565b7f496e76616c696420746f6b656e20494400000000000000000000000000000000600082015250565b60006148d06010836138c8565b91506148db8261489a565b602082019050919050565b600060208201905081810360008301526148ff816148c3565b9050919050565b600081519050614915816139d2565b92915050565b6000602082840312156149315761493061379c565b5b600061493f84828501614906565b91505092915050565b7f4e6f7420746865206f776e6572206f6620746865204e46540000000000000000600082015250565b600061497e6018836138c8565b915061498982614948565b602082019050919050565b600060208201905081810360008301526149ad81614971565b9050919050565b7f4e6f7420617070726f76656420746f206d616e616765204e4654000000000000600082015250565b60006149ea601a836138c8565b91506149f5826149b4565b602082019050919050565b60006020820190508181036000830152614a19816149dd565b9050919050565b6000606082019050614a356000830186613893565b614a426020830185613893565b614a4f6040830184613a3e565b949350505050565b7f496e73756666696369656e74204552433230206465706f736974000000000000600082015250565b6000614a8d601a836138c8565b9150614a9882614a57565b602082019050919050565b60006020820190508181036000830152614abc81614a80565b9050919050565b6000614ace8261396f565b9150614ad98361396f565b9250828202614ae78161396f565b91508282048414831517614afe57614afd61434a565b5b5092915050565b600081519050614b1481613979565b92915050565b600060208284031215614b3057614b2f61379c565b5b6000614b3e84828501614b05565b91505092915050565b7f4572726f723a205472616e73666572206e6f7420617070726f76656400000000600082015250565b6000614b7d601c836138c8565b9150614b8882614b47565b602082019050919050565b60006020820190508181036000830152614bac81614b70565b9050919050565b600081905092915050565b6000614bc9826138bd565b614bd38185614bb3565b9350614be38185602086016138d9565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614c25600583614bb3565b9150614c3082614bef565b600582019050919050565b6000614c478284614bbe565b9150614c5282614c18565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cb96026836138c8565b9150614cc482614c5d565b604082019050919050565b60006020820190508181036000830152614ce881614cac565b9050919050565b6000604082019050614d046000830185613893565b614d116020830184613a3e565b9392505050565b600081519050919050565b600082825260208201905092915050565b6000614d3f82614d18565b614d498185614d23565b9350614d598185602086016138d9565b614d6281613903565b840191505092915050565b6000608082019050614d826000830187613893565b614d8f6020830186613893565b614d9c6040830185613a3e565b8181036060830152614dae8184614d34565b905095945050505050565b600081519050614dc8816137d2565b92915050565b600060208284031215614de457614de361379c565b5b6000614df284828501614db9565b91505092915050565b6000614e078285614bbe565b9150614e138284614bbe565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e598261396f565b9150614e648361396f565b925082614e7457614e73614e1f565b5b828204905092915050565b6000614e8a8261396f565b9150614e958361396f565b9250828203905081811115614ead57614eac61434a565b5b92915050565b6000614ebe8261396f565b9150614ec98361396f565b925082614ed957614ed8614e1f565b5b82820690509291505056fea2646970667358221220acaf6e9cf031a9a7a52b04e831d91e57cb39ecc74c74888389752935e40b650764736f6c6343000813003368747470733a2f2f6170656c69717569642e696f2f746974616e732f6a736f6e2f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102a05760003560e01c80638a13eea711610167578063c55adb1a116100ce578063e985e9c511610087578063e985e9c5146107a7578063eb8d2444146107d7578063ef6d4927146107f5578063f2fde38b146107ff578063f4a0a5281461081b578063f83e092a14610837576102a0565b8063c55adb1a146106f7578063c6ca4e4b14610713578063c87b56dd1461071d578063cf3090121461074d578063d3444b7b1461076b578063d5abeb0114610789576102a0565b8063a22cb46511610120578063a22cb46514610637578063aa3f395514610653578063ab2fdb0c14610671578063b88d4fde146106a1578063b9f2fd69146106bd578063c4e41b22146106d9576102a0565b80638a13eea7146105975780638da5cb5b146105b557806395d89b41146105d3578063977b055b146105f1578063989bdbb61461060f578063a0cbd24e14610619576102a0565b806342842e0e1161020b5780636673c4c2116101c45780636673c4c2146104eb5780636817c76c146105075780636f8b44b01461052557806370a08231146105415780637118974214610571578063715018a61461058d576102a0565b806342842e0e1461041757806354b139fe1461043357806355f804b3146104515780635f2d6bcd1461046d578063627fdeab1461048b5780636352211e146104bb576102a0565b806318160ddd1161025d57806318160ddd1461036757806323b872dd146103855780632566ed8f146103a157806326506ba4146103bf57806336409a41146103dd57806341f43434146103f9576102a0565b806301ffc9a7146102a557806303fd2a45146102d5578063049c5c49146102f357806306fdde03146102fd578063081812fc1461031b578063095ea7b31461034b575b600080fd5b6102bf60048036038101906102ba91906137fe565b610841565b6040516102cc9190613846565b60405180910390f35b6102dd610923565b6040516102ea91906138a2565b60405180910390f35b6102fb610949565b005b610305610a37565b604051610312919061394d565b60405180910390f35b610335600480360381019061033091906139a5565b610ac9565b60405161034291906138a2565b60405180910390f35b610365600480360381019061036091906139fe565b610b45565b005b61036f610c4f565b60405161037c9190613a4d565b60405180910390f35b61039f600480360381019061039a9190613a68565b610c66565b005b6103a9610c76565b6040516103b691906138a2565b60405180910390f35b6103c7610c9c565b6040516103d491906138a2565b60405180910390f35b6103f760048036038101906103f29190613abb565b610cc2565b005b610401610ee3565b60405161040e9190613b81565b60405180910390f35b610431600480360381019061042c9190613a68565b610ef5565b005b61043b610f15565b60405161044891906138a2565b60405180910390f35b61046b60048036038101906104669190613cd1565b610f3b565b005b61047561101a565b6040516104829190613d3b565b60405180910390f35b6104a560048036038101906104a09190613d56565b611040565b6040516104b29190613e41565b60405180910390f35b6104d560048036038101906104d091906139a5565b611236565b6040516104e291906138a2565b60405180910390f35b61050560048036038101906105009190613f19565b61124c565b005b61050f6113f7565b60405161051c9190613a4d565b60405180910390f35b61053f600480360381019061053a91906139a5565b6113fd565b005b61055b60048036038101906105569190613d56565b611483565b6040516105689190613a4d565b60405180910390f35b61058b600480360381019061058691906139a5565b611552565b005b6105956115d8565b005b61059f611660565b6040516105ac9190613fbb565b60405180910390f35b6105bd611686565b6040516105ca91906138a2565b60405180910390f35b6105db6116b0565b6040516105e8919061394d565b60405180910390f35b6105f9611742565b6040516106069190613a4d565b60405180910390f35b610617611748565b005b6106216117e1565b60405161062e91906138a2565b60405180910390f35b610651600480360381019061064c9190614002565b611807565b005b61065b611911565b6040516106689190613846565b60405180910390f35b61068b60048036038101906106869190613d56565b611922565b6040516106989190613a4d565b60405180910390f35b6106bb60048036038101906106b691906140e3565b61193a565b005b6106d760048036038101906106d291906139fe565b6119b6565b005b6106e1611c62565b6040516106ee9190613a4d565b60405180910390f35b610711600480360381019061070c91906139a5565b611c71565b005b61071b611d5c565b005b610737600480360381019061073291906139a5565b611efc565b604051610744919061394d565b60405180910390f35b610755611f2d565b6040516107629190613846565b60405180910390f35b610773611f40565b60405161078091906138a2565b60405180910390f35b610791611f66565b60405161079e9190613a4d565b60405180910390f35b6107c160048036038101906107bc9190614166565b611f6c565b6040516107ce9190613846565b60405180910390f35b6107df612000565b6040516107ec9190613846565b60405180910390f35b6107fd612013565b005b61081960048036038101906108149190613d56565b6120fc565b005b610835600480360381019061083091906139a5565b6121f3565b005b61083f612279565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061091c575061091b8261245b565b5b9050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109516124c5565b73ffffffffffffffffffffffffffffffffffffffff1661096f611686565b73ffffffffffffffffffffffffffffffffffffffff16146109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc906141f2565b60405180910390fd5b601560149054906101000a900460ff1615601560146101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f601560149054906101000a900460ff16604051610a2d9190613846565b60405180910390a1565b606060028054610a4690614241565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7290614241565b8015610abf5780601f10610a9457610100808354040283529160200191610abf565b820191906000526020600020905b815481529060010190602001808311610aa257829003601f168201915b5050505050905090565b6000610ad4826124cd565b610b0a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5082611236565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd66124c5565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c085750610c0681610c016124c5565b611f6c565b155b15610c3f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c4a83838361251b565b505050565b6000610c596125cd565b6001546000540303905090565b610c718383836125d6565b505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260085403610d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfe906142be565b60405180910390fd5b6002600881905550601560149054906101000a900460ff16610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d559061432a565b60405180910390fd5b610d8a601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856119b6565b610db6601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846119b6565b610de2601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836119b6565b610e0e601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826119b6565b610e16611d5c565b60006001610e22610c4f565b610e2c9190614379565b9050600e54811115610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a906143f9565b60405180910390fd5b610e7e336001612a8a565b3373ffffffffffffffffffffffffffffffffffffffff167f73cc5d598b64d00567050ea1579ab6eeb902f389b6e37d016691d80e2f7d62ab8686868642604051610ecc959493929190614419565b60405180910390a250600160088190555050505050565b6daaeb6d7670e522a718067333cd4e81565b610f108383836040518060200160405280600081525061193a565b505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f436124c5565b73ffffffffffffffffffffffffffffffffffffffff16610f61611686565b73ffffffffffffffffffffffffffffffffffffffff1614610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae906141f2565b60405180910390fd5b601860009054906101000a900460ff1615611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe906144b8565b60405180910390fd5b8060179081611016919061467a565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600061104d83611483565b67ffffffffffffffff81111561106657611065613ba6565b5b6040519080825280602002602001820160405280156110945781602001602082028036833780820191505090505b50905060008054905060008060005b83811015611229576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115611180575061121c565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111c057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361121a578186858060010196508151811061120d5761120c61474c565b5b6020026020010181815250505b505b80806001019150506110a3565b5083945050505050919050565b600061124182612aa8565b600001519050919050565b6112546124c5565b73ffffffffffffffffffffffffffffffffffffffff16611272611686565b73ffffffffffffffffffffffffffffffffffffffff16146112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf906141f2565b60405180910390fd5b60158054906101000a900460ff16611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c906147c7565b60405180910390fd5b60005b828290508110156113f057600e548585838181106113395761133861474c565b5b90506020020135611348610c4f565b6113529190614379565b1115611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a906143f9565b60405180910390fd5b6113dd8383838181106113a9576113a861474c565b5b90506020020160208101906113be9190613d56565b8686848181106113d1576113d061474c565b5b90506020020135612a8a565b80806113e8906147e7565b915050611318565b5050505050565b600c5481565b6114056124c5565b73ffffffffffffffffffffffffffffffffffffffff16611423611686565b73ffffffffffffffffffffffffffffffffffffffff1614611479576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611470906141f2565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ea576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61155a6124c5565b73ffffffffffffffffffffffffffffffffffffffff16611578611686565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c5906141f2565b60405180910390fd5b80600d8190555050565b6115e06124c5565b73ffffffffffffffffffffffffffffffffffffffff166115fe611686565b73ffffffffffffffffffffffffffffffffffffffff1614611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b906141f2565b60405180910390fd5b61165e6000612d37565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116bf90614241565b80601f01602080910402602001604051908101604052809291908181526020018280546116eb90614241565b80156117385780601f1061170d57610100808354040283529160200191611738565b820191906000526020600020905b81548152906001019060200180831161171b57829003601f168201915b5050505050905090565b600d5481565b6117506124c5565b73ffffffffffffffffffffffffffffffffffffffff1661176e611686565b73ffffffffffffffffffffffffffffffffffffffff16146117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb906141f2565b60405180910390fd5b6001601860006101000a81548160ff021916908315150217905550565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611902576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161187f92919061482f565b602060405180830381865afa15801561189c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118c0919061486d565b61190157806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016118f891906138a2565b60405180910390fd5b5b61190c8383612dfd565b505050565b60158054906101000a900460ff1681565b60166020528060005260406000206000915090505481565b6119458484846125d6565b6119648373ffffffffffffffffffffffffffffffffffffffff16612f74565b8015611979575061197784848484612f87565b155b156119b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600081116119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f0906148e6565b60405180910390fd5b60008290503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401611a4e9190613a4d565b602060405180830381865afa158015611a6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a8f919061491b565b73ffffffffffffffffffffffffffffffffffffffff1614611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc90614994565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663081812fc846040518263ffffffff1660e01b8152600401611b359190613a4d565b602060405180830381865afa158015611b52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b76919061491b565b73ffffffffffffffffffffffffffffffffffffffff1614611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc390614a00565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166342842e0e33600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518463ffffffff1660e01b8152600401611c2b93929190614a20565b600060405180830381600087803b158015611c4557600080fd5b505af1158015611c59573d6000803e3d6000fd5b50505050505050565b6000611c6c610c4f565b905090565b600c54811015611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad90614aa3565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401611d1593929190614a20565b6020604051808303816000875af1158015611d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d58919061486d565b5050565b6000670de0b6b3a7640000600c54611d749190614ac3565b905080601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b8152600401611dd492919061482f565b602060405180830381865afa158015611df1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e159190614b1a565b1015611e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4d90614b93565b60405180910390fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401611eb593929190614a20565b6020604051808303816000875af1158015611ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef8919061486d565b5050565b6060611f07826130d7565b604051602001611f179190614c3b565b6040516020818303038152906040529050919050565b601860009054906101000a900460ff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601560149054906101000a900460ff1681565b61201b6124c5565b73ffffffffffffffffffffffffffffffffffffffff16612039611686565b73ffffffffffffffffffffffffffffffffffffffff161461208f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612086906141f2565b60405180910390fd5b60158054906101000a900460ff16156015806101000a81548160ff0219169083151502179055507f1727dc7b28fffc84b95ca0e64637ec1614ea28c6bc7e9efa20b6df6b2e65fe8760158054906101000a900460ff166040516120f29190613846565b60405180910390a1565b6121046124c5565b73ffffffffffffffffffffffffffffffffffffffff16612122611686565b73ffffffffffffffffffffffffffffffffffffffff1614612178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216f906141f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036121e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121de90614ccf565b60405180910390fd5b6121f081612d37565b50565b6121fb6124c5565b73ffffffffffffffffffffffffffffffffffffffff16612219611686565b73ffffffffffffffffffffffffffffffffffffffff161461226f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612266906141f2565b60405180910390fd5b80600c8190555050565b6122816124c5565b73ffffffffffffffffffffffffffffffffffffffff1661229f611686565b73ffffffffffffffffffffffffffffffffffffffff16146122f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ec906141f2565b60405180910390fd5b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161235291906138a2565b602060405180830381865afa15801561236f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123939190614b1a565b9050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401612414929190614cef565b6020604051808303816000875af1158015612433573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612457919061486d565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816124d86125cd565b111580156124e7575060005482105b8015612514575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006125e182612aa8565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461264c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661266d6124c5565b73ffffffffffffffffffffffffffffffffffffffff16148061269c575061269b856126966124c5565b611f6c565b5b806126e157506126aa6124c5565b73ffffffffffffffffffffffffffffffffffffffff166126c984610ac9565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061271a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612780576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61278d8585856001613175565b6127996000848761251b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612a18576000548214612a1757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a83858585600161317b565b5050505050565b612aa4828260405180602001604052806000815250613181565b5050565b612ab061374f565b600082905080612abe6125cd565b11158015612acd575060005481105b15612d00576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612cfe57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612be2578092505050612d32565b5b600115612cfd57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cf8578092505050612d32565b612be3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e056124c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e69576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612e766124c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612f236124c5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f689190613846565b60405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fad6124c5565b8786866040518563ffffffff1660e01b8152600401612fcf9493929190614d6d565b6020604051808303816000875af192505050801561300b57506040513d601f19601f820116820180604052508101906130089190614dce565b60015b613084573d806000811461303b576040519150601f19603f3d011682016040523d82523d6000602084013e613040565b606091505b50600081510361307c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606130e2826124cd565b613118576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000613122613193565b90506000815103613142576040518060200160405280600081525061316d565b8061314c84613225565b60405160200161315d929190614dfb565b6040516020818303038152906040525b915050919050565b50505050565b50505050565b61318e8383836001613385565b505050565b6060601780546131a290614241565b80601f01602080910402602001604051908101604052809291908181526020018280546131ce90614241565b801561321b5780601f106131f05761010080835404028352916020019161321b565b820191906000526020600020905b8154815290600101906020018083116131fe57829003601f168201915b5050505050905090565b60606000820361326c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613380565b600082905060005b6000821461329e578080613287906147e7565b915050600a826132979190614e4e565b9150613274565b60008167ffffffffffffffff8111156132ba576132b9613ba6565b5b6040519080825280601f01601f1916602001820160405280156132ec5781602001600182028036833780820191505090505b5090505b60008514613379576001826133059190614e7f565b9150600a856133149190614eb3565b60306133209190614379565b60f81b8183815181106133365761333561474c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133729190614e4e565b94506132f0565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036133f1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361342b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134386000868387613175565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561360257506136018773ffffffffffffffffffffffffffffffffffffffff16612f74565b5b156136c7575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136776000888480600101955088612f87565b6136ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036136085782600054146136c257600080fd5b613732565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036136c8575b816000819055505050613748600086838761317b565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137db816137a6565b81146137e657600080fd5b50565b6000813590506137f8816137d2565b92915050565b6000602082840312156138145761381361379c565b5b6000613822848285016137e9565b91505092915050565b60008115159050919050565b6138408161382b565b82525050565b600060208201905061385b6000830184613837565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061388c82613861565b9050919050565b61389c81613881565b82525050565b60006020820190506138b76000830184613893565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138f75780820151818401526020810190506138dc565b60008484015250505050565b6000601f19601f8301169050919050565b600061391f826138bd565b61392981856138c8565b93506139398185602086016138d9565b61394281613903565b840191505092915050565b600060208201905081810360008301526139678184613914565b905092915050565b6000819050919050565b6139828161396f565b811461398d57600080fd5b50565b60008135905061399f81613979565b92915050565b6000602082840312156139bb576139ba61379c565b5b60006139c984828501613990565b91505092915050565b6139db81613881565b81146139e657600080fd5b50565b6000813590506139f8816139d2565b92915050565b60008060408385031215613a1557613a1461379c565b5b6000613a23858286016139e9565b9250506020613a3485828601613990565b9150509250929050565b613a478161396f565b82525050565b6000602082019050613a626000830184613a3e565b92915050565b600080600060608486031215613a8157613a8061379c565b5b6000613a8f868287016139e9565b9350506020613aa0868287016139e9565b9250506040613ab186828701613990565b9150509250925092565b60008060008060808587031215613ad557613ad461379c565b5b6000613ae387828801613990565b9450506020613af487828801613990565b9350506040613b0587828801613990565b9250506060613b1687828801613990565b91505092959194509250565b6000819050919050565b6000613b47613b42613b3d84613861565b613b22565b613861565b9050919050565b6000613b5982613b2c565b9050919050565b6000613b6b82613b4e565b9050919050565b613b7b81613b60565b82525050565b6000602082019050613b966000830184613b72565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bde82613903565b810181811067ffffffffffffffff82111715613bfd57613bfc613ba6565b5b80604052505050565b6000613c10613792565b9050613c1c8282613bd5565b919050565b600067ffffffffffffffff821115613c3c57613c3b613ba6565b5b613c4582613903565b9050602081019050919050565b82818337600083830152505050565b6000613c74613c6f84613c21565b613c06565b905082815260208101848484011115613c9057613c8f613ba1565b5b613c9b848285613c52565b509392505050565b600082601f830112613cb857613cb7613b9c565b5b8135613cc8848260208601613c61565b91505092915050565b600060208284031215613ce757613ce661379c565b5b600082013567ffffffffffffffff811115613d0557613d046137a1565b5b613d1184828501613ca3565b91505092915050565b6000613d2582613b4e565b9050919050565b613d3581613d1a565b82525050565b6000602082019050613d506000830184613d2c565b92915050565b600060208284031215613d6c57613d6b61379c565b5b6000613d7a848285016139e9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613db88161396f565b82525050565b6000613dca8383613daf565b60208301905092915050565b6000602082019050919050565b6000613dee82613d83565b613df88185613d8e565b9350613e0383613d9f565b8060005b83811015613e34578151613e1b8882613dbe565b9750613e2683613dd6565b925050600181019050613e07565b5085935050505092915050565b60006020820190508181036000830152613e5b8184613de3565b905092915050565b600080fd5b600080fd5b60008083601f840112613e8357613e82613b9c565b5b8235905067ffffffffffffffff811115613ea057613e9f613e63565b5b602083019150836020820283011115613ebc57613ebb613e68565b5b9250929050565b60008083601f840112613ed957613ed8613b9c565b5b8235905067ffffffffffffffff811115613ef657613ef5613e63565b5b602083019150836020820283011115613f1257613f11613e68565b5b9250929050565b60008060008060408587031215613f3357613f3261379c565b5b600085013567ffffffffffffffff811115613f5157613f506137a1565b5b613f5d87828801613e6d565b9450945050602085013567ffffffffffffffff811115613f8057613f7f6137a1565b5b613f8c87828801613ec3565b925092505092959194509250565b6000613fa582613b4e565b9050919050565b613fb581613f9a565b82525050565b6000602082019050613fd06000830184613fac565b92915050565b613fdf8161382b565b8114613fea57600080fd5b50565b600081359050613ffc81613fd6565b92915050565b600080604083850312156140195761401861379c565b5b6000614027858286016139e9565b925050602061403885828601613fed565b9150509250929050565b600067ffffffffffffffff82111561405d5761405c613ba6565b5b61406682613903565b9050602081019050919050565b600061408661408184614042565b613c06565b9050828152602081018484840111156140a2576140a1613ba1565b5b6140ad848285613c52565b509392505050565b600082601f8301126140ca576140c9613b9c565b5b81356140da848260208601614073565b91505092915050565b600080600080608085870312156140fd576140fc61379c565b5b600061410b878288016139e9565b945050602061411c878288016139e9565b935050604061412d87828801613990565b925050606085013567ffffffffffffffff81111561414e5761414d6137a1565b5b61415a878288016140b5565b91505092959194509250565b6000806040838503121561417d5761417c61379c565b5b600061418b858286016139e9565b925050602061419c858286016139e9565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141dc6020836138c8565b91506141e7826141a6565b602082019050919050565b6000602082019050818103600083015261420b816141cf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061425957607f821691505b60208210810361426c5761426b614212565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006142a8601f836138c8565b91506142b382614272565b602082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b6000614314600f836138c8565b915061431f826142de565b602082019050919050565b6000602082019050818103600083015261434381614307565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143848261396f565b915061438f8361396f565b92508282019050808211156143a7576143a661434a565b5b92915050565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b60006143e36008836138c8565b91506143ee826143ad565b602082019050919050565b60006020820190508181036000830152614412816143d6565b9050919050565b600060a08201905061442e6000830188613a3e565b61443b6020830187613a3e565b6144486040830186613a3e565b6144556060830185613a3e565b6144626080830184613a3e565b9695505050505050565b7f4d455441444154415f4c4f434b45440000000000000000000000000000000000600082015250565b60006144a2600f836138c8565b91506144ad8261446c565b602082019050919050565b600060208201905081810360008301526144d181614495565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261453a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826144fd565b61454486836144fd565b95508019841693508086168417925050509392505050565b600061457761457261456d8461396f565b613b22565b61396f565b9050919050565b6000819050919050565b6145918361455c565b6145a561459d8261457e565b84845461450a565b825550505050565b600090565b6145ba6145ad565b6145c5818484614588565b505050565b5b818110156145e9576145de6000826145b2565b6001810190506145cb565b5050565b601f82111561462e576145ff816144d8565b614608846144ed565b81016020851015614617578190505b61462b614623856144ed565b8301826145ca565b50505b505050565b600082821c905092915050565b600061465160001984600802614633565b1980831691505092915050565b600061466a8383614640565b9150826002028217905092915050565b614683826138bd565b67ffffffffffffffff81111561469c5761469b613ba6565b5b6146a68254614241565b6146b18282856145ed565b600060209050601f8311600181146146e457600084156146d2578287015190505b6146dc858261465e565b865550614744565b601f1984166146f2866144d8565b60005b8281101561471a578489015182556001820191506020850194506020810190506146f5565b868310156147375784890151614733601f891682614640565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f41495244524f50204e4f54204143544956450000000000000000000000000000600082015250565b60006147b16012836138c8565b91506147bc8261477b565b602082019050919050565b600060208201905081810360008301526147e0816147a4565b9050919050565b60006147f28261396f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036148245761482361434a565b5b600182019050919050565b60006040820190506148446000830185613893565b6148516020830184613893565b9392505050565b60008151905061486781613fd6565b92915050565b6000602082840312156148835761488261379c565b5b600061489184828501614858565b91505092915050565b7f496e76616c696420746f6b656e20494400000000000000000000000000000000600082015250565b60006148d06010836138c8565b91506148db8261489a565b602082019050919050565b600060208201905081810360008301526148ff816148c3565b9050919050565b600081519050614915816139d2565b92915050565b6000602082840312156149315761493061379c565b5b600061493f84828501614906565b91505092915050565b7f4e6f7420746865206f776e6572206f6620746865204e46540000000000000000600082015250565b600061497e6018836138c8565b915061498982614948565b602082019050919050565b600060208201905081810360008301526149ad81614971565b9050919050565b7f4e6f7420617070726f76656420746f206d616e616765204e4654000000000000600082015250565b60006149ea601a836138c8565b91506149f5826149b4565b602082019050919050565b60006020820190508181036000830152614a19816149dd565b9050919050565b6000606082019050614a356000830186613893565b614a426020830185613893565b614a4f6040830184613a3e565b949350505050565b7f496e73756666696369656e74204552433230206465706f736974000000000000600082015250565b6000614a8d601a836138c8565b9150614a9882614a57565b602082019050919050565b60006020820190508181036000830152614abc81614a80565b9050919050565b6000614ace8261396f565b9150614ad98361396f565b9250828202614ae78161396f565b91508282048414831517614afe57614afd61434a565b5b5092915050565b600081519050614b1481613979565b92915050565b600060208284031215614b3057614b2f61379c565b5b6000614b3e84828501614b05565b91505092915050565b7f4572726f723a205472616e73666572206e6f7420617070726f76656400000000600082015250565b6000614b7d601c836138c8565b9150614b8882614b47565b602082019050919050565b60006020820190508181036000830152614bac81614b70565b9050919050565b600081905092915050565b6000614bc9826138bd565b614bd38185614bb3565b9350614be38185602086016138d9565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614c25600583614bb3565b9150614c3082614bef565b600582019050919050565b6000614c478284614bbe565b9150614c5282614c18565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cb96026836138c8565b9150614cc482614c5d565b604082019050919050565b60006020820190508181036000830152614ce881614cac565b9050919050565b6000604082019050614d046000830185613893565b614d116020830184613a3e565b9392505050565b600081519050919050565b600082825260208201905092915050565b6000614d3f82614d18565b614d498185614d23565b9350614d598185602086016138d9565b614d6281613903565b840191505092915050565b6000608082019050614d826000830187613893565b614d8f6020830186613893565b614d9c6040830185613a3e565b8181036060830152614dae8184614d34565b905095945050505050565b600081519050614dc8816137d2565b92915050565b600060208284031215614de457614de361379c565b5b6000614df284828501614db9565b91505092915050565b6000614e078285614bbe565b9150614e138284614bbe565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e598261396f565b9150614e648361396f565b925082614e7457614e73614e1f565b5b828204905092915050565b6000614e8a8261396f565b9150614e958361396f565b9250828203905081811115614ead57614eac61434a565b5b92915050565b6000614ebe8261396f565b9150614ec98361396f565b925082614ed957614ed8614e1f565b5b82820690509291505056fea2646970667358221220acaf6e9cf031a9a7a52b04e831d91e57cb39ecc74c74888389752935e40b650764736f6c63430008130033
Deployed Bytecode Sourcemap
122446:8119:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78801:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;122921:64;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;127646:138;;;:::i;:::-;;81946:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83520:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83075:379;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78050:303;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84451:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;123141:69;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;123368;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;126495:866;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;115140:143;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84692:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;122992:67;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;128479:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;122715:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;129056:820;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81754:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;123998:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;122807:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;128181:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79186:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;128063:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68761:103;;;:::i;:::-;;122748:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68110:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82115:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;122844:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;128291:75;;;:::i;:::-;;123066:68;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;130028:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;123620:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;123663:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84948:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;125321:767;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;128374:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;126096:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;124652:462;;;:::i;:::-;;128759:180;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;123808:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;123217:74;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;122882:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84195:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;123582:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;127792:153;;;:::i;:::-;;69019:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;127953:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;130381:181;;;:::i;:::-;;78801:321;78919:4;78971:25;78956:40;;;:11;:40;;;;:105;;;;79028:33;79013:48;;;:11;:48;;;;78956:105;:158;;;;79078:36;79102:11;79078:23;:36::i;:::-;78956:158;78936:178;;78801:321;;;:::o;122921:64::-;;;;;;;;;;;;;:::o;127646:138::-;68341:12;:10;:12::i;:::-;68330:23;;:7;:5;:7::i;:::-;:23;;;68322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;127720:12:::1;;;;;;;;;;;127719:13;127704:12;;:28;;;;;;;;;;;;;;;;;;127748;127763:12;;;;;;;;;;;127748:28;;;;;;:::i;:::-;;;;;;;;127646:138::o:0;81946:100::-;82000:13;82033:5;82026:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81946:100;:::o;83520:220::-;83604:7;83629:16;83637:7;83629;:16::i;:::-;83624:64;;83654:34;;;;;;;;;;;;;;83624:64;83708:15;:24;83724:7;83708:24;;;;;;;;;;;;;;;;;;;;;83701:31;;83520:220;;;:::o;83075:379::-;83156:13;83172:24;83188:7;83172:15;:24::i;:::-;83156:40;;83217:5;83211:11;;:2;:11;;;83207:48;;83231:24;;;;;;;;;;;;;;83207:48;83288:5;83272:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;83298:37;83315:5;83322:12;:10;:12::i;:::-;83298:16;:37::i;:::-;83297:38;83272:63;83268:138;;;83359:35;;;;;;;;;;;;;;83268:138;83418:28;83427:2;83431:7;83440:5;83418:8;:28::i;:::-;83145:309;83075:379;;:::o;78050:303::-;78094:7;78319:15;:13;:15::i;:::-;78304:12;;78288:13;;:28;:46;78281:53;;78050:303;:::o;84451:170::-;84585:28;84595:4;84601:2;84605:7;84585:9;:28::i;:::-;84451:170;;;:::o;123141:69::-;;;;;;;;;;;;;:::o;123368:::-;;;;;;;;;;;;;:::o;126495:866::-;73668:1;74266:7;;:19;74258:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;73668:1;74399:7;:18;;;;126668:12:::1;;;;;;;;;;;126660:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;126748:32;126762:7;;;;;;;;;;;126771:8;126748:13;:32::i;:::-;126791:33;126805:8;;;;;;;;;;;126815;126791:13;:33::i;:::-;126835;126849:8;;;;;;;;;;;126859;126835:13;:33::i;:::-;126879;126893:8;;;;;;;;;;;126903;126879:13;:33::i;:::-;126951:10;:8;:10::i;:::-;127005:15;127039:1;127023:13;:11;:13::i;:::-;:17;;;;:::i;:::-;127005:35;;127070:9;;127059:7;:20;;127051:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;127103:24;127113:10;127125:1;127103:9;:24::i;:::-;127210:10;127184:169;;;127235:8;127258;127281;127304;127327:15;127184:169;;;;;;;;;;:::i;:::-;;;;;;;;126649:712;73624:1:::0;74578:7;:22;;;;126495:866;;;;:::o;115140:143::-;115240:42;115140:143;:::o;84692:185::-;84830:39;84847:4;84853:2;84857:7;84830:39;;;;;;;;;;;;:16;:39::i;:::-;84692:185;;;:::o;122992:67::-;;;;;;;;;;;;;:::o;128479:150::-;68341:12;:10;:12::i;:::-;68330:23;;:7;:5;:7::i;:::-;:23;;;68322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;128561:6:::1;;;;;;;;;;;128560:7;128552:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;128614:7;128598:13;:23;;;;;;:::i;:::-;;128479:150:::0;:::o;122715:26::-;;;;;;;;;;;;;:::o;129056:820::-;129147:16;129206:18;129241:16;129251:5;129241:9;:16::i;:::-;129227:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129206:52;;129273:11;129287:13;;129273:27;;129315:19;129349:25;129394:9;129389:446;129409:3;129405:1;:7;129389:446;;;129438:31;129472:11;:14;129484:1;129472:14;;;;;;;;;;;129438:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129509:9;:16;;;129505:73;;;129550:8;;;129505:73;129626:1;129600:28;;:9;:14;;;:28;;;129596:111;;129673:9;:14;;;129653:34;;129596:111;129750:5;129729:26;;:17;:26;;;129725:95;;129799:1;129780;129782:13;;;;;;129780:16;;;;;;;;:::i;:::-;;;;;;;:20;;;;;129725:95;129419:416;129389:446;129414:3;;;;;;;129389:446;;;;129856:1;129849:8;;;;;;129056:820;;;:::o;81754:125::-;81818:7;81845:21;81858:7;81845:12;:21::i;:::-;:26;;;81838:33;;81754:125;;;:::o;123998:368::-;68341:12;:10;:12::i;:::-;68330:23;;:7;:5;:7::i;:::-;:23;;;68322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;124132:15:::1;::::0;::::1;;;;;;;;124124:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;124188:9;124183:176;124207:5;;:12;;124203:1;:16;124183:176;;;124279:9;;124265:7;;124273:1;124265:10;;;;;;;:::i;:::-;;;;;;;;124249:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:39;;124241:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;124316:31;124326:5;;124332:1;124326:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;124336:7;;124344:1;124336:10;;;;;;;:::i;:::-;;;;;;;;124316:9;:31::i;:::-;124221:3;;;;;:::i;:::-;;;;124183:176;;;;123998:368:::0;;;;:::o;122807:30::-;;;;:::o;128181:102::-;68341:12;:10;:12::i;:::-;68330:23;;:7;:5;:7::i;:::-;:23;;;68322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;128265:10:::1;128253:9;:22;;;;128181:102:::0;:::o;79186:206::-;79250:7;79291:1;79274:19;;:5;:19;;;79270:60;;79302:28;;;;;;;;;;;;;;79270:60;79356:12;:19;79369:5;79356:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;79348:36;;79341:43;;79186:206;;;:::o;128063:110::-;68341:12;:10;:12::i;:::-;68330:23;;:7;:5;:7::i;:::-;:23;;;68322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;128153:12:::1;128139:11;:26;;;;128063:110:::0;:::o;68761:103::-;68341:12;:10;:12::i;:::-;68330:23;;:7;:5;:7::i;:::-;:23;;;68322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68826:30:::1;68853:1;68826:18;:30::i;:::-;68761:103::o:0;122748:24::-;;;;;;;;;;;;;:::o;68110:87::-;68156:7;68183:6;;;;;;;;;;;68176:13;;68110:87;:::o;82115:104::-;82171:13;82204:7;82197:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82115:104;:::o;122844:31::-;;;;:::o;128291:75::-;68341:12;:10;:12::i;:::-;68330:23;;:7;:5;:7::i;:::-;:23;;;68322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;128354:4:::1;128345:6;;:13;;;;;;;;;;;;;;;;;;128291:75::o:0;123066:68::-;;;;;;;;;;;;;:::o;130028:201::-;130157:8;117409:1;115240:42;117361:45;;;:49;117357:318;;;115240:42;117450;;;117523:4;117551:8;117450:128;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;117427:237;;117639:8;117620:28;;;;;;;;;;;:::i;:::-;;;;;;;;117427:237;117357:318;130178:43:::1;130202:8;130212;130178:23;:43::i;:::-;130028:201:::0;;;:::o;123620:34::-;;;;;;;;;;;;:::o;123663:54::-;;;;;;;;;;;;;;;;;:::o;84948:406::-;85115:28;85125:4;85131:2;85135:7;85115:9;:28::i;:::-;85172:15;:2;:13;;;:15::i;:::-;:89;;;;;85205:56;85236:4;85242:2;85246:7;85255:5;85205:30;:56::i;:::-;85204:57;85172:89;85154:193;;;85295:40;;;;;;;;;;;;;;85154:193;84948:406;;;;:::o;125321:767::-;125425:1;125415:7;:11;125407:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;125516:19;125546:18;125516:49;;125689:10;125657:42;;:11;:19;;;125677:7;125657:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:42;;;125635:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;125904:4;125860:49;;:11;:23;;;125884:7;125860:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;;125838:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;126025:11;:28;;;126054:10;126066:4;;;;;;;;;;;126072:7;126025:55;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125396:692;125321:767;;:::o;128374:97::-;128423:7;128450:13;:11;:13::i;:::-;128443:20;;128374:97;:::o;126096:190::-;126169:9;;126159:6;:19;;126151:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;126220:10;;;;;;;;;;;:23;;;126244:10;126264:4;126271:6;126220:58;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;126096:190;:::o;124652:462::-;124716:18;124749:7;124737:9;;:19;;;;:::i;:::-;124716:40;;124909:10;124852:16;;;;;;;;;;;:26;;;124879:10;124899:4;124852:53;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:67;;124830:145;;;;;;;;;;;;:::i;:::-;;;;;;;;;125038:16;;;;;;;;;;;:29;;;125068:10;125088:4;125095:10;125038:68;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;124679:435;124652:462::o;128759:180::-;128840:13;128897:23;128912:7;128897:14;:23::i;:::-;128880:50;;;;;;;;:::i;:::-;;;;;;;;;;;;;128866:65;;128759:180;;;:::o;123808:18::-;;;;;;;;;;;;;:::o;123217:74::-;;;;;;;;;;;;;:::o;122882:30::-;;;;:::o;84195:189::-;84317:4;84341:18;:25;84360:5;84341:25;;;;;;;;;;;;;;;:35;84367:8;84341:35;;;;;;;;;;;;;;;;;;;;;;;;;84334:42;;84195:189;;;;:::o;123582:31::-;;;;;;;;;;;;;:::o;127792:153::-;68341:12;:10;:12::i;:::-;68330:23;;:7;:5;:7::i;:::-;:23;;;68322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;127872:15:::1;::::0;::::1;;;;;;;;127871:16;127853:15;::::0;:34:::1;;;;;;;;;;;;;;;;;;127903;127921:15;::::0;::::1;;;;;;;;127903:34;;;;;;:::i;:::-;;;;;;;;127792:153::o:0;69019:238::-;68341:12;:10;:12::i;:::-;68330:23;;:7;:5;:7::i;:::-;:23;;;68322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69142:1:::1;69122:22;;:8;:22;;::::0;69100:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;69221:28;69240:8;69221:18;:28::i;:::-;69019:238:::0;:::o;127953:102::-;68341:12;:10;:12::i;:::-;68330:23;;:7;:5;:7::i;:::-;:23;;;68322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;128037:10:::1;128025:9;:22;;;;127953:102:::0;:::o;130381:181::-;68341:12;:10;:12::i;:::-;68330:23;;:7;:5;:7::i;:::-;:23;;;68322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;130434:15:::1;130452:16;;;;;;;;;;;:26;;;130487:4;130452:41;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;130434:59;;130504:16;;;;;;;;;;;:25;;;130530:14;;;;;;;;;;;130546:7;130504:50;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;130423:139;130381:181::o:0;37730:173::-;37831:4;37870:25;37855:40;;;:11;:40;;;;37848:47;;37730:173;;;:::o;34754:98::-;34807:7;34834:10;34827:17;;34754:98;:::o;85609:213::-;85666:4;85722:7;85703:15;:13;:15::i;:::-;:26;;:66;;;;;85756:13;;85746:7;:23;85703:66;:111;;;;;85787:11;:20;85799:7;85787:20;;;;;;;;;;;:27;;;;;;;;;;;;85786:28;85703:111;85683:131;;85609:213;;;:::o;93962:162::-;94070:2;94043:15;:24;94059:7;94043:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;94108:7;94104:2;94088:28;;94097:5;94088:28;;;;;;;;;;;;93962:162;;;:::o;128947:101::-;129012:7;129039:1;129032:8;;128947:101;:::o;88939:2096::-;89020:35;89058:21;89071:7;89058:12;:21::i;:::-;89020:59;;89118:4;89096:26;;:13;:18;;;:26;;;89092:67;;89131:28;;;;;;;;;;;;;;89092:67;89172:22;89214:4;89198:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;89235:36;89252:4;89258:12;:10;:12::i;:::-;89235:16;:36::i;:::-;89198:73;:126;;;;89312:12;:10;:12::i;:::-;89288:36;;:20;89300:7;89288:11;:20::i;:::-;:36;;;89198:126;89172:153;;89343:17;89338:66;;89369:35;;;;;;;;;;;;;;89338:66;89433:1;89419:16;;:2;:16;;;89415:52;;89444:23;;;;;;;;;;;;;;89415:52;89480:43;89502:4;89508:2;89512:7;89521:1;89480:21;:43::i;:::-;89588:35;89605:1;89609:7;89618:4;89588:8;:35::i;:::-;89949:1;89919:12;:18;89932:4;89919:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89993:1;89965:12;:16;89978:2;89965:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90011:31;90045:11;:20;90057:7;90045:20;;;;;;;;;;;90011:54;;90096:2;90080:8;:13;;;:18;;;;;;;;;;;;;;;;;;90146:15;90113:8;:23;;;:49;;;;;;;;;;;;;;;;;;90414:19;90446:1;90436:7;:11;90414:33;;90462:31;90496:11;:24;90508:11;90496:24;;;;;;;;;;;90462:58;;90564:1;90539:27;;:8;:13;;;;;;;;;;;;:27;;;90535:384;;90749:13;;90734:11;:28;90730:174;;90803:4;90787:8;:13;;;:20;;;;;;;;;;;;;;;;;;90856:13;:28;;;90830:8;:23;;;:54;;;;;;;;;;;;;;;;;;90730:174;90535:384;89894:1036;;;90966:7;90962:2;90947:27;;90956:4;90947:27;;;;;;;;;;;;90985:42;91006:4;91012:2;91016:7;91025:1;90985:20;:42::i;:::-;89009:2026;;88939:2096;;;:::o;85830:104::-;85899:27;85909:2;85913:8;85899:27;;;;;;;;;;;;:9;:27::i;:::-;85830:104;;:::o;80567:1125::-;80645:21;;:::i;:::-;80679:12;80694:7;80679:22;;80762:4;80743:15;:13;:15::i;:::-;:23;;:47;;;;;80777:13;;80770:4;:20;80743:47;80739:886;;;80811:31;80845:11;:17;80857:4;80845:17;;;;;;;;;;;80811:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80886:9;:16;;;80881:729;;80957:1;80931:28;;:9;:14;;;:28;;;80927:101;;80995:9;80988:16;;;;;;80927:101;81330:261;81337:4;81330:261;;;81370:6;;;;;;;;81415:11;:17;81427:4;81415:17;;;;;;;;;;;81403:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81489:1;81463:28;;:9;:14;;;:28;;;81459:109;;81531:9;81524:16;;;;;;81459:109;81330:261;;;80881:729;80792:833;80739:886;81653:31;;;;;;;;;;;;;;80567:1125;;;;:::o;69417:191::-;69491:16;69510:6;;;;;;;;;;;69491:25;;69536:8;69527:6;;:17;;;;;;;;;;;;;;;;;;69591:8;69560:40;;69581:8;69560:40;;;;;;;;;;;;69480:128;69417:191;:::o;83812:312::-;83948:12;:10;:12::i;:::-;83936:24;;:8;:24;;;83932:54;;83969:17;;;;;;;;;;;;;;83932:54;84044:8;83999:18;:32;84018:12;:10;:12::i;:::-;83999:32;;;;;;;;;;;;;;;:42;84032:8;83999:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;84097:8;84068:48;;84083:12;:10;:12::i;:::-;84068:48;;;84107:8;84068:48;;;;;;:::i;:::-;;;;;;;;83812:312;;:::o;26392:387::-;26452:4;26660:12;26727:7;26715:20;26707:28;;26770:1;26763:4;:8;26756:15;;;26392:387;;;:::o;94616:772::-;94779:4;94829:2;94813:36;;;94868:12;:10;:12::i;:::-;94899:4;94922:7;94948:5;94813:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;94796:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95156:1;95139:6;:13;:18;95135:235;;95185:40;;;;;;;;;;;;;;95135:235;95328:6;95322:13;95313:6;95309:2;95305:15;95298:38;94796:585;95034:45;;;95024:55;;;:6;:55;;;;95017:62;;;94616:772;;;;;;:::o;82290:381::-;82379:13;82410:16;82418:7;82410;:16::i;:::-;82405:59;;82435:29;;;;;;;;;;;;;;82405:59;82477:21;82501:10;:8;:10::i;:::-;82477:34;;82567:1;82548:7;82542:21;:26;:121;;;;;;;;;;;;;;;;;82612:7;82621:18;:7;:16;:18::i;:::-;82595:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82542:121;82522:141;;;82290:381;;;:::o;96036:159::-;;;;;:::o;96854:158::-;;;;;:::o;86297:163::-;86420:32;86426:2;86430:8;86440:5;86447:4;86420:5;:32::i;:::-;86297:163;;;:::o;128637:114::-;128697:13;128730;128723:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;128637:114;:::o;35221:723::-;35277:13;35507:1;35498:5;:10;35494:53;;35525:10;;;;;;;;;;;;;;;;;;;;;35494:53;35557:12;35572:5;35557:20;;35588:14;35613:78;35628:1;35620:4;:9;35613:78;;35646:8;;;;;:::i;:::-;;;;35677:2;35669:10;;;;;:::i;:::-;;;35613:78;;;35701:19;35733:6;35723:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35701:39;;35751:154;35767:1;35758:5;:10;35751:154;;35795:1;35785:11;;;;;:::i;:::-;;;35862:2;35854:5;:10;;;;:::i;:::-;35841:2;:24;;;;:::i;:::-;35828:39;;35811:6;35818;35811:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;35891:2;35882:11;;;;;:::i;:::-;;;35751:154;;;35929:6;35915:21;;;;;35221:723;;;;:::o;86719:1966::-;86858:20;86881:13;;86858:36;;86923:1;86909:16;;:2;:16;;;86905:48;;86934:19;;;;;;;;;;;;;;86905:48;86980:1;86968:8;:13;86964:44;;86990:18;;;;;;;;;;;;;;86964:44;87021:61;87051:1;87055:2;87059:12;87073:8;87021:21;:61::i;:::-;87394:8;87359:12;:16;87372:2;87359:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87458:8;87418:12;:16;87431:2;87418:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87517:2;87484:11;:25;87496:12;87484:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;87584:15;87534:11;:25;87546:12;87534:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;87617:20;87640:12;87617:35;;87667:11;87696:8;87681:12;:23;87667:37;;87725:4;:23;;;;;87733:15;:2;:13;;;:15::i;:::-;87725:23;87721:832;;;87769:505;87825:12;87821:2;87800:38;;87817:1;87800:38;;;;;;;;;;;;87892:212;87961:1;87994:2;88027:14;;;;;;88072:5;87892:30;:212::i;:::-;87861:365;;88162:40;;;;;;;;;;;;;;87861:365;88269:3;88253:12;:19;87769:505;;88355:12;88338:13;;:29;88334:43;;88369:8;;;88334:43;87721:832;;;88418:120;88474:14;;;;;;88470:2;88449:40;;88466:1;88449:40;;;;;;;;;;;;88533:3;88517:12;:19;88418:120;;87721:832;88583:12;88567:13;:28;;;;87334:1273;;88617:60;88646:1;88650:2;88654:12;88668:8;88617:20;:60::i;:::-;86847:1838;86719:1966;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:118::-;1839:24;1857:5;1839:24;:::i;:::-;1834:3;1827:37;1752:118;;:::o;1876:222::-;1969:4;2007:2;1996:9;1992:18;1984:26;;2020:71;2088:1;2077:9;2073:17;2064:6;2020:71;:::i;:::-;1876:222;;;;:::o;2104:99::-;2156:6;2190:5;2184:12;2174:22;;2104:99;;;:::o;2209:169::-;2293:11;2327:6;2322:3;2315:19;2367:4;2362:3;2358:14;2343:29;;2209:169;;;;:::o;2384:246::-;2465:1;2475:113;2489:6;2486:1;2483:13;2475:113;;;2574:1;2569:3;2565:11;2559:18;2555:1;2550:3;2546:11;2539:39;2511:2;2508:1;2504:10;2499:15;;2475:113;;;2622:1;2613:6;2608:3;2604:16;2597:27;2446:184;2384:246;;;:::o;2636:102::-;2677:6;2728:2;2724:7;2719:2;2712:5;2708:14;2704:28;2694:38;;2636:102;;;:::o;2744:377::-;2832:3;2860:39;2893:5;2860:39;:::i;:::-;2915:71;2979:6;2974:3;2915:71;:::i;:::-;2908:78;;2995:65;3053:6;3048:3;3041:4;3034:5;3030:16;2995:65;:::i;:::-;3085:29;3107:6;3085:29;:::i;:::-;3080:3;3076:39;3069:46;;2836:285;2744:377;;;;:::o;3127:313::-;3240:4;3278:2;3267:9;3263:18;3255:26;;3327:9;3321:4;3317:20;3313:1;3302:9;3298:17;3291:47;3355:78;3428:4;3419:6;3355:78;:::i;:::-;3347:86;;3127:313;;;;:::o;3446:77::-;3483:7;3512:5;3501:16;;3446:77;;;:::o;3529:122::-;3602:24;3620:5;3602:24;:::i;:::-;3595:5;3592:35;3582:63;;3641:1;3638;3631:12;3582:63;3529:122;:::o;3657:139::-;3703:5;3741:6;3728:20;3719:29;;3757:33;3784:5;3757:33;:::i;:::-;3657:139;;;;:::o;3802:329::-;3861:6;3910:2;3898:9;3889:7;3885:23;3881:32;3878:119;;;3916:79;;:::i;:::-;3878:119;4036:1;4061:53;4106:7;4097:6;4086:9;4082:22;4061:53;:::i;:::-;4051:63;;4007:117;3802:329;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:765::-;5953:6;5961;5969;5977;6026:3;6014:9;6005:7;6001:23;5997:33;5994:120;;;6033:79;;:::i;:::-;5994:120;6153:1;6178:53;6223:7;6214:6;6203:9;6199:22;6178:53;:::i;:::-;6168:63;;6124:117;6280:2;6306:53;6351:7;6342:6;6331:9;6327:22;6306:53;:::i;:::-;6296:63;;6251:118;6408:2;6434:53;6479:7;6470:6;6459:9;6455:22;6434:53;:::i;:::-;6424:63;;6379:118;6536:2;6562:53;6607:7;6598:6;6587:9;6583:22;6562:53;:::i;:::-;6552:63;;6507:118;5867:765;;;;;;;:::o;6638:60::-;6666:3;6687:5;6680:12;;6638:60;;;:::o;6704:142::-;6754:9;6787:53;6805:34;6814:24;6832:5;6814:24;:::i;:::-;6805:34;:::i;:::-;6787:53;:::i;:::-;6774:66;;6704:142;;;:::o;6852:126::-;6902:9;6935:37;6966:5;6935:37;:::i;:::-;6922:50;;6852:126;;;:::o;6984:158::-;7066:9;7099:37;7130:5;7099:37;:::i;:::-;7086:50;;6984:158;;;:::o;7148:195::-;7267:69;7330:5;7267:69;:::i;:::-;7262:3;7255:82;7148:195;;:::o;7349:286::-;7474:4;7512:2;7501:9;7497:18;7489:26;;7525:103;7625:1;7614:9;7610:17;7601:6;7525:103;:::i;:::-;7349:286;;;;:::o;7641:117::-;7750:1;7747;7740:12;7764:117;7873:1;7870;7863:12;7887:180;7935:77;7932:1;7925:88;8032:4;8029:1;8022:15;8056:4;8053:1;8046:15;8073:281;8156:27;8178:4;8156:27;:::i;:::-;8148:6;8144:40;8286:6;8274:10;8271:22;8250:18;8238:10;8235:34;8232:62;8229:88;;;8297:18;;:::i;:::-;8229:88;8337:10;8333:2;8326:22;8116:238;8073:281;;:::o;8360:129::-;8394:6;8421:20;;:::i;:::-;8411:30;;8450:33;8478:4;8470:6;8450:33;:::i;:::-;8360:129;;;:::o;8495:308::-;8557:4;8647:18;8639:6;8636:30;8633:56;;;8669:18;;:::i;:::-;8633:56;8707:29;8729:6;8707:29;:::i;:::-;8699:37;;8791:4;8785;8781:15;8773:23;;8495:308;;;:::o;8809:146::-;8906:6;8901:3;8896;8883:30;8947:1;8938:6;8933:3;8929:16;8922:27;8809:146;;;:::o;8961:425::-;9039:5;9064:66;9080:49;9122:6;9080:49;:::i;:::-;9064:66;:::i;:::-;9055:75;;9153:6;9146:5;9139:21;9191:4;9184:5;9180:16;9229:3;9220:6;9215:3;9211:16;9208:25;9205:112;;;9236:79;;:::i;:::-;9205:112;9326:54;9373:6;9368:3;9363;9326:54;:::i;:::-;9045:341;8961:425;;;;;:::o;9406:340::-;9462:5;9511:3;9504:4;9496:6;9492:17;9488:27;9478:122;;9519:79;;:::i;:::-;9478:122;9636:6;9623:20;9661:79;9736:3;9728:6;9721:4;9713:6;9709:17;9661:79;:::i;:::-;9652:88;;9468:278;9406:340;;;;:::o;9752:509::-;9821:6;9870:2;9858:9;9849:7;9845:23;9841:32;9838:119;;;9876:79;;:::i;:::-;9838:119;10024:1;10013:9;10009:17;9996:31;10054:18;10046:6;10043:30;10040:117;;;10076:79;;:::i;:::-;10040:117;10181:63;10236:7;10227:6;10216:9;10212:22;10181:63;:::i;:::-;10171:73;;9967:287;9752:509;;;;:::o;10267:142::-;10333:9;10366:37;10397:5;10366:37;:::i;:::-;10353:50;;10267:142;;;:::o;10415:163::-;10518:53;10565:5;10518:53;:::i;:::-;10513:3;10506:66;10415:163;;:::o;10584:254::-;10693:4;10731:2;10720:9;10716:18;10708:26;;10744:87;10828:1;10817:9;10813:17;10804:6;10744:87;:::i;:::-;10584:254;;;;:::o;10844:329::-;10903:6;10952:2;10940:9;10931:7;10927:23;10923:32;10920:119;;;10958:79;;:::i;:::-;10920:119;11078:1;11103:53;11148:7;11139:6;11128:9;11124:22;11103:53;:::i;:::-;11093:63;;11049:117;10844:329;;;;:::o;11179:114::-;11246:6;11280:5;11274:12;11264:22;;11179:114;;;:::o;11299:184::-;11398:11;11432:6;11427:3;11420:19;11472:4;11467:3;11463:14;11448:29;;11299:184;;;;:::o;11489:132::-;11556:4;11579:3;11571:11;;11609:4;11604:3;11600:14;11592:22;;11489:132;;;:::o;11627:108::-;11704:24;11722:5;11704:24;:::i;:::-;11699:3;11692:37;11627:108;;:::o;11741:179::-;11810:10;11831:46;11873:3;11865:6;11831:46;:::i;:::-;11909:4;11904:3;11900:14;11886:28;;11741:179;;;;:::o;11926:113::-;11996:4;12028;12023:3;12019:14;12011:22;;11926:113;;;:::o;12075:732::-;12194:3;12223:54;12271:5;12223:54;:::i;:::-;12293:86;12372:6;12367:3;12293:86;:::i;:::-;12286:93;;12403:56;12453:5;12403:56;:::i;:::-;12482:7;12513:1;12498:284;12523:6;12520:1;12517:13;12498:284;;;12599:6;12593:13;12626:63;12685:3;12670:13;12626:63;:::i;:::-;12619:70;;12712:60;12765:6;12712:60;:::i;:::-;12702:70;;12558:224;12545:1;12542;12538:9;12533:14;;12498:284;;;12502:14;12798:3;12791:10;;12199:608;;;12075:732;;;;:::o;12813:373::-;12956:4;12994:2;12983:9;12979:18;12971:26;;13043:9;13037:4;13033:20;13029:1;13018:9;13014:17;13007:47;13071:108;13174:4;13165:6;13071:108;:::i;:::-;13063:116;;12813:373;;;;:::o;13192:117::-;13301:1;13298;13291:12;13315:117;13424:1;13421;13414:12;13455:568;13528:8;13538:6;13588:3;13581:4;13573:6;13569:17;13565:27;13555:122;;13596:79;;:::i;:::-;13555:122;13709:6;13696:20;13686:30;;13739:18;13731:6;13728:30;13725:117;;;13761:79;;:::i;:::-;13725:117;13875:4;13867:6;13863:17;13851:29;;13929:3;13921:4;13913:6;13909:17;13899:8;13895:32;13892:41;13889:128;;;13936:79;;:::i;:::-;13889:128;13455:568;;;;;:::o;14046:::-;14119:8;14129:6;14179:3;14172:4;14164:6;14160:17;14156:27;14146:122;;14187:79;;:::i;:::-;14146:122;14300:6;14287:20;14277:30;;14330:18;14322:6;14319:30;14316:117;;;14352:79;;:::i;:::-;14316:117;14466:4;14458:6;14454:17;14442:29;;14520:3;14512:4;14504:6;14500:17;14490:8;14486:32;14483:41;14480:128;;;14527:79;;:::i;:::-;14480:128;14046:568;;;;;:::o;14620:934::-;14742:6;14750;14758;14766;14815:2;14803:9;14794:7;14790:23;14786:32;14783:119;;;14821:79;;:::i;:::-;14783:119;14969:1;14958:9;14954:17;14941:31;14999:18;14991:6;14988:30;14985:117;;;15021:79;;:::i;:::-;14985:117;15134:80;15206:7;15197:6;15186:9;15182:22;15134:80;:::i;:::-;15116:98;;;;14912:312;15291:2;15280:9;15276:18;15263:32;15322:18;15314:6;15311:30;15308:117;;;15344:79;;:::i;:::-;15308:117;15457:80;15529:7;15520:6;15509:9;15505:22;15457:80;:::i;:::-;15439:98;;;;15234:313;14620:934;;;;;;;:::o;15560:141::-;15625:9;15658:37;15689:5;15658:37;:::i;:::-;15645:50;;15560:141;;;:::o;15707:161::-;15809:52;15855:5;15809:52;:::i;:::-;15804:3;15797:65;15707:161;;:::o;15874:252::-;15982:4;16020:2;16009:9;16005:18;15997:26;;16033:86;16116:1;16105:9;16101:17;16092:6;16033:86;:::i;:::-;15874:252;;;;:::o;16132:116::-;16202:21;16217:5;16202:21;:::i;:::-;16195:5;16192:32;16182:60;;16238:1;16235;16228:12;16182:60;16132:116;:::o;16254:133::-;16297:5;16335:6;16322:20;16313:29;;16351:30;16375:5;16351:30;:::i;:::-;16254:133;;;;:::o;16393:468::-;16458:6;16466;16515:2;16503:9;16494:7;16490:23;16486:32;16483:119;;;16521:79;;:::i;:::-;16483:119;16641:1;16666:53;16711:7;16702:6;16691:9;16687:22;16666:53;:::i;:::-;16656:63;;16612:117;16768:2;16794:50;16836:7;16827:6;16816:9;16812:22;16794:50;:::i;:::-;16784:60;;16739:115;16393:468;;;;;:::o;16867:307::-;16928:4;17018:18;17010:6;17007:30;17004:56;;;17040:18;;:::i;:::-;17004:56;17078:29;17100:6;17078:29;:::i;:::-;17070:37;;17162:4;17156;17152:15;17144:23;;16867:307;;;:::o;17180:423::-;17257:5;17282:65;17298:48;17339:6;17298:48;:::i;:::-;17282:65;:::i;:::-;17273:74;;17370:6;17363:5;17356:21;17408:4;17401:5;17397:16;17446:3;17437:6;17432:3;17428:16;17425:25;17422:112;;;17453:79;;:::i;:::-;17422:112;17543:54;17590:6;17585:3;17580;17543:54;:::i;:::-;17263:340;17180:423;;;;;:::o;17622:338::-;17677:5;17726:3;17719:4;17711:6;17707:17;17703:27;17693:122;;17734:79;;:::i;:::-;17693:122;17851:6;17838:20;17876:78;17950:3;17942:6;17935:4;17927:6;17923:17;17876:78;:::i;:::-;17867:87;;17683:277;17622:338;;;;:::o;17966:943::-;18061:6;18069;18077;18085;18134:3;18122:9;18113:7;18109:23;18105:33;18102:120;;;18141:79;;:::i;:::-;18102:120;18261:1;18286:53;18331:7;18322:6;18311:9;18307:22;18286:53;:::i;:::-;18276:63;;18232:117;18388:2;18414:53;18459:7;18450:6;18439:9;18435:22;18414:53;:::i;:::-;18404:63;;18359:118;18516:2;18542:53;18587:7;18578:6;18567:9;18563:22;18542:53;:::i;:::-;18532:63;;18487:118;18672:2;18661:9;18657:18;18644:32;18703:18;18695:6;18692:30;18689:117;;;18725:79;;:::i;:::-;18689:117;18830:62;18884:7;18875:6;18864:9;18860:22;18830:62;:::i;:::-;18820:72;;18615:287;17966:943;;;;;;;:::o;18915:474::-;18983:6;18991;19040:2;19028:9;19019:7;19015:23;19011:32;19008:119;;;19046:79;;:::i;:::-;19008:119;19166:1;19191:53;19236:7;19227:6;19216:9;19212:22;19191:53;:::i;:::-;19181:63;;19137:117;19293:2;19319:53;19364:7;19355:6;19344:9;19340:22;19319:53;:::i;:::-;19309:63;;19264:118;18915:474;;;;;:::o;19395:182::-;19535:34;19531:1;19523:6;19519:14;19512:58;19395:182;:::o;19583:366::-;19725:3;19746:67;19810:2;19805:3;19746:67;:::i;:::-;19739:74;;19822:93;19911:3;19822:93;:::i;:::-;19940:2;19935:3;19931:12;19924:19;;19583:366;;;:::o;19955:419::-;20121:4;20159:2;20148:9;20144:18;20136:26;;20208:9;20202:4;20198:20;20194:1;20183:9;20179:17;20172:47;20236:131;20362:4;20236:131;:::i;:::-;20228:139;;19955:419;;;:::o;20380:180::-;20428:77;20425:1;20418:88;20525:4;20522:1;20515:15;20549:4;20546:1;20539:15;20566:320;20610:6;20647:1;20641:4;20637:12;20627:22;;20694:1;20688:4;20684:12;20715:18;20705:81;;20771:4;20763:6;20759:17;20749:27;;20705:81;20833:2;20825:6;20822:14;20802:18;20799:38;20796:84;;20852:18;;:::i;:::-;20796:84;20617:269;20566:320;;;:::o;20892:181::-;21032:33;21028:1;21020:6;21016:14;21009:57;20892:181;:::o;21079:366::-;21221:3;21242:67;21306:2;21301:3;21242:67;:::i;:::-;21235:74;;21318:93;21407:3;21318:93;:::i;:::-;21436:2;21431:3;21427:12;21420:19;;21079:366;;;:::o;21451:419::-;21617:4;21655:2;21644:9;21640:18;21632:26;;21704:9;21698:4;21694:20;21690:1;21679:9;21675:17;21668:47;21732:131;21858:4;21732:131;:::i;:::-;21724:139;;21451:419;;;:::o;21876:165::-;22016:17;22012:1;22004:6;22000:14;21993:41;21876:165;:::o;22047:366::-;22189:3;22210:67;22274:2;22269:3;22210:67;:::i;:::-;22203:74;;22286:93;22375:3;22286:93;:::i;:::-;22404:2;22399:3;22395:12;22388:19;;22047:366;;;:::o;22419:419::-;22585:4;22623:2;22612:9;22608:18;22600:26;;22672:9;22666:4;22662:20;22658:1;22647:9;22643:17;22636:47;22700:131;22826:4;22700:131;:::i;:::-;22692:139;;22419:419;;;:::o;22844:180::-;22892:77;22889:1;22882:88;22989:4;22986:1;22979:15;23013:4;23010:1;23003:15;23030:191;23070:3;23089:20;23107:1;23089:20;:::i;:::-;23084:25;;23123:20;23141:1;23123:20;:::i;:::-;23118:25;;23166:1;23163;23159:9;23152:16;;23187:3;23184:1;23181:10;23178:36;;;23194:18;;:::i;:::-;23178:36;23030:191;;;;:::o;23227:158::-;23367:10;23363:1;23355:6;23351:14;23344:34;23227:158;:::o;23391:365::-;23533:3;23554:66;23618:1;23613:3;23554:66;:::i;:::-;23547:73;;23629:93;23718:3;23629:93;:::i;:::-;23747:2;23742:3;23738:12;23731:19;;23391:365;;;:::o;23762:419::-;23928:4;23966:2;23955:9;23951:18;23943:26;;24015:9;24009:4;24005:20;24001:1;23990:9;23986:17;23979:47;24043:131;24169:4;24043:131;:::i;:::-;24035:139;;23762:419;;;:::o;24187:664::-;24392:4;24430:3;24419:9;24415:19;24407:27;;24444:71;24512:1;24501:9;24497:17;24488:6;24444:71;:::i;:::-;24525:72;24593:2;24582:9;24578:18;24569:6;24525:72;:::i;:::-;24607;24675:2;24664:9;24660:18;24651:6;24607:72;:::i;:::-;24689;24757:2;24746:9;24742:18;24733:6;24689:72;:::i;:::-;24771:73;24839:3;24828:9;24824:19;24815:6;24771:73;:::i;:::-;24187:664;;;;;;;;:::o;24857:165::-;24997:17;24993:1;24985:6;24981:14;24974:41;24857:165;:::o;25028:366::-;25170:3;25191:67;25255:2;25250:3;25191:67;:::i;:::-;25184:74;;25267:93;25356:3;25267:93;:::i;:::-;25385:2;25380:3;25376:12;25369:19;;25028:366;;;:::o;25400:419::-;25566:4;25604:2;25593:9;25589:18;25581:26;;25653:9;25647:4;25643:20;25639:1;25628:9;25624:17;25617:47;25681:131;25807:4;25681:131;:::i;:::-;25673:139;;25400:419;;;:::o;25825:141::-;25874:4;25897:3;25889:11;;25920:3;25917:1;25910:14;25954:4;25951:1;25941:18;25933:26;;25825:141;;;:::o;25972:93::-;26009:6;26056:2;26051;26044:5;26040:14;26036:23;26026:33;;25972:93;;;:::o;26071:107::-;26115:8;26165:5;26159:4;26155:16;26134:37;;26071:107;;;;:::o;26184:393::-;26253:6;26303:1;26291:10;26287:18;26326:97;26356:66;26345:9;26326:97;:::i;:::-;26444:39;26474:8;26463:9;26444:39;:::i;:::-;26432:51;;26516:4;26512:9;26505:5;26501:21;26492:30;;26565:4;26555:8;26551:19;26544:5;26541:30;26531:40;;26260:317;;26184:393;;;;;:::o;26583:142::-;26633:9;26666:53;26684:34;26693:24;26711:5;26693:24;:::i;:::-;26684:34;:::i;:::-;26666:53;:::i;:::-;26653:66;;26583:142;;;:::o;26731:75::-;26774:3;26795:5;26788:12;;26731:75;;;:::o;26812:269::-;26922:39;26953:7;26922:39;:::i;:::-;26983:91;27032:41;27056:16;27032:41;:::i;:::-;27024:6;27017:4;27011:11;26983:91;:::i;:::-;26977:4;26970:105;26888:193;26812:269;;;:::o;27087:73::-;27132:3;27087:73;:::o;27166:189::-;27243:32;;:::i;:::-;27284:65;27342:6;27334;27328:4;27284:65;:::i;:::-;27219:136;27166:189;;:::o;27361:186::-;27421:120;27438:3;27431:5;27428:14;27421:120;;;27492:39;27529:1;27522:5;27492:39;:::i;:::-;27465:1;27458:5;27454:13;27445:22;;27421:120;;;27361:186;;:::o;27553:543::-;27654:2;27649:3;27646:11;27643:446;;;27688:38;27720:5;27688:38;:::i;:::-;27772:29;27790:10;27772:29;:::i;:::-;27762:8;27758:44;27955:2;27943:10;27940:18;27937:49;;;27976:8;27961:23;;27937:49;27999:80;28055:22;28073:3;28055:22;:::i;:::-;28045:8;28041:37;28028:11;27999:80;:::i;:::-;27658:431;;27643:446;27553:543;;;:::o;28102:117::-;28156:8;28206:5;28200:4;28196:16;28175:37;;28102:117;;;;:::o;28225:169::-;28269:6;28302:51;28350:1;28346:6;28338:5;28335:1;28331:13;28302:51;:::i;:::-;28298:56;28383:4;28377;28373:15;28363:25;;28276:118;28225:169;;;;:::o;28399:295::-;28475:4;28621:29;28646:3;28640:4;28621:29;:::i;:::-;28613:37;;28683:3;28680:1;28676:11;28670:4;28667:21;28659:29;;28399:295;;;;:::o;28699:1395::-;28816:37;28849:3;28816:37;:::i;:::-;28918:18;28910:6;28907:30;28904:56;;;28940:18;;:::i;:::-;28904:56;28984:38;29016:4;29010:11;28984:38;:::i;:::-;29069:67;29129:6;29121;29115:4;29069:67;:::i;:::-;29163:1;29187:4;29174:17;;29219:2;29211:6;29208:14;29236:1;29231:618;;;;29893:1;29910:6;29907:77;;;29959:9;29954:3;29950:19;29944:26;29935:35;;29907:77;30010:67;30070:6;30063:5;30010:67;:::i;:::-;30004:4;29997:81;29866:222;29201:887;;29231:618;29283:4;29279:9;29271:6;29267:22;29317:37;29349:4;29317:37;:::i;:::-;29376:1;29390:208;29404:7;29401:1;29398:14;29390:208;;;29483:9;29478:3;29474:19;29468:26;29460:6;29453:42;29534:1;29526:6;29522:14;29512:24;;29581:2;29570:9;29566:18;29553:31;;29427:4;29424:1;29420:12;29415:17;;29390:208;;;29626:6;29617:7;29614:19;29611:179;;;29684:9;29679:3;29675:19;29669:26;29727:48;29769:4;29761:6;29757:17;29746:9;29727:48;:::i;:::-;29719:6;29712:64;29634:156;29611:179;29836:1;29832;29824:6;29820:14;29816:22;29810:4;29803:36;29238:611;;;29201:887;;28791:1303;;;28699:1395;;:::o;30100:180::-;30148:77;30145:1;30138:88;30245:4;30242:1;30235:15;30269:4;30266:1;30259:15;30286:168;30426:20;30422:1;30414:6;30410:14;30403:44;30286:168;:::o;30460:366::-;30602:3;30623:67;30687:2;30682:3;30623:67;:::i;:::-;30616:74;;30699:93;30788:3;30699:93;:::i;:::-;30817:2;30812:3;30808:12;30801:19;;30460:366;;;:::o;30832:419::-;30998:4;31036:2;31025:9;31021:18;31013:26;;31085:9;31079:4;31075:20;31071:1;31060:9;31056:17;31049:47;31113:131;31239:4;31113:131;:::i;:::-;31105:139;;30832:419;;;:::o;31257:233::-;31296:3;31319:24;31337:5;31319:24;:::i;:::-;31310:33;;31365:66;31358:5;31355:77;31352:103;;31435:18;;:::i;:::-;31352:103;31482:1;31475:5;31471:13;31464:20;;31257:233;;;:::o;31496:332::-;31617:4;31655:2;31644:9;31640:18;31632:26;;31668:71;31736:1;31725:9;31721:17;31712:6;31668:71;:::i;:::-;31749:72;31817:2;31806:9;31802:18;31793:6;31749:72;:::i;:::-;31496:332;;;;;:::o;31834:137::-;31888:5;31919:6;31913:13;31904:22;;31935:30;31959:5;31935:30;:::i;:::-;31834:137;;;;:::o;31977:345::-;32044:6;32093:2;32081:9;32072:7;32068:23;32064:32;32061:119;;;32099:79;;:::i;:::-;32061:119;32219:1;32244:61;32297:7;32288:6;32277:9;32273:22;32244:61;:::i;:::-;32234:71;;32190:125;31977:345;;;;:::o;32328:166::-;32468:18;32464:1;32456:6;32452:14;32445:42;32328:166;:::o;32500:366::-;32642:3;32663:67;32727:2;32722:3;32663:67;:::i;:::-;32656:74;;32739:93;32828:3;32739:93;:::i;:::-;32857:2;32852:3;32848:12;32841:19;;32500:366;;;:::o;32872:419::-;33038:4;33076:2;33065:9;33061:18;33053:26;;33125:9;33119:4;33115:20;33111:1;33100:9;33096:17;33089:47;33153:131;33279:4;33153:131;:::i;:::-;33145:139;;32872:419;;;:::o;33297:143::-;33354:5;33385:6;33379:13;33370:22;;33401:33;33428:5;33401:33;:::i;:::-;33297:143;;;;:::o;33446:351::-;33516:6;33565:2;33553:9;33544:7;33540:23;33536:32;33533:119;;;33571:79;;:::i;:::-;33533:119;33691:1;33716:64;33772:7;33763:6;33752:9;33748:22;33716:64;:::i;:::-;33706:74;;33662:128;33446:351;;;;:::o;33803:174::-;33943:26;33939:1;33931:6;33927:14;33920:50;33803:174;:::o;33983:366::-;34125:3;34146:67;34210:2;34205:3;34146:67;:::i;:::-;34139:74;;34222:93;34311:3;34222:93;:::i;:::-;34340:2;34335:3;34331:12;34324:19;;33983:366;;;:::o;34355:419::-;34521:4;34559:2;34548:9;34544:18;34536:26;;34608:9;34602:4;34598:20;34594:1;34583:9;34579:17;34572:47;34636:131;34762:4;34636:131;:::i;:::-;34628:139;;34355:419;;;:::o;34780:176::-;34920:28;34916:1;34908:6;34904:14;34897:52;34780:176;:::o;34962:366::-;35104:3;35125:67;35189:2;35184:3;35125:67;:::i;:::-;35118:74;;35201:93;35290:3;35201:93;:::i;:::-;35319:2;35314:3;35310:12;35303:19;;34962:366;;;:::o;35334:419::-;35500:4;35538:2;35527:9;35523:18;35515:26;;35587:9;35581:4;35577:20;35573:1;35562:9;35558:17;35551:47;35615:131;35741:4;35615:131;:::i;:::-;35607:139;;35334:419;;;:::o;35759:442::-;35908:4;35946:2;35935:9;35931:18;35923:26;;35959:71;36027:1;36016:9;36012:17;36003:6;35959:71;:::i;:::-;36040:72;36108:2;36097:9;36093:18;36084:6;36040:72;:::i;:::-;36122;36190:2;36179:9;36175:18;36166:6;36122:72;:::i;:::-;35759:442;;;;;;:::o;36207:176::-;36347:28;36343:1;36335:6;36331:14;36324:52;36207:176;:::o;36389:366::-;36531:3;36552:67;36616:2;36611:3;36552:67;:::i;:::-;36545:74;;36628:93;36717:3;36628:93;:::i;:::-;36746:2;36741:3;36737:12;36730:19;;36389:366;;;:::o;36761:419::-;36927:4;36965:2;36954:9;36950:18;36942:26;;37014:9;37008:4;37004:20;37000:1;36989:9;36985:17;36978:47;37042:131;37168:4;37042:131;:::i;:::-;37034:139;;36761:419;;;:::o;37186:410::-;37226:7;37249:20;37267:1;37249:20;:::i;:::-;37244:25;;37283:20;37301:1;37283:20;:::i;:::-;37278:25;;37338:1;37335;37331:9;37360:30;37378:11;37360:30;:::i;:::-;37349:41;;37539:1;37530:7;37526:15;37523:1;37520:22;37500:1;37493:9;37473:83;37450:139;;37569:18;;:::i;:::-;37450:139;37234:362;37186:410;;;;:::o;37602:143::-;37659:5;37690:6;37684:13;37675:22;;37706:33;37733:5;37706:33;:::i;:::-;37602:143;;;;:::o;37751:351::-;37821:6;37870:2;37858:9;37849:7;37845:23;37841:32;37838:119;;;37876:79;;:::i;:::-;37838:119;37996:1;38021:64;38077:7;38068:6;38057:9;38053:22;38021:64;:::i;:::-;38011:74;;37967:128;37751:351;;;;:::o;38108:178::-;38248:30;38244:1;38236:6;38232:14;38225:54;38108:178;:::o;38292:366::-;38434:3;38455:67;38519:2;38514:3;38455:67;:::i;:::-;38448:74;;38531:93;38620:3;38531:93;:::i;:::-;38649:2;38644:3;38640:12;38633:19;;38292:366;;;:::o;38664:419::-;38830:4;38868:2;38857:9;38853:18;38845:26;;38917:9;38911:4;38907:20;38903:1;38892:9;38888:17;38881:47;38945:131;39071:4;38945:131;:::i;:::-;38937:139;;38664:419;;;:::o;39089:148::-;39191:11;39228:3;39213:18;;39089:148;;;;:::o;39243:390::-;39349:3;39377:39;39410:5;39377:39;:::i;:::-;39432:89;39514:6;39509:3;39432:89;:::i;:::-;39425:96;;39530:65;39588:6;39583:3;39576:4;39569:5;39565:16;39530:65;:::i;:::-;39620:6;39615:3;39611:16;39604:23;;39353:280;39243:390;;;;:::o;39639:155::-;39779:7;39775:1;39767:6;39763:14;39756:31;39639:155;:::o;39800:400::-;39960:3;39981:84;40063:1;40058:3;39981:84;:::i;:::-;39974:91;;40074:93;40163:3;40074:93;:::i;:::-;40192:1;40187:3;40183:11;40176:18;;39800:400;;;:::o;40206:541::-;40439:3;40461:95;40552:3;40543:6;40461:95;:::i;:::-;40454:102;;40573:148;40717:3;40573:148;:::i;:::-;40566:155;;40738:3;40731:10;;40206:541;;;;:::o;40753:225::-;40893:34;40889:1;40881:6;40877:14;40870:58;40962:8;40957:2;40949:6;40945:15;40938:33;40753:225;:::o;40984:366::-;41126:3;41147:67;41211:2;41206:3;41147:67;:::i;:::-;41140:74;;41223:93;41312:3;41223:93;:::i;:::-;41341:2;41336:3;41332:12;41325:19;;40984:366;;;:::o;41356:419::-;41522:4;41560:2;41549:9;41545:18;41537:26;;41609:9;41603:4;41599:20;41595:1;41584:9;41580:17;41573:47;41637:131;41763:4;41637:131;:::i;:::-;41629:139;;41356:419;;;:::o;41781:332::-;41902:4;41940:2;41929:9;41925:18;41917:26;;41953:71;42021:1;42010:9;42006:17;41997:6;41953:71;:::i;:::-;42034:72;42102:2;42091:9;42087:18;42078:6;42034:72;:::i;:::-;41781:332;;;;;:::o;42119:98::-;42170:6;42204:5;42198:12;42188:22;;42119:98;;;:::o;42223:168::-;42306:11;42340:6;42335:3;42328:19;42380:4;42375:3;42371:14;42356:29;;42223:168;;;;:::o;42397:373::-;42483:3;42511:38;42543:5;42511:38;:::i;:::-;42565:70;42628:6;42623:3;42565:70;:::i;:::-;42558:77;;42644:65;42702:6;42697:3;42690:4;42683:5;42679:16;42644:65;:::i;:::-;42734:29;42756:6;42734:29;:::i;:::-;42729:3;42725:39;42718:46;;42487:283;42397:373;;;;:::o;42776:640::-;42971:4;43009:3;42998:9;42994:19;42986:27;;43023:71;43091:1;43080:9;43076:17;43067:6;43023:71;:::i;:::-;43104:72;43172:2;43161:9;43157:18;43148:6;43104:72;:::i;:::-;43186;43254:2;43243:9;43239:18;43230:6;43186:72;:::i;:::-;43305:9;43299:4;43295:20;43290:2;43279:9;43275:18;43268:48;43333:76;43404:4;43395:6;43333:76;:::i;:::-;43325:84;;42776:640;;;;;;;:::o;43422:141::-;43478:5;43509:6;43503:13;43494:22;;43525:32;43551:5;43525:32;:::i;:::-;43422:141;;;;:::o;43569:349::-;43638:6;43687:2;43675:9;43666:7;43662:23;43658:32;43655:119;;;43693:79;;:::i;:::-;43655:119;43813:1;43838:63;43893:7;43884:6;43873:9;43869:22;43838:63;:::i;:::-;43828:73;;43784:127;43569:349;;;;:::o;43924:435::-;44104:3;44126:95;44217:3;44208:6;44126:95;:::i;:::-;44119:102;;44238:95;44329:3;44320:6;44238:95;:::i;:::-;44231:102;;44350:3;44343:10;;43924:435;;;;;:::o;44365:180::-;44413:77;44410:1;44403:88;44510:4;44507:1;44500:15;44534:4;44531:1;44524:15;44551:185;44591:1;44608:20;44626:1;44608:20;:::i;:::-;44603:25;;44642:20;44660:1;44642:20;:::i;:::-;44637:25;;44681:1;44671:35;;44686:18;;:::i;:::-;44671:35;44728:1;44725;44721:9;44716:14;;44551:185;;;;:::o;44742:194::-;44782:4;44802:20;44820:1;44802:20;:::i;:::-;44797:25;;44836:20;44854:1;44836:20;:::i;:::-;44831:25;;44880:1;44877;44873:9;44865:17;;44904:1;44898:4;44895:11;44892:37;;;44909:18;;:::i;:::-;44892:37;44742:194;;;;:::o;44942:176::-;44974:1;44991:20;45009:1;44991:20;:::i;:::-;44986:25;;45025:20;45043:1;45025:20;:::i;:::-;45020:25;;45064:1;45054:35;;45069:18;;:::i;:::-;45054:35;45110:1;45107;45103:9;45098:14;;44942:176;;;;:::o
Swarm Source
ipfs://acaf6e9cf031a9a7a52b04e831d91e57cb39ecc74c74888389752935e40b6507
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.