ERC-721
Overview
Max Total Supply
0 OBJECT
Holders
163
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 OBJECTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ItsSomething
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-28 */ /** *Submitted for verification at Etherscan.io on 2022-05-09 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } pragma solidity ^0.8.4; interface ISomething { function ownerOf(uint256 tokenId) external returns (address); } contract ItsSomething is ERC721, Ownable { using ECDSA for bytes32; // Addresses address public _nothingNftAddress; address public _systemAddress = address(0); uint256 public _startingTokenId = 1; // Token mint values uint256 public constant MAX_TOKEN_SUPPLY = 8888; uint256 public _price = 0.0 ether; bool public _claimsPaused = true; string public _baseTokenURI; // Tracks if address has minted mapping(address => bool) public _minted; constructor() ERC721("SOMETHING", "OBJECT") { } function mintSomething(uint256[] memory tokenIds) external { require(msg.sender == tx.origin, "No bots allowed"); require(!_claimsPaused, "Minting paused"); ISomething something = ISomething(_nothingNftAddress); bool success; for (uint256 i; i < tokenIds.length; i++) { uint256 nothingId = tokenIds[i]; if (something.ownerOf(nothingId) == msg.sender && !_exists(nothingId)) { _mint(msg.sender, nothingId); success = true; } } } /// @notice Minting pause /// @param val True or false function pauseClaim(bool val) external onlyOwner { _claimsPaused = val; } /// @notice Set baseURI /// @param baseURI URI of the IPFS image server function setBaseURI(string memory baseURI) external onlyOwner { _baseTokenURI = baseURI; } /// @notice Get uri of tokens /// @return string Uri function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } /// @notice Set the system address /// @param systemAddress Address to set as systemAddress function setSystemAddress(address systemAddress) external onlyOwner { _systemAddress = systemAddress; } /// @notice Set the Nothing NFT contract address /// @param nothingNftAddress Address of the nothing nft contract function setNothingNftAddress(address nothingNftAddress) external onlyOwner { _nothingNftAddress = nothingNftAddress; } /// @notice Verify hashed data /// param hash Hashed data bundle /// @param signature Signature to check hash against /// @return bool Is verified or not function _isValidSignature(bytes32 hash, bytes memory signature) internal view returns (bool) { require(_systemAddress != address(0), "Invalid system address"); bytes32 signedHash = hash.toEthSignedMessageHash(); return signedHash.recover(signature) == _systemAddress; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKEN_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_claimsPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_nothingNftAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_startingTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_systemAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"mintSomething","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":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pauseClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nothingNftAddress","type":"address"}],"name":"setNothingNftAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"systemAddress","type":"address"}],"name":"setSystemAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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
60806040526000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009556000600a556001600b60006101000a81548160ff0219169083151502179055503480156200007857600080fd5b506040518060400160405280600981526020017f534f4d455448494e4700000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4f424a45435400000000000000000000000000000000000000000000000000008152508160009080519060200190620000fd9291906200020d565b508060019080519060200190620001169291906200020d565b505050620001396200012d6200013f60201b60201c565b6200014760201b60201c565b62000322565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021b90620002bd565b90600052602060002090601f0160209004810192826200023f57600085556200028b565b82601f106200025a57805160ff19168380011785556200028b565b828001600101855582156200028b579182015b828111156200028a5782518255916020019190600101906200026d565b5b5090506200029a91906200029e565b5090565b5b80821115620002b95760008160009055506001016200029f565b5090565b60006002820490506001821680620002d657607f821691505b60208210811415620002ed57620002ec620002f3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6136f180620003326000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638da5cb5b11610104578063c87b56dd116100a2578063e489d51011610071578063e489d51014610506578063e5554d5814610524578063e985e9c514610542578063f2fde38b14610572576101cf565b8063c87b56dd1461047e578063c959d7cf146104ae578063cfc86f7b146104ca578063d5bd264d146104e8576101cf565b8063a22cb465116100de578063a22cb4651461040c578063a442997814610428578063b5225c6514610444578063b88d4fde14610462576101cf565b80638da5cb5b146103b457806395d89b41146103d25780639888cc83146103f0576101cf565b80633fe35ead116101715780636352211e1161014b5780636352211e1461031a57806370a082311461034a578063715018a61461037a5780637de77ecc14610384576101cf565b80633fe35ead146102c457806342842e0e146102e257806355f804b3146102fe576101cf565b8063081812fc116101ad578063081812fc1461023e578063095ea7b31461026e578063235b6ea11461028a57806323b872dd146102a8576101cf565b806301ffc9a7146101d4578063062101971461020457806306fdde0314610220575b600080fd5b6101ee60048036038101906101e9919061267f565b61058e565b6040516101fb9190612b0c565b60405180910390f35b61021e60048036038101906102199190612445565b610670565b005b610228610730565b6040516102359190612b27565b60405180910390f35b61025860048036038101906102539190612712565b6107c2565b6040516102659190612aa5565b60405180910390f35b610288600480360381019061028391906125d9565b610847565b005b61029261095f565b60405161029f9190612d89565b60405180910390f35b6102c260048036038101906102bd91906124d3565b610965565b005b6102cc6109c5565b6040516102d99190612aa5565b60405180910390f35b6102fc60048036038101906102f791906124d3565b6109eb565b005b610318600480360381019061031391906126d1565b610a0b565b005b610334600480360381019061032f9190612712565b610aa1565b6040516103419190612aa5565b60405180910390f35b610364600480360381019061035f9190612445565b610b53565b6040516103719190612d89565b60405180910390f35b610382610c0b565b005b61039e60048036038101906103999190612445565b610c93565b6040516103ab9190612b0c565b60405180910390f35b6103bc610cb3565b6040516103c99190612aa5565b60405180910390f35b6103da610cdd565b6040516103e79190612b27565b60405180910390f35b61040a60048036038101906104059190612656565b610d6f565b005b6104266004803603810190610421919061259d565b610e08565b005b610442600480360381019061043d9190612615565b610e1e565b005b61044c61104e565b6040516104599190612b0c565b60405180910390f35b61047c60048036038101906104779190612522565b611061565b005b61049860048036038101906104939190612712565b6110c3565b6040516104a59190612b27565b60405180910390f35b6104c860048036038101906104c39190612445565b61116a565b005b6104d261122a565b6040516104df9190612b27565b60405180910390f35b6104f06112b8565b6040516104fd9190612d89565b60405180910390f35b61050e6112be565b60405161051b9190612d89565b60405180910390f35b61052c6112c4565b6040516105399190612aa5565b60405180910390f35b61055c60048036038101906105579190612497565b6112ea565b6040516105699190612b0c565b60405180910390f35b61058c60048036038101906105879190612445565b61137e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610669575061066882611476565b5b9050919050565b6106786114e0565b73ffffffffffffffffffffffffffffffffffffffff16610696610cb3565b73ffffffffffffffffffffffffffffffffffffffff16146106ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e390612d09565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000805461073f9061300b565b80601f016020809104026020016040519081016040528092919081815260200182805461076b9061300b565b80156107b85780601f1061078d576101008083540402835291602001916107b8565b820191906000526020600020905b81548152906001019060200180831161079b57829003601f168201915b5050505050905090565b60006107cd826114e8565b61080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390612cc9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085282610aa1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba90612d49565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e26114e0565b73ffffffffffffffffffffffffffffffffffffffff16148061091157506109108161090b6114e0565b6112ea565b5b610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790612c49565b60405180910390fd5b61095a8383611554565b505050565b600a5481565b6109766109706114e0565b8261160d565b6109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90612d69565b60405180910390fd5b6109c08383836116eb565b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a0683838360405180602001604052806000815250611061565b505050565b610a136114e0565b73ffffffffffffffffffffffffffffffffffffffff16610a31610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90612d09565b60405180910390fd5b80600c9080519060200190610a9d9291906121be565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4190612c89565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90612c69565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c136114e0565b73ffffffffffffffffffffffffffffffffffffffff16610c31610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e90612d09565b60405180910390fd5b610c916000611952565b565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610cec9061300b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d189061300b565b8015610d655780601f10610d3a57610100808354040283529160200191610d65565b820191906000526020600020905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b610d776114e0565b73ffffffffffffffffffffffffffffffffffffffff16610d95610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290612d09565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b610e1a610e136114e0565b8383611a18565b5050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390612ce9565b60405180910390fd5b600b60009054906101000a900460ff1615610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390612b69565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000805b8351811015611048576000848281518110610f4b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190503373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610fa59190612d89565b602060405180830381600087803b158015610fbf57600080fd5b505af1158015610fd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff7919061246e565b73ffffffffffffffffffffffffffffffffffffffff16148015611020575061101e816114e8565b155b156110345761102f3382611b85565b600192505b5080806110409061306e565b915050610f07565b50505050565b600b60009054906101000a900460ff1681565b61107261106c6114e0565b8361160d565b6110b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a890612d69565b60405180910390fd5b6110bd84848484611d5f565b50505050565b60606110ce826114e8565b61110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612d29565b60405180910390fd5b6000611117611dbb565b905060008151116111375760405180602001604052806000815250611162565b8061114184611e4d565b604051602001611152929190612a81565b6040516020818303038152906040525b915050919050565b6111726114e0565b73ffffffffffffffffffffffffffffffffffffffff16611190610cb3565b73ffffffffffffffffffffffffffffffffffffffff16146111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd90612d09565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c80546112379061300b565b80601f01602080910402602001604051908101604052809291908181526020018280546112639061300b565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b505050505081565b60095481565b6122b881565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113866114e0565b73ffffffffffffffffffffffffffffffffffffffff166113a4610cb3565b73ffffffffffffffffffffffffffffffffffffffff16146113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190612d09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190612b89565b60405180910390fd5b61147381611952565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166115c783610aa1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611618826114e8565b611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e90612c29565b60405180910390fd5b600061166283610aa1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116d157508373ffffffffffffffffffffffffffffffffffffffff166116b9846107c2565b73ffffffffffffffffffffffffffffffffffffffff16145b806116e257506116e181856112ea565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661170b82610aa1565b73ffffffffffffffffffffffffffffffffffffffff1614611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175890612ba9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890612be9565b60405180910390fd5b6117dc838383611ffa565b6117e7600082611554565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118379190612f21565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461188e9190612e9a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461194d838383611fff565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7e90612c09565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b789190612b0c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec90612ca9565b60405180910390fd5b611bfe816114e8565b15611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3590612bc9565b60405180910390fd5b611c4a60008383611ffa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c9a9190612e9a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d5b60008383611fff565b5050565b611d6a8484846116eb565b611d7684848484612004565b611db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dac90612b49565b60405180910390fd5b50505050565b6060600c8054611dca9061300b565b80601f0160208091040260200160405190810160405280929190818152602001828054611df69061300b565b8015611e435780601f10611e1857610100808354040283529160200191611e43565b820191906000526020600020905b815481529060010190602001808311611e2657829003601f168201915b5050505050905090565b60606000821415611e95576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ff5565b600082905060005b60008214611ec7578080611eb09061306e565b915050600a82611ec09190612ef0565b9150611e9d565b60008167ffffffffffffffff811115611f09577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f3b5781602001600182028036833780820191505090505b5090505b60008514611fee57600182611f549190612f21565b9150600a85611f6391906130b7565b6030611f6f9190612e9a565b60f81b818381518110611fab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fe79190612ef0565b9450611f3f565b8093505050505b919050565b505050565b505050565b60006120258473ffffffffffffffffffffffffffffffffffffffff1661219b565b1561218e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261204e6114e0565b8786866040518563ffffffff1660e01b81526004016120709493929190612ac0565b602060405180830381600087803b15801561208a57600080fd5b505af19250505080156120bb57506040513d601f19601f820116820180604052508101906120b891906126a8565b60015b61213e573d80600081146120eb576040519150601f19603f3d011682016040523d82523d6000602084013e6120f0565b606091505b50600081511415612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d90612b49565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612193565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546121ca9061300b565b90600052602060002090601f0160209004810192826121ec5760008555612233565b82601f1061220557805160ff1916838001178555612233565b82800160010185558215612233579182015b82811115612232578251825591602001919060010190612217565b5b5090506122409190612244565b5090565b5b8082111561225d576000816000905550600101612245565b5090565b600061227461226f84612dc9565b612da4565b9050808382526020820190508285602086028201111561229357600080fd5b60005b858110156122c357816122a98882612430565b845260208401935060208301925050600181019050612296565b5050509392505050565b60006122e06122db84612df5565b612da4565b9050828152602081018484840111156122f857600080fd5b612303848285612fc9565b509392505050565b600061231e61231984612e26565b612da4565b90508281526020810184848401111561233657600080fd5b612341848285612fc9565b509392505050565b6000813590506123588161365f565b92915050565b60008151905061236d8161365f565b92915050565b600082601f83011261238457600080fd5b8135612394848260208601612261565b91505092915050565b6000813590506123ac81613676565b92915050565b6000813590506123c18161368d565b92915050565b6000815190506123d68161368d565b92915050565b600082601f8301126123ed57600080fd5b81356123fd8482602086016122cd565b91505092915050565b600082601f83011261241757600080fd5b813561242784826020860161230b565b91505092915050565b60008135905061243f816136a4565b92915050565b60006020828403121561245757600080fd5b600061246584828501612349565b91505092915050565b60006020828403121561248057600080fd5b600061248e8482850161235e565b91505092915050565b600080604083850312156124aa57600080fd5b60006124b885828601612349565b92505060206124c985828601612349565b9150509250929050565b6000806000606084860312156124e857600080fd5b60006124f686828701612349565b935050602061250786828701612349565b925050604061251886828701612430565b9150509250925092565b6000806000806080858703121561253857600080fd5b600061254687828801612349565b945050602061255787828801612349565b935050604061256887828801612430565b925050606085013567ffffffffffffffff81111561258557600080fd5b612591878288016123dc565b91505092959194509250565b600080604083850312156125b057600080fd5b60006125be85828601612349565b92505060206125cf8582860161239d565b9150509250929050565b600080604083850312156125ec57600080fd5b60006125fa85828601612349565b925050602061260b85828601612430565b9150509250929050565b60006020828403121561262757600080fd5b600082013567ffffffffffffffff81111561264157600080fd5b61264d84828501612373565b91505092915050565b60006020828403121561266857600080fd5b60006126768482850161239d565b91505092915050565b60006020828403121561269157600080fd5b600061269f848285016123b2565b91505092915050565b6000602082840312156126ba57600080fd5b60006126c8848285016123c7565b91505092915050565b6000602082840312156126e357600080fd5b600082013567ffffffffffffffff8111156126fd57600080fd5b61270984828501612406565b91505092915050565b60006020828403121561272457600080fd5b600061273284828501612430565b91505092915050565b61274481612f55565b82525050565b61275381612f67565b82525050565b600061276482612e57565b61276e8185612e6d565b935061277e818560208601612fd8565b612787816131a4565b840191505092915050565b600061279d82612e62565b6127a78185612e7e565b93506127b7818560208601612fd8565b6127c0816131a4565b840191505092915050565b60006127d682612e62565b6127e08185612e8f565b93506127f0818560208601612fd8565b80840191505092915050565b6000612809603283612e7e565b9150612814826131b5565b604082019050919050565b600061282c600e83612e7e565b915061283782613204565b602082019050919050565b600061284f602683612e7e565b915061285a8261322d565b604082019050919050565b6000612872602583612e7e565b915061287d8261327c565b604082019050919050565b6000612895601c83612e7e565b91506128a0826132cb565b602082019050919050565b60006128b8602483612e7e565b91506128c3826132f4565b604082019050919050565b60006128db601983612e7e565b91506128e682613343565b602082019050919050565b60006128fe602c83612e7e565b91506129098261336c565b604082019050919050565b6000612921603883612e7e565b915061292c826133bb565b604082019050919050565b6000612944602a83612e7e565b915061294f8261340a565b604082019050919050565b6000612967602983612e7e565b915061297282613459565b604082019050919050565b600061298a602083612e7e565b9150612995826134a8565b602082019050919050565b60006129ad602c83612e7e565b91506129b8826134d1565b604082019050919050565b60006129d0600f83612e7e565b91506129db82613520565b602082019050919050565b60006129f3602083612e7e565b91506129fe82613549565b602082019050919050565b6000612a16602f83612e7e565b9150612a2182613572565b604082019050919050565b6000612a39602183612e7e565b9150612a44826135c1565b604082019050919050565b6000612a5c603183612e7e565b9150612a6782613610565b604082019050919050565b612a7b81612fbf565b82525050565b6000612a8d82856127cb565b9150612a9982846127cb565b91508190509392505050565b6000602082019050612aba600083018461273b565b92915050565b6000608082019050612ad5600083018761273b565b612ae2602083018661273b565b612aef6040830185612a72565b8181036060830152612b018184612759565b905095945050505050565b6000602082019050612b21600083018461274a565b92915050565b60006020820190508181036000830152612b418184612792565b905092915050565b60006020820190508181036000830152612b62816127fc565b9050919050565b60006020820190508181036000830152612b828161281f565b9050919050565b60006020820190508181036000830152612ba281612842565b9050919050565b60006020820190508181036000830152612bc281612865565b9050919050565b60006020820190508181036000830152612be281612888565b9050919050565b60006020820190508181036000830152612c02816128ab565b9050919050565b60006020820190508181036000830152612c22816128ce565b9050919050565b60006020820190508181036000830152612c42816128f1565b9050919050565b60006020820190508181036000830152612c6281612914565b9050919050565b60006020820190508181036000830152612c8281612937565b9050919050565b60006020820190508181036000830152612ca28161295a565b9050919050565b60006020820190508181036000830152612cc28161297d565b9050919050565b60006020820190508181036000830152612ce2816129a0565b9050919050565b60006020820190508181036000830152612d02816129c3565b9050919050565b60006020820190508181036000830152612d22816129e6565b9050919050565b60006020820190508181036000830152612d4281612a09565b9050919050565b60006020820190508181036000830152612d6281612a2c565b9050919050565b60006020820190508181036000830152612d8281612a4f565b9050919050565b6000602082019050612d9e6000830184612a72565b92915050565b6000612dae612dbf565b9050612dba828261303d565b919050565b6000604051905090565b600067ffffffffffffffff821115612de457612de3613175565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612e1057612e0f613175565b5b612e19826131a4565b9050602081019050919050565b600067ffffffffffffffff821115612e4157612e40613175565b5b612e4a826131a4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ea582612fbf565b9150612eb083612fbf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ee557612ee46130e8565b5b828201905092915050565b6000612efb82612fbf565b9150612f0683612fbf565b925082612f1657612f15613117565b5b828204905092915050565b6000612f2c82612fbf565b9150612f3783612fbf565b925082821015612f4a57612f496130e8565b5b828203905092915050565b6000612f6082612f9f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ff6578082015181840152602081019050612fdb565b83811115613005576000848401525b50505050565b6000600282049050600182168061302357607f821691505b6020821081141561303757613036613146565b5b50919050565b613046826131a4565b810181811067ffffffffffffffff8211171561306557613064613175565b5b80604052505050565b600061307982612fbf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130ac576130ab6130e8565b5b600182019050919050565b60006130c282612fbf565b91506130cd83612fbf565b9250826130dd576130dc613117565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f20626f747320616c6c6f7765640000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61366881612f55565b811461367357600080fd5b50565b61367f81612f67565b811461368a57600080fd5b50565b61369681612f73565b81146136a157600080fd5b50565b6136ad81612fbf565b81146136b857600080fd5b5056fea2646970667358221220d13542e7e7488bd2ce6008d9f44357b3e2249c4db76de3b7d0bce8a1f3764f2f64736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638da5cb5b11610104578063c87b56dd116100a2578063e489d51011610071578063e489d51014610506578063e5554d5814610524578063e985e9c514610542578063f2fde38b14610572576101cf565b8063c87b56dd1461047e578063c959d7cf146104ae578063cfc86f7b146104ca578063d5bd264d146104e8576101cf565b8063a22cb465116100de578063a22cb4651461040c578063a442997814610428578063b5225c6514610444578063b88d4fde14610462576101cf565b80638da5cb5b146103b457806395d89b41146103d25780639888cc83146103f0576101cf565b80633fe35ead116101715780636352211e1161014b5780636352211e1461031a57806370a082311461034a578063715018a61461037a5780637de77ecc14610384576101cf565b80633fe35ead146102c457806342842e0e146102e257806355f804b3146102fe576101cf565b8063081812fc116101ad578063081812fc1461023e578063095ea7b31461026e578063235b6ea11461028a57806323b872dd146102a8576101cf565b806301ffc9a7146101d4578063062101971461020457806306fdde0314610220575b600080fd5b6101ee60048036038101906101e9919061267f565b61058e565b6040516101fb9190612b0c565b60405180910390f35b61021e60048036038101906102199190612445565b610670565b005b610228610730565b6040516102359190612b27565b60405180910390f35b61025860048036038101906102539190612712565b6107c2565b6040516102659190612aa5565b60405180910390f35b610288600480360381019061028391906125d9565b610847565b005b61029261095f565b60405161029f9190612d89565b60405180910390f35b6102c260048036038101906102bd91906124d3565b610965565b005b6102cc6109c5565b6040516102d99190612aa5565b60405180910390f35b6102fc60048036038101906102f791906124d3565b6109eb565b005b610318600480360381019061031391906126d1565b610a0b565b005b610334600480360381019061032f9190612712565b610aa1565b6040516103419190612aa5565b60405180910390f35b610364600480360381019061035f9190612445565b610b53565b6040516103719190612d89565b60405180910390f35b610382610c0b565b005b61039e60048036038101906103999190612445565b610c93565b6040516103ab9190612b0c565b60405180910390f35b6103bc610cb3565b6040516103c99190612aa5565b60405180910390f35b6103da610cdd565b6040516103e79190612b27565b60405180910390f35b61040a60048036038101906104059190612656565b610d6f565b005b6104266004803603810190610421919061259d565b610e08565b005b610442600480360381019061043d9190612615565b610e1e565b005b61044c61104e565b6040516104599190612b0c565b60405180910390f35b61047c60048036038101906104779190612522565b611061565b005b61049860048036038101906104939190612712565b6110c3565b6040516104a59190612b27565b60405180910390f35b6104c860048036038101906104c39190612445565b61116a565b005b6104d261122a565b6040516104df9190612b27565b60405180910390f35b6104f06112b8565b6040516104fd9190612d89565b60405180910390f35b61050e6112be565b60405161051b9190612d89565b60405180910390f35b61052c6112c4565b6040516105399190612aa5565b60405180910390f35b61055c60048036038101906105579190612497565b6112ea565b6040516105699190612b0c565b60405180910390f35b61058c60048036038101906105879190612445565b61137e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610669575061066882611476565b5b9050919050565b6106786114e0565b73ffffffffffffffffffffffffffffffffffffffff16610696610cb3565b73ffffffffffffffffffffffffffffffffffffffff16146106ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e390612d09565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000805461073f9061300b565b80601f016020809104026020016040519081016040528092919081815260200182805461076b9061300b565b80156107b85780601f1061078d576101008083540402835291602001916107b8565b820191906000526020600020905b81548152906001019060200180831161079b57829003601f168201915b5050505050905090565b60006107cd826114e8565b61080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390612cc9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085282610aa1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba90612d49565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e26114e0565b73ffffffffffffffffffffffffffffffffffffffff16148061091157506109108161090b6114e0565b6112ea565b5b610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790612c49565b60405180910390fd5b61095a8383611554565b505050565b600a5481565b6109766109706114e0565b8261160d565b6109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90612d69565b60405180910390fd5b6109c08383836116eb565b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a0683838360405180602001604052806000815250611061565b505050565b610a136114e0565b73ffffffffffffffffffffffffffffffffffffffff16610a31610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90612d09565b60405180910390fd5b80600c9080519060200190610a9d9291906121be565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4190612c89565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90612c69565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c136114e0565b73ffffffffffffffffffffffffffffffffffffffff16610c31610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e90612d09565b60405180910390fd5b610c916000611952565b565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610cec9061300b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d189061300b565b8015610d655780601f10610d3a57610100808354040283529160200191610d65565b820191906000526020600020905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b610d776114e0565b73ffffffffffffffffffffffffffffffffffffffff16610d95610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290612d09565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b610e1a610e136114e0565b8383611a18565b5050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8390612ce9565b60405180910390fd5b600b60009054906101000a900460ff1615610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390612b69565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000805b8351811015611048576000848281518110610f4b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190503373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610fa59190612d89565b602060405180830381600087803b158015610fbf57600080fd5b505af1158015610fd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff7919061246e565b73ffffffffffffffffffffffffffffffffffffffff16148015611020575061101e816114e8565b155b156110345761102f3382611b85565b600192505b5080806110409061306e565b915050610f07565b50505050565b600b60009054906101000a900460ff1681565b61107261106c6114e0565b8361160d565b6110b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a890612d69565b60405180910390fd5b6110bd84848484611d5f565b50505050565b60606110ce826114e8565b61110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612d29565b60405180910390fd5b6000611117611dbb565b905060008151116111375760405180602001604052806000815250611162565b8061114184611e4d565b604051602001611152929190612a81565b6040516020818303038152906040525b915050919050565b6111726114e0565b73ffffffffffffffffffffffffffffffffffffffff16611190610cb3565b73ffffffffffffffffffffffffffffffffffffffff16146111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd90612d09565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c80546112379061300b565b80601f01602080910402602001604051908101604052809291908181526020018280546112639061300b565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b505050505081565b60095481565b6122b881565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113866114e0565b73ffffffffffffffffffffffffffffffffffffffff166113a4610cb3565b73ffffffffffffffffffffffffffffffffffffffff16146113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190612d09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190612b89565b60405180910390fd5b61147381611952565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166115c783610aa1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611618826114e8565b611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e90612c29565b60405180910390fd5b600061166283610aa1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116d157508373ffffffffffffffffffffffffffffffffffffffff166116b9846107c2565b73ffffffffffffffffffffffffffffffffffffffff16145b806116e257506116e181856112ea565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661170b82610aa1565b73ffffffffffffffffffffffffffffffffffffffff1614611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175890612ba9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890612be9565b60405180910390fd5b6117dc838383611ffa565b6117e7600082611554565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118379190612f21565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461188e9190612e9a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461194d838383611fff565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7e90612c09565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b789190612b0c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec90612ca9565b60405180910390fd5b611bfe816114e8565b15611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3590612bc9565b60405180910390fd5b611c4a60008383611ffa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c9a9190612e9a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d5b60008383611fff565b5050565b611d6a8484846116eb565b611d7684848484612004565b611db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dac90612b49565b60405180910390fd5b50505050565b6060600c8054611dca9061300b565b80601f0160208091040260200160405190810160405280929190818152602001828054611df69061300b565b8015611e435780601f10611e1857610100808354040283529160200191611e43565b820191906000526020600020905b815481529060010190602001808311611e2657829003601f168201915b5050505050905090565b60606000821415611e95576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ff5565b600082905060005b60008214611ec7578080611eb09061306e565b915050600a82611ec09190612ef0565b9150611e9d565b60008167ffffffffffffffff811115611f09577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f3b5781602001600182028036833780820191505090505b5090505b60008514611fee57600182611f549190612f21565b9150600a85611f6391906130b7565b6030611f6f9190612e9a565b60f81b818381518110611fab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fe79190612ef0565b9450611f3f565b8093505050505b919050565b505050565b505050565b60006120258473ffffffffffffffffffffffffffffffffffffffff1661219b565b1561218e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261204e6114e0565b8786866040518563ffffffff1660e01b81526004016120709493929190612ac0565b602060405180830381600087803b15801561208a57600080fd5b505af19250505080156120bb57506040513d601f19601f820116820180604052508101906120b891906126a8565b60015b61213e573d80600081146120eb576040519150601f19603f3d011682016040523d82523d6000602084013e6120f0565b606091505b50600081511415612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d90612b49565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612193565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546121ca9061300b565b90600052602060002090601f0160209004810192826121ec5760008555612233565b82601f1061220557805160ff1916838001178555612233565b82800160010185558215612233579182015b82811115612232578251825591602001919060010190612217565b5b5090506122409190612244565b5090565b5b8082111561225d576000816000905550600101612245565b5090565b600061227461226f84612dc9565b612da4565b9050808382526020820190508285602086028201111561229357600080fd5b60005b858110156122c357816122a98882612430565b845260208401935060208301925050600181019050612296565b5050509392505050565b60006122e06122db84612df5565b612da4565b9050828152602081018484840111156122f857600080fd5b612303848285612fc9565b509392505050565b600061231e61231984612e26565b612da4565b90508281526020810184848401111561233657600080fd5b612341848285612fc9565b509392505050565b6000813590506123588161365f565b92915050565b60008151905061236d8161365f565b92915050565b600082601f83011261238457600080fd5b8135612394848260208601612261565b91505092915050565b6000813590506123ac81613676565b92915050565b6000813590506123c18161368d565b92915050565b6000815190506123d68161368d565b92915050565b600082601f8301126123ed57600080fd5b81356123fd8482602086016122cd565b91505092915050565b600082601f83011261241757600080fd5b813561242784826020860161230b565b91505092915050565b60008135905061243f816136a4565b92915050565b60006020828403121561245757600080fd5b600061246584828501612349565b91505092915050565b60006020828403121561248057600080fd5b600061248e8482850161235e565b91505092915050565b600080604083850312156124aa57600080fd5b60006124b885828601612349565b92505060206124c985828601612349565b9150509250929050565b6000806000606084860312156124e857600080fd5b60006124f686828701612349565b935050602061250786828701612349565b925050604061251886828701612430565b9150509250925092565b6000806000806080858703121561253857600080fd5b600061254687828801612349565b945050602061255787828801612349565b935050604061256887828801612430565b925050606085013567ffffffffffffffff81111561258557600080fd5b612591878288016123dc565b91505092959194509250565b600080604083850312156125b057600080fd5b60006125be85828601612349565b92505060206125cf8582860161239d565b9150509250929050565b600080604083850312156125ec57600080fd5b60006125fa85828601612349565b925050602061260b85828601612430565b9150509250929050565b60006020828403121561262757600080fd5b600082013567ffffffffffffffff81111561264157600080fd5b61264d84828501612373565b91505092915050565b60006020828403121561266857600080fd5b60006126768482850161239d565b91505092915050565b60006020828403121561269157600080fd5b600061269f848285016123b2565b91505092915050565b6000602082840312156126ba57600080fd5b60006126c8848285016123c7565b91505092915050565b6000602082840312156126e357600080fd5b600082013567ffffffffffffffff8111156126fd57600080fd5b61270984828501612406565b91505092915050565b60006020828403121561272457600080fd5b600061273284828501612430565b91505092915050565b61274481612f55565b82525050565b61275381612f67565b82525050565b600061276482612e57565b61276e8185612e6d565b935061277e818560208601612fd8565b612787816131a4565b840191505092915050565b600061279d82612e62565b6127a78185612e7e565b93506127b7818560208601612fd8565b6127c0816131a4565b840191505092915050565b60006127d682612e62565b6127e08185612e8f565b93506127f0818560208601612fd8565b80840191505092915050565b6000612809603283612e7e565b9150612814826131b5565b604082019050919050565b600061282c600e83612e7e565b915061283782613204565b602082019050919050565b600061284f602683612e7e565b915061285a8261322d565b604082019050919050565b6000612872602583612e7e565b915061287d8261327c565b604082019050919050565b6000612895601c83612e7e565b91506128a0826132cb565b602082019050919050565b60006128b8602483612e7e565b91506128c3826132f4565b604082019050919050565b60006128db601983612e7e565b91506128e682613343565b602082019050919050565b60006128fe602c83612e7e565b91506129098261336c565b604082019050919050565b6000612921603883612e7e565b915061292c826133bb565b604082019050919050565b6000612944602a83612e7e565b915061294f8261340a565b604082019050919050565b6000612967602983612e7e565b915061297282613459565b604082019050919050565b600061298a602083612e7e565b9150612995826134a8565b602082019050919050565b60006129ad602c83612e7e565b91506129b8826134d1565b604082019050919050565b60006129d0600f83612e7e565b91506129db82613520565b602082019050919050565b60006129f3602083612e7e565b91506129fe82613549565b602082019050919050565b6000612a16602f83612e7e565b9150612a2182613572565b604082019050919050565b6000612a39602183612e7e565b9150612a44826135c1565b604082019050919050565b6000612a5c603183612e7e565b9150612a6782613610565b604082019050919050565b612a7b81612fbf565b82525050565b6000612a8d82856127cb565b9150612a9982846127cb565b91508190509392505050565b6000602082019050612aba600083018461273b565b92915050565b6000608082019050612ad5600083018761273b565b612ae2602083018661273b565b612aef6040830185612a72565b8181036060830152612b018184612759565b905095945050505050565b6000602082019050612b21600083018461274a565b92915050565b60006020820190508181036000830152612b418184612792565b905092915050565b60006020820190508181036000830152612b62816127fc565b9050919050565b60006020820190508181036000830152612b828161281f565b9050919050565b60006020820190508181036000830152612ba281612842565b9050919050565b60006020820190508181036000830152612bc281612865565b9050919050565b60006020820190508181036000830152612be281612888565b9050919050565b60006020820190508181036000830152612c02816128ab565b9050919050565b60006020820190508181036000830152612c22816128ce565b9050919050565b60006020820190508181036000830152612c42816128f1565b9050919050565b60006020820190508181036000830152612c6281612914565b9050919050565b60006020820190508181036000830152612c8281612937565b9050919050565b60006020820190508181036000830152612ca28161295a565b9050919050565b60006020820190508181036000830152612cc28161297d565b9050919050565b60006020820190508181036000830152612ce2816129a0565b9050919050565b60006020820190508181036000830152612d02816129c3565b9050919050565b60006020820190508181036000830152612d22816129e6565b9050919050565b60006020820190508181036000830152612d4281612a09565b9050919050565b60006020820190508181036000830152612d6281612a2c565b9050919050565b60006020820190508181036000830152612d8281612a4f565b9050919050565b6000602082019050612d9e6000830184612a72565b92915050565b6000612dae612dbf565b9050612dba828261303d565b919050565b6000604051905090565b600067ffffffffffffffff821115612de457612de3613175565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612e1057612e0f613175565b5b612e19826131a4565b9050602081019050919050565b600067ffffffffffffffff821115612e4157612e40613175565b5b612e4a826131a4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ea582612fbf565b9150612eb083612fbf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ee557612ee46130e8565b5b828201905092915050565b6000612efb82612fbf565b9150612f0683612fbf565b925082612f1657612f15613117565b5b828204905092915050565b6000612f2c82612fbf565b9150612f3783612fbf565b925082821015612f4a57612f496130e8565b5b828203905092915050565b6000612f6082612f9f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ff6578082015181840152602081019050612fdb565b83811115613005576000848401525b50505050565b6000600282049050600182168061302357607f821691505b6020821081141561303757613036613146565b5b50919050565b613046826131a4565b810181811067ffffffffffffffff8211171561306557613064613175565b5b80604052505050565b600061307982612fbf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130ac576130ab6130e8565b5b600182019050919050565b60006130c282612fbf565b91506130cd83612fbf565b9250826130dd576130dc613117565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f20626f747320616c6c6f7765640000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61366881612f55565b811461367357600080fd5b50565b61367f81612f67565b811461368a57600080fd5b50565b61369681612f73565b81146136a157600080fd5b50565b6136ad81612fbf565b81146136b857600080fd5b5056fea2646970667358221220d13542e7e7488bd2ce6008d9f44357b3e2249c4db76de3b7d0bce8a1f3764f2f64736f6c63430008040033
Deployed Bytecode Sourcemap
48029:2487:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34794:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49689:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35739:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37298:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36821:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48329:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38048:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48121:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38458:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49314:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35433:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35163:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14335:103;;;:::i;:::-;;48473:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13684:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35908:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49149:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37591:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48577:505;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48368:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38714:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36083:334;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49926:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48404:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48208:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48274:47;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48159:42;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37817:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14593:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34794:305;34896:4;34948:25;34933:40;;;:11;:40;;;;:105;;;;35005:33;34990:48;;;:11;:48;;;;34933:105;:158;;;;35055:36;35079:11;35055:23;:36::i;:::-;34933:158;34913:178;;34794:305;;;:::o;49689:111::-;13915:12;:10;:12::i;:::-;13904:23;;:7;:5;:7::i;:::-;:23;;;13896:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49781:13:::1;49764:14;;:30;;;;;;;;;;;;;;;;;;49689:111:::0;:::o;35739:100::-;35793:13;35826:5;35819:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35739:100;:::o;37298:221::-;37374:7;37402:16;37410:7;37402;:16::i;:::-;37394:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37487:15;:24;37503:7;37487:24;;;;;;;;;;;;;;;;;;;;;37480:31;;37298:221;;;:::o;36821:411::-;36902:13;36918:23;36933:7;36918:14;:23::i;:::-;36902:39;;36966:5;36960:11;;:2;:11;;;;36952:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;37060:5;37044:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;37069:37;37086:5;37093:12;:10;:12::i;:::-;37069:16;:37::i;:::-;37044:62;37022:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;37203:21;37212:2;37216:7;37203:8;:21::i;:::-;36821:411;;;:::o;48329:33::-;;;;:::o;38048:339::-;38243:41;38262:12;:10;:12::i;:::-;38276:7;38243:18;:41::i;:::-;38235:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;38351:28;38361:4;38367:2;38371:7;38351:9;:28::i;:::-;38048:339;;;:::o;48121:33::-;;;;;;;;;;;;;:::o;38458:185::-;38596:39;38613:4;38619:2;38623:7;38596:39;;;;;;;;;;;;:16;:39::i;:::-;38458:185;;;:::o;49314:98::-;13915:12;:10;:12::i;:::-;13904:23;;:7;:5;:7::i;:::-;:23;;;13896:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49399:7:::1;49383:13;:23;;;;;;;;;;;;:::i;:::-;;49314:98:::0;:::o;35433:239::-;35505:7;35525:13;35541:7;:16;35549:7;35541:16;;;;;;;;;;;;;;;;;;;;;35525:32;;35593:1;35576:19;;:5;:19;;;;35568:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35659:5;35652:12;;;35433:239;;;:::o;35163:208::-;35235:7;35280:1;35263:19;;:5;:19;;;;35255:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;35347:9;:16;35357:5;35347:16;;;;;;;;;;;;;;;;35340:23;;35163:208;;;:::o;14335:103::-;13915:12;:10;:12::i;:::-;13904:23;;:7;:5;:7::i;:::-;:23;;;13896:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14400:30:::1;14427:1;14400:18;:30::i;:::-;14335:103::o:0;48473:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;13684:87::-;13730:7;13757:6;;;;;;;;;;;13750:13;;13684:87;:::o;35908:104::-;35964:13;35997:7;35990:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35908:104;:::o;49149:81::-;13915:12;:10;:12::i;:::-;13904:23;;:7;:5;:7::i;:::-;:23;;;13896:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49221:3:::1;49205:13;;:19;;;;;;;;;;;;;;;;;;49149:81:::0;:::o;37591:155::-;37686:52;37705:12;:10;:12::i;:::-;37719:8;37729;37686:18;:52::i;:::-;37591:155;;:::o;48577:505::-;48665:9;48651:23;;:10;:23;;;48643:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48710:13;;;;;;;;;;;48709:14;48701:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;48751:20;48785:18;;;;;;;;;;;48751:53;;48813:12;48837:9;48832:245;48852:8;:15;48848:1;:19;48832:245;;;48883:17;48903:8;48912:1;48903:11;;;;;;;;;;;;;;;;;;;;;;48883:31;;48961:10;48929:42;;:9;:17;;;48947:9;48929:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:42;;;:65;;;;;48976:18;48984:9;48976:7;:18::i;:::-;48975:19;48929:65;48925:145;;;49007:28;49013:10;49025:9;49007:5;:28::i;:::-;49056:4;49046:14;;48925:145;48832:245;48869:3;;;;;:::i;:::-;;;;48832:245;;;;48577:505;;;:::o;48368:32::-;;;;;;;;;;;;;:::o;38714:328::-;38889:41;38908:12;:10;:12::i;:::-;38922:7;38889:18;:41::i;:::-;38881:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;38995:39;39009:4;39015:2;39019:7;39028:5;38995:13;:39::i;:::-;38714:328;;;;:::o;36083:334::-;36156:13;36190:16;36198:7;36190;:16::i;:::-;36182:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;36271:21;36295:10;:8;:10::i;:::-;36271:34;;36347:1;36329:7;36323:21;:25;:86;;;;;;;;;;;;;;;;;36375:7;36384:18;:7;:16;:18::i;:::-;36358:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36323:86;36316:93;;;36083:334;;;:::o;49926:127::-;13915:12;:10;:12::i;:::-;13904:23;;:7;:5;:7::i;:::-;:23;;;13896:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50030:17:::1;50009:18;;:38;;;;;;;;;;;;;;;;;;49926:127:::0;:::o;48404:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48208:35::-;;;;:::o;48274:47::-;48317:4;48274:47;:::o;48159:42::-;;;;;;;;;;;;;:::o;37817:164::-;37914:4;37938:18;:25;37957:5;37938:25;;;;;;;;;;;;;;;:35;37964:8;37938:35;;;;;;;;;;;;;;;;;;;;;;;;;37931:42;;37817:164;;;;:::o;14593:201::-;13915:12;:10;:12::i;:::-;13904:23;;:7;:5;:7::i;:::-;:23;;;13896:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14702:1:::1;14682:22;;:8;:22;;;;14674:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14758:28;14777:8;14758:18;:28::i;:::-;14593:201:::0;:::o;26468:157::-;26553:4;26592:25;26577:40;;;:11;:40;;;;26570:47;;26468:157;;;:::o;12408:98::-;12461:7;12488:10;12481:17;;12408:98;:::o;40552:127::-;40617:4;40669:1;40641:30;;:7;:16;40649:7;40641:16;;;;;;;;;;;;;;;;;;;;;:30;;;;40634:37;;40552:127;;;:::o;44698:174::-;44800:2;44773:15;:24;44789:7;44773:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44856:7;44852:2;44818:46;;44827:23;44842:7;44827:14;:23::i;:::-;44818:46;;;;;;;;;;;;44698:174;;:::o;40846:348::-;40939:4;40964:16;40972:7;40964;:16::i;:::-;40956:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41040:13;41056:23;41071:7;41056:14;:23::i;:::-;41040:39;;41109:5;41098:16;;:7;:16;;;:51;;;;41142:7;41118:31;;:20;41130:7;41118:11;:20::i;:::-;:31;;;41098:51;:87;;;;41153:32;41170:5;41177:7;41153:16;:32::i;:::-;41098:87;41090:96;;;40846:348;;;;:::o;43955:625::-;44114:4;44087:31;;:23;44102:7;44087:14;:23::i;:::-;:31;;;44079:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;44193:1;44179:16;;:2;:16;;;;44171:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;44249:39;44270:4;44276:2;44280:7;44249:20;:39::i;:::-;44353:29;44370:1;44374:7;44353:8;:29::i;:::-;44414:1;44395:9;:15;44405:4;44395:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;44443:1;44426:9;:13;44436:2;44426:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;44474:2;44455:7;:16;44463:7;44455:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44513:7;44509:2;44494:27;;44503:4;44494:27;;;;;;;;;;;;44534:38;44554:4;44560:2;44564:7;44534:19;:38::i;:::-;43955:625;;;:::o;14954:191::-;15028:16;15047:6;;;;;;;;;;;15028:25;;15073:8;15064:6;;:17;;;;;;;;;;;;;;;;;;15128:8;15097:40;;15118:8;15097:40;;;;;;;;;;;;14954:191;;:::o;45014:315::-;45169:8;45160:17;;:5;:17;;;;45152:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;45256:8;45218:18;:25;45237:5;45218:25;;;;;;;;;;;;;;;:35;45244:8;45218:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;45302:8;45280:41;;45295:5;45280:41;;;45312:8;45280:41;;;;;;:::i;:::-;;;;;;;;45014:315;;;:::o;42530:439::-;42624:1;42610:16;;:2;:16;;;;42602:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;42683:16;42691:7;42683;:16::i;:::-;42682:17;42674:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;42745:45;42774:1;42778:2;42782:7;42745:20;:45::i;:::-;42820:1;42803:9;:13;42813:2;42803:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;42851:2;42832:7;:16;42840:7;42832:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;42896:7;42892:2;42871:33;;42888:1;42871:33;;;;;;;;;;;;42917:44;42945:1;42949:2;42953:7;42917:19;:44::i;:::-;42530:439;;:::o;39924:315::-;40081:28;40091:4;40097:2;40101:7;40081:9;:28::i;:::-;40128:48;40151:4;40157:2;40161:7;40170:5;40128:22;:48::i;:::-;40120:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;39924:315;;;;:::o;49477:108::-;49537:13;49566;49559:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49477:108;:::o;436:723::-;492:13;722:1;713:5;:10;709:53;;;740:10;;;;;;;;;;;;;;;;;;;;;709:53;772:12;787:5;772:20;;803:14;828:78;843:1;835:4;:9;828:78;;861:8;;;;;:::i;:::-;;;;892:2;884:10;;;;;:::i;:::-;;;828:78;;;916:19;948:6;938:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;916:39;;966:154;982:1;973:5;:10;966:154;;1010:1;1000:11;;;;;:::i;:::-;;;1077:2;1069:5;:10;;;;:::i;:::-;1056:2;:24;;;;:::i;:::-;1043:39;;1026:6;1033;1026:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1106:2;1097:11;;;;;:::i;:::-;;;966:154;;;1144:6;1130:21;;;;;436:723;;;;:::o;47265:126::-;;;;:::o;47776:125::-;;;;:::o;45894:799::-;46049:4;46070:15;:2;:13;;;:15::i;:::-;46066:620;;;46122:2;46106:36;;;46143:12;:10;:12::i;:::-;46157:4;46163:7;46172:5;46106:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46102:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46365:1;46348:6;:13;:18;46344:272;;;46391:60;;;;;;;;;;:::i;:::-;;;;;;;;46344:272;46566:6;46560:13;46551:6;46547:2;46543:15;46536:38;46102:529;46239:41;;;46229:51;;;:6;:51;;;;46222:58;;;;;46066:620;46670:4;46663:11;;45894:799;;;;;;;:::o;16385:326::-;16445:4;16702:1;16680:7;:19;;;:23;16673:30;;16385:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;685:343::-;762:5;787:65;803:48;844:6;803:48;:::i;:::-;787:65;:::i;:::-;778:74;;875:6;868:5;861:21;913:4;906:5;902:16;951:3;942:6;937:3;933:16;930:25;927:2;;;968:1;965;958:12;927:2;981:41;1015:6;1010:3;1005;981:41;:::i;:::-;768:260;;;;;;:::o;1034:345::-;1112:5;1137:66;1153:49;1195:6;1153:49;:::i;:::-;1137:66;:::i;:::-;1128:75;;1226:6;1219:5;1212:21;1264:4;1257:5;1253:16;1302:3;1293:6;1288:3;1284:16;1281:25;1278:2;;;1319:1;1316;1309:12;1278:2;1332:41;1366:6;1361:3;1356;1332:41;:::i;:::-;1118:261;;;;;;:::o;1385:139::-;1431:5;1469:6;1456:20;1447:29;;1485:33;1512:5;1485:33;:::i;:::-;1437:87;;;;:::o;1530:143::-;1587:5;1618:6;1612:13;1603:22;;1634:33;1661:5;1634:33;:::i;:::-;1593:80;;;;:::o;1696:303::-;1767:5;1816:3;1809:4;1801:6;1797:17;1793:27;1783:2;;1834:1;1831;1824:12;1783:2;1874:6;1861:20;1899:94;1989:3;1981:6;1974:4;1966:6;1962:17;1899:94;:::i;:::-;1890:103;;1773:226;;;;;:::o;2005:133::-;2048:5;2086:6;2073:20;2064:29;;2102:30;2126:5;2102:30;:::i;:::-;2054:84;;;;:::o;2144:137::-;2189:5;2227:6;2214:20;2205:29;;2243:32;2269:5;2243:32;:::i;:::-;2195:86;;;;:::o;2287:141::-;2343:5;2374:6;2368:13;2359:22;;2390:32;2416:5;2390:32;:::i;:::-;2349:79;;;;:::o;2447:271::-;2502:5;2551:3;2544:4;2536:6;2532:17;2528:27;2518:2;;2569:1;2566;2559:12;2518:2;2609:6;2596:20;2634:78;2708:3;2700:6;2693:4;2685:6;2681:17;2634:78;:::i;:::-;2625:87;;2508:210;;;;;:::o;2738:273::-;2794:5;2843:3;2836:4;2828:6;2824:17;2820:27;2810:2;;2861:1;2858;2851:12;2810:2;2901:6;2888:20;2926:79;3001:3;2993:6;2986:4;2978:6;2974:17;2926:79;:::i;:::-;2917:88;;2800:211;;;;;:::o;3017:139::-;3063:5;3101:6;3088:20;3079:29;;3117:33;3144:5;3117:33;:::i;:::-;3069:87;;;;:::o;3162:262::-;3221:6;3270:2;3258:9;3249:7;3245:23;3241:32;3238:2;;;3286:1;3283;3276:12;3238:2;3329:1;3354:53;3399:7;3390:6;3379:9;3375:22;3354:53;:::i;:::-;3344:63;;3300:117;3228:196;;;;:::o;3430:284::-;3500:6;3549:2;3537:9;3528:7;3524:23;3520:32;3517:2;;;3565:1;3562;3555:12;3517:2;3608:1;3633:64;3689:7;3680:6;3669:9;3665:22;3633:64;:::i;:::-;3623:74;;3579:128;3507:207;;;;:::o;3720:407::-;3788:6;3796;3845:2;3833:9;3824:7;3820:23;3816:32;3813:2;;;3861:1;3858;3851:12;3813:2;3904:1;3929:53;3974:7;3965:6;3954:9;3950:22;3929:53;:::i;:::-;3919:63;;3875:117;4031:2;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4002:118;3803:324;;;;;:::o;4133:552::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:2;;;4291:1;4288;4281:12;4243:2;4334:1;4359:53;4404:7;4395:6;4384:9;4380:22;4359:53;:::i;:::-;4349:63;;4305:117;4461:2;4487:53;4532:7;4523:6;4512:9;4508:22;4487:53;:::i;:::-;4477:63;;4432:118;4589:2;4615:53;4660:7;4651:6;4640:9;4636:22;4615:53;:::i;:::-;4605:63;;4560:118;4233:452;;;;;:::o;4691:809::-;4786:6;4794;4802;4810;4859:3;4847:9;4838:7;4834:23;4830:33;4827:2;;;4876:1;4873;4866:12;4827:2;4919:1;4944:53;4989:7;4980:6;4969:9;4965:22;4944:53;:::i;:::-;4934:63;;4890:117;5046:2;5072:53;5117:7;5108:6;5097:9;5093:22;5072:53;:::i;:::-;5062:63;;5017:118;5174:2;5200:53;5245:7;5236:6;5225:9;5221:22;5200:53;:::i;:::-;5190:63;;5145:118;5330:2;5319:9;5315:18;5302:32;5361:18;5353:6;5350:30;5347:2;;;5393:1;5390;5383:12;5347:2;5421:62;5475:7;5466:6;5455:9;5451:22;5421:62;:::i;:::-;5411:72;;5273:220;4817:683;;;;;;;:::o;5506:401::-;5571:6;5579;5628:2;5616:9;5607:7;5603:23;5599:32;5596:2;;;5644:1;5641;5634:12;5596:2;5687:1;5712:53;5757:7;5748:6;5737:9;5733:22;5712:53;:::i;:::-;5702:63;;5658:117;5814:2;5840:50;5882:7;5873:6;5862:9;5858:22;5840:50;:::i;:::-;5830:60;;5785:115;5586:321;;;;;:::o;5913:407::-;5981:6;5989;6038:2;6026:9;6017:7;6013:23;6009:32;6006:2;;;6054:1;6051;6044:12;6006:2;6097:1;6122:53;6167:7;6158:6;6147:9;6143:22;6122:53;:::i;:::-;6112:63;;6068:117;6224:2;6250:53;6295:7;6286:6;6275:9;6271:22;6250:53;:::i;:::-;6240:63;;6195:118;5996:324;;;;;:::o;6326:405::-;6410:6;6459:2;6447:9;6438:7;6434:23;6430:32;6427:2;;;6475:1;6472;6465:12;6427:2;6546:1;6535:9;6531:17;6518:31;6576:18;6568:6;6565:30;6562:2;;;6608:1;6605;6598:12;6562:2;6636:78;6706:7;6697:6;6686:9;6682:22;6636:78;:::i;:::-;6626:88;;6489:235;6417:314;;;;:::o;6737:256::-;6793:6;6842:2;6830:9;6821:7;6817:23;6813:32;6810:2;;;6858:1;6855;6848:12;6810:2;6901:1;6926:50;6968:7;6959:6;6948:9;6944:22;6926:50;:::i;:::-;6916:60;;6872:114;6800:193;;;;:::o;6999:260::-;7057:6;7106:2;7094:9;7085:7;7081:23;7077:32;7074:2;;;7122:1;7119;7112:12;7074:2;7165:1;7190:52;7234:7;7225:6;7214:9;7210:22;7190:52;:::i;:::-;7180:62;;7136:116;7064:195;;;;:::o;7265:282::-;7334:6;7383:2;7371:9;7362:7;7358:23;7354:32;7351:2;;;7399:1;7396;7389:12;7351:2;7442:1;7467:63;7522:7;7513:6;7502:9;7498:22;7467:63;:::i;:::-;7457:73;;7413:127;7341:206;;;;:::o;7553:375::-;7622:6;7671:2;7659:9;7650:7;7646:23;7642:32;7639:2;;;7687:1;7684;7677:12;7639:2;7758:1;7747:9;7743:17;7730:31;7788:18;7780:6;7777:30;7774:2;;;7820:1;7817;7810:12;7774:2;7848:63;7903:7;7894:6;7883:9;7879:22;7848:63;:::i;:::-;7838:73;;7701:220;7629:299;;;;:::o;7934:262::-;7993:6;8042:2;8030:9;8021:7;8017:23;8013:32;8010:2;;;8058:1;8055;8048:12;8010:2;8101:1;8126:53;8171:7;8162:6;8151:9;8147:22;8126:53;:::i;:::-;8116:63;;8072:117;8000:196;;;;:::o;8202:118::-;8289:24;8307:5;8289:24;:::i;:::-;8284:3;8277:37;8267:53;;:::o;8326:109::-;8407:21;8422:5;8407:21;:::i;:::-;8402:3;8395:34;8385:50;;:::o;8441:360::-;8527:3;8555:38;8587:5;8555:38;:::i;:::-;8609:70;8672:6;8667:3;8609:70;:::i;:::-;8602:77;;8688:52;8733:6;8728:3;8721:4;8714:5;8710:16;8688:52;:::i;:::-;8765:29;8787:6;8765:29;:::i;:::-;8760:3;8756:39;8749:46;;8531:270;;;;;:::o;8807:364::-;8895:3;8923:39;8956:5;8923:39;:::i;:::-;8978:71;9042:6;9037:3;8978:71;:::i;:::-;8971:78;;9058:52;9103:6;9098:3;9091:4;9084:5;9080:16;9058:52;:::i;:::-;9135:29;9157:6;9135:29;:::i;:::-;9130:3;9126:39;9119:46;;8899:272;;;;;:::o;9177:377::-;9283:3;9311:39;9344:5;9311:39;:::i;:::-;9366:89;9448:6;9443:3;9366:89;:::i;:::-;9359:96;;9464:52;9509:6;9504:3;9497:4;9490:5;9486:16;9464:52;:::i;:::-;9541:6;9536:3;9532:16;9525:23;;9287:267;;;;;:::o;9560:366::-;9702:3;9723:67;9787:2;9782:3;9723:67;:::i;:::-;9716:74;;9799:93;9888:3;9799:93;:::i;:::-;9917:2;9912:3;9908:12;9901:19;;9706:220;;;:::o;9932:366::-;10074:3;10095:67;10159:2;10154:3;10095:67;:::i;:::-;10088:74;;10171:93;10260:3;10171:93;:::i;:::-;10289:2;10284:3;10280:12;10273:19;;10078:220;;;:::o;10304:366::-;10446:3;10467:67;10531:2;10526:3;10467:67;:::i;:::-;10460:74;;10543:93;10632:3;10543:93;:::i;:::-;10661:2;10656:3;10652:12;10645:19;;10450:220;;;:::o;10676:366::-;10818:3;10839:67;10903:2;10898:3;10839:67;:::i;:::-;10832:74;;10915:93;11004:3;10915:93;:::i;:::-;11033:2;11028:3;11024:12;11017:19;;10822:220;;;:::o;11048:366::-;11190:3;11211:67;11275:2;11270:3;11211:67;:::i;:::-;11204:74;;11287:93;11376:3;11287:93;:::i;:::-;11405:2;11400:3;11396:12;11389:19;;11194:220;;;:::o;11420:366::-;11562:3;11583:67;11647:2;11642:3;11583:67;:::i;:::-;11576:74;;11659:93;11748:3;11659:93;:::i;:::-;11777:2;11772:3;11768:12;11761:19;;11566:220;;;:::o;11792:366::-;11934:3;11955:67;12019:2;12014:3;11955:67;:::i;:::-;11948:74;;12031:93;12120:3;12031:93;:::i;:::-;12149:2;12144:3;12140:12;12133:19;;11938:220;;;:::o;12164:366::-;12306:3;12327:67;12391:2;12386:3;12327:67;:::i;:::-;12320:74;;12403:93;12492:3;12403:93;:::i;:::-;12521:2;12516:3;12512:12;12505:19;;12310:220;;;:::o;12536:366::-;12678:3;12699:67;12763:2;12758:3;12699:67;:::i;:::-;12692:74;;12775:93;12864:3;12775:93;:::i;:::-;12893:2;12888:3;12884:12;12877:19;;12682:220;;;:::o;12908:366::-;13050:3;13071:67;13135:2;13130:3;13071:67;:::i;:::-;13064:74;;13147:93;13236:3;13147:93;:::i;:::-;13265:2;13260:3;13256:12;13249:19;;13054:220;;;:::o;13280:366::-;13422:3;13443:67;13507:2;13502:3;13443:67;:::i;:::-;13436:74;;13519:93;13608:3;13519:93;:::i;:::-;13637:2;13632:3;13628:12;13621:19;;13426:220;;;:::o;13652:366::-;13794:3;13815:67;13879:2;13874:3;13815:67;:::i;:::-;13808:74;;13891:93;13980:3;13891:93;:::i;:::-;14009:2;14004:3;14000:12;13993:19;;13798:220;;;:::o;14024:366::-;14166:3;14187:67;14251:2;14246:3;14187:67;:::i;:::-;14180:74;;14263:93;14352:3;14263:93;:::i;:::-;14381:2;14376:3;14372:12;14365:19;;14170:220;;;:::o;14396:366::-;14538:3;14559:67;14623:2;14618:3;14559:67;:::i;:::-;14552:74;;14635:93;14724:3;14635:93;:::i;:::-;14753:2;14748:3;14744:12;14737:19;;14542:220;;;:::o;14768:366::-;14910:3;14931:67;14995:2;14990:3;14931:67;:::i;:::-;14924:74;;15007:93;15096:3;15007:93;:::i;:::-;15125:2;15120:3;15116:12;15109:19;;14914:220;;;:::o;15140:366::-;15282:3;15303:67;15367:2;15362:3;15303:67;:::i;:::-;15296:74;;15379:93;15468:3;15379:93;:::i;:::-;15497:2;15492:3;15488:12;15481:19;;15286:220;;;:::o;15512:366::-;15654:3;15675:67;15739:2;15734:3;15675:67;:::i;:::-;15668:74;;15751:93;15840:3;15751:93;:::i;:::-;15869:2;15864:3;15860:12;15853:19;;15658:220;;;:::o;15884:366::-;16026:3;16047:67;16111:2;16106:3;16047:67;:::i;:::-;16040:74;;16123:93;16212:3;16123:93;:::i;:::-;16241:2;16236:3;16232:12;16225:19;;16030:220;;;:::o;16256:118::-;16343:24;16361:5;16343:24;:::i;:::-;16338:3;16331:37;16321:53;;:::o;16380:435::-;16560:3;16582:95;16673:3;16664:6;16582:95;:::i;:::-;16575:102;;16694:95;16785:3;16776:6;16694:95;:::i;:::-;16687:102;;16806:3;16799:10;;16564:251;;;;;:::o;16821:222::-;16914:4;16952:2;16941:9;16937:18;16929:26;;16965:71;17033:1;17022:9;17018:17;17009:6;16965:71;:::i;:::-;16919:124;;;;:::o;17049:640::-;17244:4;17282:3;17271:9;17267:19;17259:27;;17296:71;17364:1;17353:9;17349:17;17340:6;17296:71;:::i;:::-;17377:72;17445:2;17434:9;17430:18;17421:6;17377:72;:::i;:::-;17459;17527:2;17516:9;17512:18;17503:6;17459:72;:::i;:::-;17578:9;17572:4;17568:20;17563:2;17552:9;17548:18;17541:48;17606:76;17677:4;17668:6;17606:76;:::i;:::-;17598:84;;17249:440;;;;;;;:::o;17695:210::-;17782:4;17820:2;17809:9;17805:18;17797:26;;17833:65;17895:1;17884:9;17880:17;17871:6;17833:65;:::i;:::-;17787:118;;;;:::o;17911:313::-;18024:4;18062:2;18051:9;18047:18;18039:26;;18111:9;18105:4;18101:20;18097:1;18086:9;18082:17;18075:47;18139:78;18212:4;18203:6;18139:78;:::i;:::-;18131:86;;18029:195;;;;:::o;18230:419::-;18396:4;18434:2;18423:9;18419:18;18411:26;;18483:9;18477:4;18473:20;18469:1;18458:9;18454:17;18447:47;18511:131;18637:4;18511:131;:::i;:::-;18503:139;;18401:248;;;:::o;18655:419::-;18821:4;18859:2;18848:9;18844:18;18836:26;;18908:9;18902:4;18898:20;18894:1;18883:9;18879:17;18872:47;18936:131;19062:4;18936:131;:::i;:::-;18928:139;;18826:248;;;:::o;19080:419::-;19246:4;19284:2;19273:9;19269:18;19261:26;;19333:9;19327:4;19323:20;19319:1;19308:9;19304:17;19297:47;19361:131;19487:4;19361:131;:::i;:::-;19353:139;;19251:248;;;:::o;19505:419::-;19671:4;19709:2;19698:9;19694:18;19686:26;;19758:9;19752:4;19748:20;19744:1;19733:9;19729:17;19722:47;19786:131;19912:4;19786:131;:::i;:::-;19778:139;;19676:248;;;:::o;19930:419::-;20096:4;20134:2;20123:9;20119:18;20111:26;;20183:9;20177:4;20173:20;20169:1;20158:9;20154:17;20147:47;20211:131;20337:4;20211:131;:::i;:::-;20203:139;;20101:248;;;:::o;20355:419::-;20521:4;20559:2;20548:9;20544:18;20536:26;;20608:9;20602:4;20598:20;20594:1;20583:9;20579:17;20572:47;20636:131;20762:4;20636:131;:::i;:::-;20628:139;;20526:248;;;:::o;20780:419::-;20946:4;20984:2;20973:9;20969:18;20961:26;;21033:9;21027:4;21023:20;21019:1;21008:9;21004:17;20997:47;21061:131;21187:4;21061:131;:::i;:::-;21053:139;;20951:248;;;:::o;21205:419::-;21371:4;21409:2;21398:9;21394:18;21386:26;;21458:9;21452:4;21448:20;21444:1;21433:9;21429:17;21422:47;21486:131;21612:4;21486:131;:::i;:::-;21478:139;;21376:248;;;:::o;21630:419::-;21796:4;21834:2;21823:9;21819:18;21811:26;;21883:9;21877:4;21873:20;21869:1;21858:9;21854:17;21847:47;21911:131;22037:4;21911:131;:::i;:::-;21903:139;;21801:248;;;:::o;22055:419::-;22221:4;22259:2;22248:9;22244:18;22236:26;;22308:9;22302:4;22298:20;22294:1;22283:9;22279:17;22272:47;22336:131;22462:4;22336:131;:::i;:::-;22328:139;;22226:248;;;:::o;22480:419::-;22646:4;22684:2;22673:9;22669:18;22661:26;;22733:9;22727:4;22723:20;22719:1;22708:9;22704:17;22697:47;22761:131;22887:4;22761:131;:::i;:::-;22753:139;;22651:248;;;:::o;22905:419::-;23071:4;23109:2;23098:9;23094:18;23086:26;;23158:9;23152:4;23148:20;23144:1;23133:9;23129:17;23122:47;23186:131;23312:4;23186:131;:::i;:::-;23178:139;;23076:248;;;:::o;23330:419::-;23496:4;23534:2;23523:9;23519:18;23511:26;;23583:9;23577:4;23573:20;23569:1;23558:9;23554:17;23547:47;23611:131;23737:4;23611:131;:::i;:::-;23603:139;;23501:248;;;:::o;23755:419::-;23921:4;23959:2;23948:9;23944:18;23936:26;;24008:9;24002:4;23998:20;23994:1;23983:9;23979:17;23972:47;24036:131;24162:4;24036:131;:::i;:::-;24028:139;;23926:248;;;:::o;24180:419::-;24346:4;24384:2;24373:9;24369:18;24361:26;;24433:9;24427:4;24423:20;24419:1;24408:9;24404:17;24397:47;24461:131;24587:4;24461:131;:::i;:::-;24453:139;;24351:248;;;:::o;24605:419::-;24771:4;24809:2;24798:9;24794:18;24786:26;;24858:9;24852:4;24848:20;24844:1;24833:9;24829:17;24822:47;24886:131;25012:4;24886:131;:::i;:::-;24878:139;;24776:248;;;:::o;25030:419::-;25196:4;25234:2;25223:9;25219:18;25211:26;;25283:9;25277:4;25273:20;25269:1;25258:9;25254:17;25247:47;25311:131;25437:4;25311:131;:::i;:::-;25303:139;;25201:248;;;:::o;25455:419::-;25621:4;25659:2;25648:9;25644:18;25636:26;;25708:9;25702:4;25698:20;25694:1;25683:9;25679:17;25672:47;25736:131;25862:4;25736:131;:::i;:::-;25728:139;;25626:248;;;:::o;25880:222::-;25973:4;26011:2;26000:9;25996:18;25988:26;;26024:71;26092:1;26081:9;26077:17;26068:6;26024:71;:::i;:::-;25978:124;;;;:::o;26108:129::-;26142:6;26169:20;;:::i;:::-;26159:30;;26198:33;26226:4;26218:6;26198:33;:::i;:::-;26149:88;;;:::o;26243:75::-;26276:6;26309:2;26303:9;26293:19;;26283:35;:::o;26324:311::-;26401:4;26491:18;26483:6;26480:30;26477:2;;;26513:18;;:::i;:::-;26477:2;26563:4;26555:6;26551:17;26543:25;;26623:4;26617;26613:15;26605:23;;26406:229;;;:::o;26641:307::-;26702:4;26792:18;26784:6;26781:30;26778:2;;;26814:18;;:::i;:::-;26778:2;26852:29;26874:6;26852:29;:::i;:::-;26844:37;;26936:4;26930;26926:15;26918:23;;26707:241;;;:::o;26954:308::-;27016:4;27106:18;27098:6;27095:30;27092:2;;;27128:18;;:::i;:::-;27092:2;27166:29;27188:6;27166:29;:::i;:::-;27158:37;;27250:4;27244;27240:15;27232:23;;27021:241;;;:::o;27268:98::-;27319:6;27353:5;27347:12;27337:22;;27326:40;;;:::o;27372:99::-;27424:6;27458:5;27452:12;27442:22;;27431:40;;;:::o;27477:168::-;27560:11;27594:6;27589:3;27582:19;27634:4;27629:3;27625:14;27610:29;;27572:73;;;;:::o;27651:169::-;27735:11;27769:6;27764:3;27757:19;27809:4;27804:3;27800:14;27785:29;;27747:73;;;;:::o;27826:148::-;27928:11;27965:3;27950:18;;27940:34;;;;:::o;27980:305::-;28020:3;28039:20;28057:1;28039:20;:::i;:::-;28034:25;;28073:20;28091:1;28073:20;:::i;:::-;28068:25;;28227:1;28159:66;28155:74;28152:1;28149:81;28146:2;;;28233:18;;:::i;:::-;28146:2;28277:1;28274;28270:9;28263:16;;28024:261;;;;:::o;28291:185::-;28331:1;28348:20;28366:1;28348:20;:::i;:::-;28343:25;;28382:20;28400:1;28382:20;:::i;:::-;28377:25;;28421:1;28411:2;;28426:18;;:::i;:::-;28411:2;28468:1;28465;28461:9;28456:14;;28333:143;;;;:::o;28482:191::-;28522:4;28542:20;28560:1;28542:20;:::i;:::-;28537:25;;28576:20;28594:1;28576:20;:::i;:::-;28571:25;;28615:1;28612;28609:8;28606:2;;;28620:18;;:::i;:::-;28606:2;28665:1;28662;28658:9;28650:17;;28527:146;;;;:::o;28679:96::-;28716:7;28745:24;28763:5;28745:24;:::i;:::-;28734:35;;28724:51;;;:::o;28781:90::-;28815:7;28858:5;28851:13;28844:21;28833:32;;28823:48;;;:::o;28877:149::-;28913:7;28953:66;28946:5;28942:78;28931:89;;28921:105;;;:::o;29032:126::-;29069:7;29109:42;29102:5;29098:54;29087:65;;29077:81;;;:::o;29164:77::-;29201:7;29230:5;29219:16;;29209:32;;;:::o;29247:154::-;29331:6;29326:3;29321;29308:30;29393:1;29384:6;29379:3;29375:16;29368:27;29298:103;;;:::o;29407:307::-;29475:1;29485:113;29499:6;29496:1;29493:13;29485:113;;;29584:1;29579:3;29575:11;29569:18;29565:1;29560:3;29556:11;29549:39;29521:2;29518:1;29514:10;29509:15;;29485:113;;;29616:6;29613:1;29610:13;29607:2;;;29696:1;29687:6;29682:3;29678:16;29671:27;29607:2;29456:258;;;;:::o;29720:320::-;29764:6;29801:1;29795:4;29791:12;29781:22;;29848:1;29842:4;29838:12;29869:18;29859:2;;29925:4;29917:6;29913:17;29903:27;;29859:2;29987;29979:6;29976:14;29956:18;29953:38;29950:2;;;30006:18;;:::i;:::-;29950:2;29771:269;;;;:::o;30046:281::-;30129:27;30151:4;30129:27;:::i;:::-;30121:6;30117:40;30259:6;30247:10;30244:22;30223:18;30211:10;30208:34;30205:62;30202:2;;;30270:18;;:::i;:::-;30202:2;30310:10;30306:2;30299:22;30089:238;;;:::o;30333:233::-;30372:3;30395:24;30413:5;30395:24;:::i;:::-;30386:33;;30441:66;30434:5;30431:77;30428:2;;;30511:18;;:::i;:::-;30428:2;30558:1;30551:5;30547:13;30540:20;;30376:190;;;:::o;30572:176::-;30604:1;30621:20;30639:1;30621:20;:::i;:::-;30616:25;;30655:20;30673:1;30655:20;:::i;:::-;30650:25;;30694:1;30684:2;;30699:18;;:::i;:::-;30684:2;30740:1;30737;30733:9;30728:14;;30606:142;;;;:::o;30754:180::-;30802:77;30799:1;30792:88;30899:4;30896:1;30889:15;30923:4;30920:1;30913:15;30940:180;30988:77;30985:1;30978:88;31085:4;31082:1;31075:15;31109:4;31106:1;31099:15;31126:180;31174:77;31171:1;31164:88;31271:4;31268:1;31261:15;31295:4;31292:1;31285:15;31312:180;31360:77;31357:1;31350:88;31457:4;31454:1;31447:15;31481:4;31478:1;31471:15;31498:102;31539:6;31590:2;31586:7;31581:2;31574:5;31570:14;31566:28;31556:38;;31546:54;;;:::o;31606:237::-;31746:34;31742:1;31734:6;31730:14;31723:58;31815:20;31810:2;31802:6;31798:15;31791:45;31712:131;:::o;31849:164::-;31989:16;31985:1;31977:6;31973:14;31966:40;31955:58;:::o;32019:225::-;32159:34;32155:1;32147:6;32143:14;32136:58;32228:8;32223:2;32215:6;32211:15;32204:33;32125:119;:::o;32250:224::-;32390:34;32386:1;32378:6;32374:14;32367:58;32459:7;32454:2;32446:6;32442:15;32435:32;32356:118;:::o;32480:178::-;32620:30;32616:1;32608:6;32604:14;32597:54;32586:72;:::o;32664:223::-;32804:34;32800:1;32792:6;32788:14;32781:58;32873:6;32868:2;32860:6;32856:15;32849:31;32770:117;:::o;32893:175::-;33033:27;33029:1;33021:6;33017:14;33010:51;32999:69;:::o;33074:231::-;33214:34;33210:1;33202:6;33198:14;33191:58;33283:14;33278:2;33270:6;33266:15;33259:39;33180:125;:::o;33311:243::-;33451:34;33447:1;33439:6;33435:14;33428:58;33520:26;33515:2;33507:6;33503:15;33496:51;33417:137;:::o;33560:229::-;33700:34;33696:1;33688:6;33684:14;33677:58;33769:12;33764:2;33756:6;33752:15;33745:37;33666:123;:::o;33795:228::-;33935:34;33931:1;33923:6;33919:14;33912:58;34004:11;33999:2;33991:6;33987:15;33980:36;33901:122;:::o;34029:182::-;34169:34;34165:1;34157:6;34153:14;34146:58;34135:76;:::o;34217:231::-;34357:34;34353:1;34345:6;34341:14;34334:58;34426:14;34421:2;34413:6;34409:15;34402:39;34323:125;:::o;34454:165::-;34594:17;34590:1;34582:6;34578:14;34571:41;34560:59;:::o;34625:182::-;34765:34;34761:1;34753:6;34749:14;34742:58;34731:76;:::o;34813:234::-;34953:34;34949:1;34941:6;34937:14;34930:58;35022:17;35017:2;35009:6;35005:15;34998:42;34919:128;:::o;35053:220::-;35193:34;35189:1;35181:6;35177:14;35170:58;35262:3;35257:2;35249:6;35245:15;35238:28;35159:114;:::o;35279:236::-;35419:34;35415:1;35407:6;35403:14;35396:58;35488:19;35483:2;35475:6;35471:15;35464:44;35385:130;:::o;35521:122::-;35594:24;35612:5;35594:24;:::i;:::-;35587:5;35584:35;35574:2;;35633:1;35630;35623:12;35574:2;35564:79;:::o;35649:116::-;35719:21;35734:5;35719:21;:::i;:::-;35712:5;35709:32;35699:2;;35755:1;35752;35745:12;35699:2;35689:76;:::o;35771:120::-;35843:23;35860:5;35843:23;:::i;:::-;35836:5;35833:34;35823:2;;35881:1;35878;35871:12;35823:2;35813:78;:::o;35897:122::-;35970:24;35988:5;35970:24;:::i;:::-;35963:5;35960:35;35950:2;;36009:1;36006;35999:12;35950:2;35940:79;:::o
Swarm Source
ipfs://d13542e7e7488bd2ce6008d9f44357b3e2249c4db76de3b7d0bce8a1f3764f2f
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.